blob: 10d62b029814323345c99b3df81e1b32822fab34 [file] [log] [blame]
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8
9#ifndef GrGLCaps_DEFINED
10#define GrGLCaps_DEFINED
11
bsalomoneb1cb5c2015-05-22 08:01:09 -070012#include "GrCaps.h"
jvanverthcba99b82015-06-24 06:59:57 -070013#include "glsl/GrGLSL.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070014#include "GrGLStencilAttachment.h"
piotaixre4b23142014-10-02 10:57:53 -070015#include "SkChecksum.h"
mtklein2aa1f7e2015-02-20 12:35:32 -080016#include "SkTHash.h"
robertphillips@google.coma2d71482012-08-01 20:08:47 +000017#include "SkTArray.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000018
19class GrGLContextInfo;
jvanverthe9c0fc62015-04-29 11:18:05 -070020class GrGLSLCaps;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000021
22/**
23 * Stores some capabilities of a GL context. Most are determined by the GL
24 * version and the extensions string. It also tracks formats that have passed
25 * the FBO completeness test.
26 */
bsalomon4b91f762015-05-19 09:29:46 -070027class GrGLCaps : public GrCaps {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000028public:
egdaniel8dc7c3a2015-04-16 11:22:42 -070029 typedef GrGLStencilAttachment::Format StencilFormat;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000030
31 /**
32 * The type of MSAA for FBOs supported. Different extensions have different
33 * semantics of how / when a resolve is performed.
34 */
35 enum MSFBOType {
36 /**
37 * no support for MSAA FBOs
38 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +000039 kNone_MSFBOType = 0,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000040 /**
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +000041 * GL3.0-style MSAA FBO (GL_ARB_framebuffer_object).
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000042 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000043 kDesktop_ARB_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000044 /**
45 * earlier GL_EXT_framebuffer* extensions
46 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000047 kDesktop_EXT_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000048 /**
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +000049 * Similar to kDesktop_ARB but with additional restrictions on glBlitFramebuffer.
50 */
51 kES_3_0_MSFBOType,
52 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000053 * GL_APPLE_framebuffer_multisample ES extension
54 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000055 kES_Apple_MSFBOType,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000056 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +000057 * GL_IMG_multisampled_render_to_texture. This variation does not have MSAA renderbuffers.
58 * Instead the texture is multisampled when bound to the FBO and then resolved automatically
59 * when read. It also defines an alternate value for GL_MAX_SAMPLES (which we call
60 * GR_GL_MAX_SAMPLES_IMG).
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000061 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000062 kES_IMG_MsToTexture_MSFBOType,
63 /**
64 * GL_EXT_multisampled_render_to_texture. Same as the IMG one above but uses the standard
65 * GL_MAX_SAMPLES value.
66 */
67 kES_EXT_MsToTexture_MSFBOType,
vbuzinovdded6962015-06-12 08:59:45 -070068 /**
69 * GL_NV_framebuffer_mixed_samples.
70 */
71 kMixedSamples_MSFBOType,
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000072
vbuzinovdded6962015-06-12 08:59:45 -070073 kLast_MSFBOType = kMixedSamples_MSFBOType
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000074 };
75
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000076 enum InvalidateFBType {
77 kNone_InvalidateFBType,
78 kDiscard_InvalidateFBType, //<! glDiscardFramebuffer()
79 kInvalidate_InvalidateFBType, //<! glInvalidateFramebuffer()
80
81 kLast_InvalidateFBType = kInvalidate_InvalidateFBType
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000082 };
83
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000084 enum MapBufferType {
85 kNone_MapBufferType,
86 kMapBuffer_MapBufferType, // glMapBuffer()
87 kMapBufferRange_MapBufferType, // glMapBufferRange()
88 kChromium_MapBufferType, // GL_CHROMIUM_map_sub
89
90 kLast_MapBufferType = kChromium_MapBufferType,
91 };
92
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000093 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000094 * Initializes the GrGLCaps to the set of features supported in the current
95 * OpenGL context accessible via ctxInfo.
96 */
bsalomon682c2692015-05-22 14:01:46 -070097 GrGLCaps(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
98 const GrGLInterface* glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000099
100 /**
101 * Call to note that a color config has been verified as a valid color
102 * attachment. This may save future calls to glCheckFramebufferStatus
103 * using isConfigVerifiedColorAttachment().
104 */
105 void markConfigAsValidColorAttachment(GrPixelConfig config) {
106 fVerifiedColorConfigs.markVerified(config);
107 }
108
109 /**
110 * Call to check whether a config has been verified as a valid color
111 * attachment.
112 */
113 bool isConfigVerifiedColorAttachment(GrPixelConfig config) const {
114 return fVerifiedColorConfigs.isVerified(config);
115 }
116
117 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000118 * Reports the type of MSAA FBO support.
119 */
120 MSFBOType msFBOType() const { return fMSFBOType; }
121
122 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +0000123 * Does the supported MSAA FBO extension have MSAA renderbuffers?
124 */
125 bool usesMSAARenderBuffers() const {
126 return kNone_MSFBOType != fMSFBOType &&
127 kES_IMG_MsToTexture_MSFBOType != fMSFBOType &&
vbuzinovdded6962015-06-12 08:59:45 -0700128 kES_EXT_MsToTexture_MSFBOType != fMSFBOType &&
129 kMixedSamples_MSFBOType != fMSFBOType;
bsalomon@google.com347c3822013-05-01 20:10:01 +0000130 }
131
132 /**
133 * Is the MSAA FBO extension one where the texture is multisampled when bound to an FBO and
134 * then implicitly resolved when read.
135 */
136 bool usesImplicitMSAAResolve() const {
137 return kES_IMG_MsToTexture_MSFBOType == fMSFBOType ||
138 kES_EXT_MsToTexture_MSFBOType == fMSFBOType;
139 }
140
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000141 InvalidateFBType invalidateFBType() const { return fInvalidateFBType; }
142
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000143 /// What type of buffer mapping is supported?
144 MapBufferType mapBufferType() const { return fMapBufferType; }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000145
146 /**
147 * Gets an array of legal stencil formats. These formats are not guaranteed
148 * to be supported by the driver but are legal GLenum names given the GL
149 * version and extensions supported.
150 */
151 const SkTArray<StencilFormat, true>& stencilFormats() const {
152 return fStencilFormats;
153 }
154
155 /// The maximum number of fragment uniform vectors (GLES has min. 16).
156 int maxFragmentUniformVectors() const { return fMaxFragmentUniformVectors; }
157
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000158 /// maximum number of attribute values per vertex
bsalomon@google.com60da4172012-06-01 19:25:00 +0000159 int maxVertexAttributes() const { return fMaxVertexAttributes; }
160
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000161 /// maximum number of texture units accessible in the fragment shader.
162 int maxFragmentTextureUnits() const { return fMaxFragmentTextureUnits; }
163
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000164 /// ES requires an extension to support RGBA8 in RenderBufferStorage
165 bool rgba8RenderbufferSupport() const { return fRGBA8RenderbufferSupport; }
166
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000167 /**
168 * Depending on the ES extensions present the BGRA external format may
169 * correspond either a BGRA or RGBA internalFormat. On desktop GL it is
170 * RGBA.
171 */
172 bool bgraIsInternalFormat() const { return fBGRAIsInternalFormat; }
173
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000174 /// Is there support for GL_UNPACK_ROW_LENGTH
175 bool unpackRowLengthSupport() const { return fUnpackRowLengthSupport; }
176
177 /// Is there support for GL_UNPACK_FLIP_Y
178 bool unpackFlipYSupport() const { return fUnpackFlipYSupport; }
179
180 /// Is there support for GL_PACK_ROW_LENGTH
181 bool packRowLengthSupport() const { return fPackRowLengthSupport; }
182
183 /// Is there support for GL_PACK_REVERSE_ROW_ORDER
184 bool packFlipYSupport() const { return fPackFlipYSupport; }
185
186 /// Is there support for texture parameter GL_TEXTURE_USAGE
187 bool textureUsageSupport() const { return fTextureUsageSupport; }
188
189 /// Is there support for glTexStorage
190 bool texStorageSupport() const { return fTexStorageSupport; }
191
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000192 /// Is there support for GL_RED and GL_R8
193 bool textureRedSupport() const { return fTextureRedSupport; }
194
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000195 /// Is GL_ARB_IMAGING supported
196 bool imagingSupport() const { return fImagingSupport; }
197
bsalomon@google.com706f6682012-10-23 14:53:55 +0000198 /// Is GL_ARB_fragment_coord_conventions supported?
199 bool fragCoordConventionsSupport() const { return fFragCoordsConventionSupport; }
200
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000201 /// Is there support for Vertex Array Objects?
202 bool vertexArrayObjectSupport() const { return fVertexArrayObjectSupport; }
203
cdalton626e1ff2015-06-12 13:56:46 -0700204 /// Is there support for glDraw*Instanced and glVertexAttribDivisor?
205 bool instancedDrawingSupport() const { return fInstancedDrawingSupport; }
206
207 /// Is there support for GL_EXT_direct_state_access?
208 bool directStateAccessSupport() const { return fDirectStateAccessSupport; }
209
210 /// Is there support for GL_KHR_debug?
211 bool debugSupport() const { return fDebugSupport; }
212
jvanverth3f801cb2014-12-16 09:49:38 -0800213 /// Is there support for ES2 compatability?
214 bool ES2CompatibilitySupport() const { return fES2CompatibilitySupport; }
215
cdalton0edea2c2015-05-21 08:27:44 -0700216 /// Can we call glDisable(GL_MULTISAMPLE)?
vbuzinovdded6962015-06-12 08:59:45 -0700217 bool multisampleDisableSupport() const {
218 return fMultisampleDisableSupport;
219 }
cdalton0edea2c2015-05-21 08:27:44 -0700220
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000221 /// Use indices or vertices in CPU arrays rather than VBOs for dynamic content.
bsalomon@google.com96966a52013-02-21 16:34:21 +0000222 bool useNonVBOVertexAndIndexDynamicData() const {
223 return fUseNonVBOVertexAndIndexDynamicData;
224 }
225
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000226 /// Does ReadPixels support the provided format/type combo?
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000227 bool readPixelsSupported(const GrGLInterface* intf,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000228 GrGLenum format,
piotaixre4b23142014-10-02 10:57:53 -0700229 GrGLenum type,
230 GrGLenum currFboFormat) const;
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000231
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000232 bool isCoreProfile() const { return fIsCoreProfile; }
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000233
joshualittc1f56b52015-06-22 12:31:31 -0700234 bool bindFragDataLocationSupport() const { return fBindFragDataLocationSupport; }
235
joshualitt7bdd70a2015-10-01 06:28:11 -0700236 bool bindUniformLocationSupport() const { return fBindUniformLocationSupport; }
237
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000238 /**
bsalomon16921ec2015-07-30 15:34:56 -0700239 * Is there support for enabling/disabling sRGB writes for sRGB-capable color attachments?
240 * If false this does not mean sRGB is not supported but rather that if it is supported
241 * it cannot be turned off for configs that support it.
242 */
243 bool srgbWriteControl() const { return fSRGBWriteControl; }
244
245 /**
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000246 * Returns a string containing the caps info.
247 */
mtklein36352bf2015-03-25 18:17:31 -0700248 SkString dump() const override;
commit-bot@chromium.orgbeb8b3a2014-04-15 15:37:51 +0000249
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000250 /**
251 * LATC can appear under one of three possible names. In order to know
252 * which GL internal format to use, we need to keep track of which name
253 * we found LATC under. The default is LATC.
254 */
255 enum LATCAlias {
256 kLATC_LATCAlias,
257 kRGTC_LATCAlias,
258 k3DC_LATCAlias
259 };
260
261 LATCAlias latcAlias() const { return fLATCAlias; }
262
bsalomon88c7b982015-07-31 11:20:16 -0700263 bool rgba8888PixelsOpsAreSlow() const { return fRGBA8888PixelsOpsAreSlow; }
264 bool partialFBOReadIsSlow() const { return fPartialFBOReadIsSlow; }
265
egdanielf5294392015-10-21 07:14:17 -0700266 const GrGLSLCaps* glslCaps() const { return reinterpret_cast<GrGLSLCaps*>(fShaderCaps.get()); }
jvanverthe9c0fc62015-04-29 11:18:05 -0700267
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000268private:
cdalton4cd67132015-06-10 19:23:46 -0700269 void init(const GrContextOptions&, const GrGLContextInfo&, const GrGLInterface*);
egdaniel05ded892015-10-26 07:38:05 -0700270 void initGLSL(const GrGLContextInfo&);
kkinnunencfe62e32015-07-01 02:58:50 -0700271 bool hasPathRenderingSupport(const GrGLContextInfo&, const GrGLInterface*);
bsalomon424cc262015-05-22 10:37:30 -0700272
egdanielb7e7d572015-11-04 04:23:53 -0800273 void onApplyOptionsOverrides(const GrContextOptions& options) override;
274
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000275 /**
276 * Maintains a bit per GrPixelConfig. It is used to avoid redundantly
277 * performing glCheckFrameBufferStatus for the same config.
278 */
279 struct VerifiedColorConfigs {
280 VerifiedColorConfigs() {
281 this->reset();
282 }
283
284 void reset() {
285 for (int i = 0; i < kNumUints; ++i) {
286 fVerifiedColorConfigs[i] = 0;
287 }
288 }
289
bsalomon@google.comb8eb2e82013-03-28 13:46:42 +0000290 static const int kNumUints = (kGrPixelConfigCnt + 31) / 32;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000291 uint32_t fVerifiedColorConfigs[kNumUints];
292
293 void markVerified(GrPixelConfig config) {
294#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
295 return;
296#endif
297 int u32Idx = config / 32;
298 int bitIdx = config % 32;
299 fVerifiedColorConfigs[u32Idx] |= 1 << bitIdx;
300 }
301
302 bool isVerified(GrPixelConfig config) const {
303#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
304 return false;
305#endif
306 int u32Idx = config / 32;
307 int bitIdx = config % 32;
308 return SkToBool(fVerifiedColorConfigs[u32Idx] & (1 << bitIdx));
309 }
310 };
311
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000312 void initFSAASupport(const GrGLContextInfo&, const GrGLInterface*);
cdalton1dd05422015-06-12 09:01:18 -0700313 void initBlendEqationSupport(const GrGLContextInfo&);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000314 void initStencilFormats(const GrGLContextInfo&);
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000315 // This must be called after initFSAASupport().
bsalomon16921ec2015-07-30 15:34:56 -0700316 void initConfigRenderableTable(const GrGLContextInfo&, bool srgbSupport);
317 void initConfigTexturableTable(const GrGLContextInfo&, const GrGLInterface*, bool srgbSupport);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000318
bsalomon17168df2014-12-09 09:00:49 -0800319 bool doReadPixelsSupported(const GrGLInterface* intf, GrGLenum format, GrGLenum type) const;
piotaixre4b23142014-10-02 10:57:53 -0700320
jvanverthcba99b82015-06-24 06:59:57 -0700321 void initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
322 const GrGLInterface* intf,
323 GrGLSLCaps* glslCaps);
324
egdanielb7e7d572015-11-04 04:23:53 -0800325 void initConfigSwizzleTable(const GrGLContextInfo& ctxInfo, GrGLSLCaps* glslCaps);
326
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000327 // tracks configs that have been verified to pass the FBO completeness when
328 // used as a color attachment
329 VerifiedColorConfigs fVerifiedColorConfigs;
330
331 SkTArray<StencilFormat, true> fStencilFormats;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000332
333 int fMaxFragmentUniformVectors;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000334 int fMaxVertexAttributes;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000335 int fMaxFragmentTextureUnits;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000336
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000337 MSFBOType fMSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000338 InvalidateFBType fInvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000339 MapBufferType fMapBufferType;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000340 LATCAlias fLATCAlias;
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000341
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000342 bool fRGBA8RenderbufferSupport : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000343 bool fBGRAIsInternalFormat : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000344 bool fUnpackRowLengthSupport : 1;
345 bool fUnpackFlipYSupport : 1;
346 bool fPackRowLengthSupport : 1;
347 bool fPackFlipYSupport : 1;
348 bool fTextureUsageSupport : 1;
349 bool fTexStorageSupport : 1;
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000350 bool fTextureRedSupport : 1;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000351 bool fImagingSupport : 1;
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000352 bool fTwoFormatLimit : 1;
bsalomon@google.com706f6682012-10-23 14:53:55 +0000353 bool fFragCoordsConventionSupport : 1;
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000354 bool fVertexArrayObjectSupport : 1;
cdalton626e1ff2015-06-12 13:56:46 -0700355 bool fInstancedDrawingSupport : 1;
356 bool fDirectStateAccessSupport : 1;
357 bool fDebugSupport : 1;
jvanverth3f801cb2014-12-16 09:49:38 -0800358 bool fES2CompatibilitySupport : 1;
cdalton0edea2c2015-05-21 08:27:44 -0700359 bool fMultisampleDisableSupport : 1;
bsalomon@google.com96966a52013-02-21 16:34:21 +0000360 bool fUseNonVBOVertexAndIndexDynamicData : 1;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000361 bool fIsCoreProfile : 1;
joshualittc1f56b52015-06-22 12:31:31 -0700362 bool fBindFragDataLocationSupport : 1;
bsalomon16921ec2015-07-30 15:34:56 -0700363 bool fSRGBWriteControl : 1;
bsalomon88c7b982015-07-31 11:20:16 -0700364 bool fRGBA8888PixelsOpsAreSlow : 1;
365 bool fPartialFBOReadIsSlow : 1;
joshualitt7bdd70a2015-10-01 06:28:11 -0700366 bool fBindUniformLocationSupport : 1;
joshualitt58162332014-08-01 06:44:53 -0700367
mtklein2aa1f7e2015-02-20 12:35:32 -0800368 struct ReadPixelsSupportedFormat {
369 GrGLenum fFormat;
370 GrGLenum fType;
371 GrGLenum fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700372
mtklein2aa1f7e2015-02-20 12:35:32 -0800373 bool operator==(const ReadPixelsSupportedFormat& rhs) const {
374 return fFormat == rhs.fFormat
375 && fType == rhs.fType
376 && fFboFormat == rhs.fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700377 }
piotaixre4b23142014-10-02 10:57:53 -0700378 };
mtklein02f46cf2015-03-20 13:48:42 -0700379 mutable SkTHashMap<ReadPixelsSupportedFormat, bool> fReadPixelsSupportedCache;
piotaixre4b23142014-10-02 10:57:53 -0700380
bsalomon4b91f762015-05-19 09:29:46 -0700381 typedef GrCaps INHERITED;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000382};
383
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000384#endif