blob: 0f1b2c53a1d20ea0fdb9d967876f04fab18ff4df [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
bsalomon30447372015-12-21 09:03:05 -080031 /** Provides information about the mappiing from GrPixelConfig to GL formats. */
32 struct ConfigFormats {
33 ConfigFormats() {
34 // Inits to known bad GL enum values.
35 memset(this, 0xAB, sizeof(ConfigFormats));
36 }
37 GrGLenum fBaseInternalFormat;
38 GrGLenum fSizedInternalFormat;
39 GrGLenum fExternalFormat;
40 GrGLenum fExternalType;
41
42 // The <format> parameter to use for glTexImage and glTexSubImage.
43 // This is usually the same as fExternalFormat except for kSRGBA on some GL contexts.
44 GrGLenum fExternalFormatForTexImage;
45 // Either the base or sized internal format depending on the GL and config.
46 GrGLenum fInternalFormatTexImage;
47 };
48
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000049 /**
50 * The type of MSAA for FBOs supported. Different extensions have different
51 * semantics of how / when a resolve is performed.
52 */
53 enum MSFBOType {
54 /**
55 * no support for MSAA FBOs
56 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +000057 kNone_MSFBOType = 0,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000058 /**
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +000059 * GL3.0-style MSAA FBO (GL_ARB_framebuffer_object).
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000060 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000061 kDesktop_ARB_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000062 /**
63 * earlier GL_EXT_framebuffer* extensions
64 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000065 kDesktop_EXT_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000066 /**
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +000067 * Similar to kDesktop_ARB but with additional restrictions on glBlitFramebuffer.
68 */
69 kES_3_0_MSFBOType,
70 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000071 * GL_APPLE_framebuffer_multisample ES extension
72 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000073 kES_Apple_MSFBOType,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000074 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +000075 * GL_IMG_multisampled_render_to_texture. This variation does not have MSAA renderbuffers.
76 * Instead the texture is multisampled when bound to the FBO and then resolved automatically
77 * when read. It also defines an alternate value for GL_MAX_SAMPLES (which we call
78 * GR_GL_MAX_SAMPLES_IMG).
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000079 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000080 kES_IMG_MsToTexture_MSFBOType,
81 /**
82 * GL_EXT_multisampled_render_to_texture. Same as the IMG one above but uses the standard
83 * GL_MAX_SAMPLES value.
84 */
85 kES_EXT_MsToTexture_MSFBOType,
vbuzinovdded6962015-06-12 08:59:45 -070086 /**
87 * GL_NV_framebuffer_mixed_samples.
88 */
89 kMixedSamples_MSFBOType,
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000090
vbuzinovdded6962015-06-12 08:59:45 -070091 kLast_MSFBOType = kMixedSamples_MSFBOType
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000092 };
93
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000094 enum InvalidateFBType {
95 kNone_InvalidateFBType,
96 kDiscard_InvalidateFBType, //<! glDiscardFramebuffer()
97 kInvalidate_InvalidateFBType, //<! glInvalidateFramebuffer()
98
99 kLast_InvalidateFBType = kInvalidate_InvalidateFBType
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000100 };
101
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000102 enum MapBufferType {
103 kNone_MapBufferType,
104 kMapBuffer_MapBufferType, // glMapBuffer()
105 kMapBufferRange_MapBufferType, // glMapBufferRange()
106 kChromium_MapBufferType, // GL_CHROMIUM_map_sub
107
108 kLast_MapBufferType = kChromium_MapBufferType,
109 };
110
jvanverthd7a2c1f2015-12-07 07:36:44 -0800111 enum TransferBufferType {
112 kNone_TransferBufferType,
113 kPBO_TransferBufferType, // ARB_pixel_buffer_object
114 kChromium_TransferBufferType, // CHROMIUM_pixel_transfer_buffer_object
115
116 kLast_TransferBufferType = kChromium_TransferBufferType,
117 };
118
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000119 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000120 * Initializes the GrGLCaps to the set of features supported in the current
121 * OpenGL context accessible via ctxInfo.
122 */
bsalomon682c2692015-05-22 14:01:46 -0700123 GrGLCaps(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
124 const GrGLInterface* glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000125
bsalomon30447372015-12-21 09:03:05 -0800126 /** Returns conversions to various GL format parameters for a GrPixelCfonig. */
127 const ConfigFormats& configGLFormats(GrPixelConfig config) const {
128 return fConfigTable[config].fFormats;
129 }
130
131
132 /**
133 * Gets an array of legal stencil formats. These formats are not guaranteed
134 * to be supported by the driver but are legal GLenum names given the GL
135 * version and extensions supported.
136 */
137 const SkTArray<StencilFormat, true>& stencilFormats() const {
138 return fStencilFormats;
139 }
140
141 /**
142 * Has a stencil format index been found for the config (or we've found that no format works).
143 */
144 bool hasStencilFormatBeenDeterminedForConfig(GrPixelConfig config) const {
145 return fConfigTable[config].fStencilFormatIndex != ConfigInfo::kUnknown_StencilIndex;
146 }
147
148 /**
149 * Gets the stencil format index for the config. This assumes
150 * hasStencilFormatBeenDeterminedForConfig has already been checked. Returns a value < 0 if
151 * no stencil format is supported with the config. Otherwise, returned index refers to the array
152 * returned by stencilFormats().
153 */
154 int getStencilFormatIndexForConfig(GrPixelConfig config) const {
155 SkASSERT(this->hasStencilFormatBeenDeterminedForConfig(config));
156 return fConfigTable[config].fStencilFormatIndex;
157 }
158
159 /**
160 * If index is >= 0 this records an index into stencilFormats() as the best stencil format for
161 * the config. If < 0 it records that the config has no supported stencil format index.
162 */
163 void setStencilFormatIndexForConfig(GrPixelConfig config, int index) {
164 SkASSERT(!this->hasStencilFormatBeenDeterminedForConfig(config));
165 if (index < 0) {
166 fConfigTable[config].fStencilFormatIndex = ConfigInfo::kUnsupported_StencilFormatIndex;
167 } else {
168 fConfigTable[config].fStencilFormatIndex = index;
169 }
170 }
171
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000172 /**
173 * Call to note that a color config has been verified as a valid color
174 * attachment. This may save future calls to glCheckFramebufferStatus
175 * using isConfigVerifiedColorAttachment().
176 */
177 void markConfigAsValidColorAttachment(GrPixelConfig config) {
178 fVerifiedColorConfigs.markVerified(config);
179 }
180
181 /**
182 * Call to check whether a config has been verified as a valid color
183 * attachment.
184 */
185 bool isConfigVerifiedColorAttachment(GrPixelConfig config) const {
186 return fVerifiedColorConfigs.isVerified(config);
187 }
188
189 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000190 * Reports the type of MSAA FBO support.
191 */
192 MSFBOType msFBOType() const { return fMSFBOType; }
193
194 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +0000195 * Does the supported MSAA FBO extension have MSAA renderbuffers?
196 */
197 bool usesMSAARenderBuffers() const {
198 return kNone_MSFBOType != fMSFBOType &&
199 kES_IMG_MsToTexture_MSFBOType != fMSFBOType &&
vbuzinovdded6962015-06-12 08:59:45 -0700200 kES_EXT_MsToTexture_MSFBOType != fMSFBOType &&
201 kMixedSamples_MSFBOType != fMSFBOType;
bsalomon@google.com347c3822013-05-01 20:10:01 +0000202 }
203
204 /**
205 * Is the MSAA FBO extension one where the texture is multisampled when bound to an FBO and
206 * then implicitly resolved when read.
207 */
208 bool usesImplicitMSAAResolve() const {
209 return kES_IMG_MsToTexture_MSFBOType == fMSFBOType ||
210 kES_EXT_MsToTexture_MSFBOType == fMSFBOType;
211 }
212
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000213 InvalidateFBType invalidateFBType() const { return fInvalidateFBType; }
214
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000215 /// What type of buffer mapping is supported?
216 MapBufferType mapBufferType() const { return fMapBufferType; }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000217
jvanverthd7a2c1f2015-12-07 07:36:44 -0800218 /// What type of transfer buffer is supported?
219 TransferBufferType transferBufferType() const { return fTransferBufferType; }
220
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000221 /// The maximum number of fragment uniform vectors (GLES has min. 16).
222 int maxFragmentUniformVectors() const { return fMaxFragmentUniformVectors; }
223
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000224 /// maximum number of attribute values per vertex
bsalomon@google.com60da4172012-06-01 19:25:00 +0000225 int maxVertexAttributes() const { return fMaxVertexAttributes; }
226
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000227 /// maximum number of texture units accessible in the fragment shader.
228 int maxFragmentTextureUnits() const { return fMaxFragmentTextureUnits; }
229
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000230 /// ES requires an extension to support RGBA8 in RenderBufferStorage
231 bool rgba8RenderbufferSupport() const { return fRGBA8RenderbufferSupport; }
232
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000233 /**
234 * Depending on the ES extensions present the BGRA external format may
235 * correspond either a BGRA or RGBA internalFormat. On desktop GL it is
236 * RGBA.
237 */
238 bool bgraIsInternalFormat() const { return fBGRAIsInternalFormat; }
239
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000240 /// Is there support for GL_UNPACK_ROW_LENGTH
241 bool unpackRowLengthSupport() const { return fUnpackRowLengthSupport; }
242
243 /// Is there support for GL_UNPACK_FLIP_Y
244 bool unpackFlipYSupport() const { return fUnpackFlipYSupport; }
245
246 /// Is there support for GL_PACK_ROW_LENGTH
247 bool packRowLengthSupport() const { return fPackRowLengthSupport; }
248
249 /// Is there support for GL_PACK_REVERSE_ROW_ORDER
250 bool packFlipYSupport() const { return fPackFlipYSupport; }
251
252 /// Is there support for texture parameter GL_TEXTURE_USAGE
253 bool textureUsageSupport() const { return fTextureUsageSupport; }
254
255 /// Is there support for glTexStorage
256 bool texStorageSupport() const { return fTexStorageSupport; }
257
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000258 /// Is there support for GL_RED and GL_R8
259 bool textureRedSupport() const { return fTextureRedSupport; }
260
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000261 /// Is GL_ARB_IMAGING supported
262 bool imagingSupport() const { return fImagingSupport; }
263
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000264 /// Is there support for Vertex Array Objects?
265 bool vertexArrayObjectSupport() const { return fVertexArrayObjectSupport; }
266
cdalton626e1ff2015-06-12 13:56:46 -0700267 /// Is there support for GL_EXT_direct_state_access?
268 bool directStateAccessSupport() const { return fDirectStateAccessSupport; }
269
270 /// Is there support for GL_KHR_debug?
271 bool debugSupport() const { return fDebugSupport; }
272
jvanverth3f801cb2014-12-16 09:49:38 -0800273 /// Is there support for ES2 compatability?
274 bool ES2CompatibilitySupport() const { return fES2CompatibilitySupport; }
275
cdaltond4727922015-11-10 12:49:06 -0800276 /// Can we call glDisable(GL_MULTISAMPLE)?
277 bool multisampleDisableSupport() const {
278 return fMultisampleDisableSupport;
279 }
280
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000281 /// Use indices or vertices in CPU arrays rather than VBOs for dynamic content.
bsalomon@google.com96966a52013-02-21 16:34:21 +0000282 bool useNonVBOVertexAndIndexDynamicData() const {
283 return fUseNonVBOVertexAndIndexDynamicData;
284 }
285
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000286 /// Does ReadPixels support the provided format/type combo?
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000287 bool readPixelsSupported(const GrGLInterface* intf,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000288 GrGLenum format,
piotaixre4b23142014-10-02 10:57:53 -0700289 GrGLenum type,
290 GrGLenum currFboFormat) const;
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000291
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000292 bool isCoreProfile() const { return fIsCoreProfile; }
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000293
joshualittc1f56b52015-06-22 12:31:31 -0700294 bool bindFragDataLocationSupport() const { return fBindFragDataLocationSupport; }
295
joshualitt7bdd70a2015-10-01 06:28:11 -0700296 bool bindUniformLocationSupport() const { return fBindUniformLocationSupport; }
297
bsalomon7ea33f52015-11-22 14:51:00 -0800298 /// Are textures with GL_TEXTURE_EXTERNAL_OES type supported.
299 bool externalTextureSupport() const { return fExternalTextureSupport; }
300
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000301 /**
bsalomon16921ec2015-07-30 15:34:56 -0700302 * Is there support for enabling/disabling sRGB writes for sRGB-capable color attachments?
303 * If false this does not mean sRGB is not supported but rather that if it is supported
304 * it cannot be turned off for configs that support it.
305 */
306 bool srgbWriteControl() const { return fSRGBWriteControl; }
307
308 /**
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000309 * Returns a string containing the caps info.
310 */
mtklein36352bf2015-03-25 18:17:31 -0700311 SkString dump() const override;
commit-bot@chromium.orgbeb8b3a2014-04-15 15:37:51 +0000312
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000313 /**
314 * LATC can appear under one of three possible names. In order to know
315 * which GL internal format to use, we need to keep track of which name
316 * we found LATC under. The default is LATC.
317 */
318 enum LATCAlias {
319 kLATC_LATCAlias,
320 kRGTC_LATCAlias,
321 k3DC_LATCAlias
322 };
323
324 LATCAlias latcAlias() const { return fLATCAlias; }
325
bsalomon88c7b982015-07-31 11:20:16 -0700326 bool rgba8888PixelsOpsAreSlow() const { return fRGBA8888PixelsOpsAreSlow; }
327 bool partialFBOReadIsSlow() const { return fPartialFBOReadIsSlow; }
328
egdanielf5294392015-10-21 07:14:17 -0700329 const GrGLSLCaps* glslCaps() const { return reinterpret_cast<GrGLSLCaps*>(fShaderCaps.get()); }
jvanverthe9c0fc62015-04-29 11:18:05 -0700330
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000331private:
cdalton4cd67132015-06-10 19:23:46 -0700332 void init(const GrContextOptions&, const GrGLContextInfo&, const GrGLInterface*);
egdaniel05ded892015-10-26 07:38:05 -0700333 void initGLSL(const GrGLContextInfo&);
kkinnunencfe62e32015-07-01 02:58:50 -0700334 bool hasPathRenderingSupport(const GrGLContextInfo&, const GrGLInterface*);
bsalomon424cc262015-05-22 10:37:30 -0700335
egdanielb7e7d572015-11-04 04:23:53 -0800336 void onApplyOptionsOverrides(const GrContextOptions& options) override;
337
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000338 /**
339 * Maintains a bit per GrPixelConfig. It is used to avoid redundantly
340 * performing glCheckFrameBufferStatus for the same config.
341 */
342 struct VerifiedColorConfigs {
343 VerifiedColorConfigs() {
344 this->reset();
345 }
346
347 void reset() {
348 for (int i = 0; i < kNumUints; ++i) {
349 fVerifiedColorConfigs[i] = 0;
350 }
351 }
352
bsalomon@google.comb8eb2e82013-03-28 13:46:42 +0000353 static const int kNumUints = (kGrPixelConfigCnt + 31) / 32;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000354 uint32_t fVerifiedColorConfigs[kNumUints];
355
356 void markVerified(GrPixelConfig config) {
357#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
358 return;
359#endif
360 int u32Idx = config / 32;
361 int bitIdx = config % 32;
362 fVerifiedColorConfigs[u32Idx] |= 1 << bitIdx;
363 }
364
365 bool isVerified(GrPixelConfig config) const {
366#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
367 return false;
368#endif
369 int u32Idx = config / 32;
370 int bitIdx = config % 32;
371 return SkToBool(fVerifiedColorConfigs[u32Idx] & (1 << bitIdx));
372 }
373 };
374
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000375 void initFSAASupport(const GrGLContextInfo&, const GrGLInterface*);
cdalton1dd05422015-06-12 09:01:18 -0700376 void initBlendEqationSupport(const GrGLContextInfo&);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000377 void initStencilFormats(const GrGLContextInfo&);
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000378 // This must be called after initFSAASupport().
bsalomon16921ec2015-07-30 15:34:56 -0700379 void initConfigRenderableTable(const GrGLContextInfo&, bool srgbSupport);
380 void initConfigTexturableTable(const GrGLContextInfo&, const GrGLInterface*, bool srgbSupport);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000381
bsalomon17168df2014-12-09 09:00:49 -0800382 bool doReadPixelsSupported(const GrGLInterface* intf, GrGLenum format, GrGLenum type) const;
piotaixre4b23142014-10-02 10:57:53 -0700383
jvanverthcba99b82015-06-24 06:59:57 -0700384 void initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
385 const GrGLInterface* intf,
386 GrGLSLCaps* glslCaps);
387
egdanielb7e7d572015-11-04 04:23:53 -0800388 void initConfigSwizzleTable(const GrGLContextInfo& ctxInfo, GrGLSLCaps* glslCaps);
389
bsalomon30447372015-12-21 09:03:05 -0800390 void initConfigTable(const GrGLContextInfo&);
391
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000392 // tracks configs that have been verified to pass the FBO completeness when
393 // used as a color attachment
394 VerifiedColorConfigs fVerifiedColorConfigs;
395
396 SkTArray<StencilFormat, true> fStencilFormats;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000397
398 int fMaxFragmentUniformVectors;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000399 int fMaxVertexAttributes;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000400 int fMaxFragmentTextureUnits;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000401
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000402 MSFBOType fMSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000403 InvalidateFBType fInvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000404 MapBufferType fMapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800405 TransferBufferType fTransferBufferType;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000406 LATCAlias fLATCAlias;
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000407
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000408 bool fRGBA8RenderbufferSupport : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000409 bool fBGRAIsInternalFormat : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000410 bool fUnpackRowLengthSupport : 1;
411 bool fUnpackFlipYSupport : 1;
412 bool fPackRowLengthSupport : 1;
413 bool fPackFlipYSupport : 1;
414 bool fTextureUsageSupport : 1;
415 bool fTexStorageSupport : 1;
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000416 bool fTextureRedSupport : 1;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000417 bool fImagingSupport : 1;
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000418 bool fTwoFormatLimit : 1;
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000419 bool fVertexArrayObjectSupport : 1;
cdalton626e1ff2015-06-12 13:56:46 -0700420 bool fDirectStateAccessSupport : 1;
421 bool fDebugSupport : 1;
jvanverth3f801cb2014-12-16 09:49:38 -0800422 bool fES2CompatibilitySupport : 1;
cdaltond4727922015-11-10 12:49:06 -0800423 bool fMultisampleDisableSupport : 1;
bsalomon@google.com96966a52013-02-21 16:34:21 +0000424 bool fUseNonVBOVertexAndIndexDynamicData : 1;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000425 bool fIsCoreProfile : 1;
joshualittc1f56b52015-06-22 12:31:31 -0700426 bool fBindFragDataLocationSupport : 1;
bsalomon16921ec2015-07-30 15:34:56 -0700427 bool fSRGBWriteControl : 1;
bsalomon88c7b982015-07-31 11:20:16 -0700428 bool fRGBA8888PixelsOpsAreSlow : 1;
429 bool fPartialFBOReadIsSlow : 1;
joshualitt7bdd70a2015-10-01 06:28:11 -0700430 bool fBindUniformLocationSupport : 1;
bsalomon7ea33f52015-11-22 14:51:00 -0800431 bool fExternalTextureSupport : 1;
joshualitt58162332014-08-01 06:44:53 -0700432
bsalomon30447372015-12-21 09:03:05 -0800433 struct ConfigInfo {
434 ConfigInfo() : fStencilFormatIndex(kUnknown_StencilIndex) {};
435
436 ConfigFormats fFormats;
437
438 // Index into GrGLCaps's list of stencil formats. Support is determined experimentally and
439 // lazily.
440 int fStencilFormatIndex;
441
442 enum {
443 // This indicates that a stencil format has not yet been determined for the config.
444 kUnknown_StencilIndex = -1,
445 // This indicates that there is no supported stencil format for the config.
446 kUnsupported_StencilFormatIndex = -2
447 };
448 };
449
450 ConfigInfo fConfigTable[kGrPixelConfigCnt];
451
mtklein2aa1f7e2015-02-20 12:35:32 -0800452 struct ReadPixelsSupportedFormat {
453 GrGLenum fFormat;
454 GrGLenum fType;
455 GrGLenum fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700456
mtklein2aa1f7e2015-02-20 12:35:32 -0800457 bool operator==(const ReadPixelsSupportedFormat& rhs) const {
458 return fFormat == rhs.fFormat
459 && fType == rhs.fType
460 && fFboFormat == rhs.fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700461 }
piotaixre4b23142014-10-02 10:57:53 -0700462 };
mtklein02f46cf2015-03-20 13:48:42 -0700463 mutable SkTHashMap<ReadPixelsSupportedFormat, bool> fReadPixelsSupportedCache;
piotaixre4b23142014-10-02 10:57:53 -0700464
bsalomon4b91f762015-05-19 09:29:46 -0700465 typedef GrCaps INHERITED;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000466};
467
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000468#endif