blob: 230bffc7a657cbbceee01801830768f46f08199e [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) {
bsalomon480e8c02015-12-21 13:44:18 -0800178 fConfigTable[config].fFlags |= ConfigInfo::kVerifiedColorAttachment_Flag;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000179 }
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 {
bsalomon480e8c02015-12-21 13:44:18 -0800186 return SkToBool(fConfigTable[config].fFlags & ConfigInfo::kVerifiedColorAttachment_Flag);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000187 }
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,
bsalomon7928ef62016-01-05 10:26:39 -0800288 GrPixelConfig readConfig,
289 GrPixelConfig currFBOConfig) const;
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000290
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000291 bool isCoreProfile() const { return fIsCoreProfile; }
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000292
joshualittc1f56b52015-06-22 12:31:31 -0700293 bool bindFragDataLocationSupport() const { return fBindFragDataLocationSupport; }
294
joshualitt7bdd70a2015-10-01 06:28:11 -0700295 bool bindUniformLocationSupport() const { return fBindUniformLocationSupport; }
296
bsalomon7ea33f52015-11-22 14:51:00 -0800297 /// Are textures with GL_TEXTURE_EXTERNAL_OES type supported.
298 bool externalTextureSupport() const { return fExternalTextureSupport; }
299
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000300 /**
bsalomon16921ec2015-07-30 15:34:56 -0700301 * Is there support for enabling/disabling sRGB writes for sRGB-capable color attachments?
302 * If false this does not mean sRGB is not supported but rather that if it is supported
303 * it cannot be turned off for configs that support it.
304 */
305 bool srgbWriteControl() const { return fSRGBWriteControl; }
306
307 /**
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000308 * Returns a string containing the caps info.
309 */
mtklein36352bf2015-03-25 18:17:31 -0700310 SkString dump() const override;
commit-bot@chromium.orgbeb8b3a2014-04-15 15:37:51 +0000311
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000312 /**
313 * LATC can appear under one of three possible names. In order to know
314 * which GL internal format to use, we need to keep track of which name
315 * we found LATC under. The default is LATC.
316 */
317 enum LATCAlias {
318 kLATC_LATCAlias,
319 kRGTC_LATCAlias,
320 k3DC_LATCAlias
321 };
322
323 LATCAlias latcAlias() const { return fLATCAlias; }
324
bsalomon88c7b982015-07-31 11:20:16 -0700325 bool rgba8888PixelsOpsAreSlow() const { return fRGBA8888PixelsOpsAreSlow; }
326 bool partialFBOReadIsSlow() const { return fPartialFBOReadIsSlow; }
327
egdanielf5294392015-10-21 07:14:17 -0700328 const GrGLSLCaps* glslCaps() const { return reinterpret_cast<GrGLSLCaps*>(fShaderCaps.get()); }
jvanverthe9c0fc62015-04-29 11:18:05 -0700329
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000330private:
cdalton4cd67132015-06-10 19:23:46 -0700331 void init(const GrContextOptions&, const GrGLContextInfo&, const GrGLInterface*);
egdaniel05ded892015-10-26 07:38:05 -0700332 void initGLSL(const GrGLContextInfo&);
kkinnunencfe62e32015-07-01 02:58:50 -0700333 bool hasPathRenderingSupport(const GrGLContextInfo&, const GrGLInterface*);
bsalomon424cc262015-05-22 10:37:30 -0700334
egdanielb7e7d572015-11-04 04:23:53 -0800335 void onApplyOptionsOverrides(const GrContextOptions& options) override;
336
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000337 void initFSAASupport(const GrGLContextInfo&, const GrGLInterface*);
cdalton1dd05422015-06-12 09:01:18 -0700338 void initBlendEqationSupport(const GrGLContextInfo&);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000339 void initStencilFormats(const GrGLContextInfo&);
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000340 // This must be called after initFSAASupport().
bsalomon16921ec2015-07-30 15:34:56 -0700341 void initConfigRenderableTable(const GrGLContextInfo&, bool srgbSupport);
342 void initConfigTexturableTable(const GrGLContextInfo&, const GrGLInterface*, bool srgbSupport);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000343
jvanverthcba99b82015-06-24 06:59:57 -0700344 void initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
345 const GrGLInterface* intf,
346 GrGLSLCaps* glslCaps);
347
egdanielb7e7d572015-11-04 04:23:53 -0800348 void initConfigSwizzleTable(const GrGLContextInfo& ctxInfo, GrGLSLCaps* glslCaps);
349
bsalomon30447372015-12-21 09:03:05 -0800350 void initConfigTable(const GrGLContextInfo&);
351
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000352 SkTArray<StencilFormat, true> fStencilFormats;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000353
354 int fMaxFragmentUniformVectors;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000355 int fMaxVertexAttributes;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000356 int fMaxFragmentTextureUnits;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000357
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000358 MSFBOType fMSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000359 InvalidateFBType fInvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000360 MapBufferType fMapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800361 TransferBufferType fTransferBufferType;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000362 LATCAlias fLATCAlias;
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000363
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000364 bool fRGBA8RenderbufferSupport : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000365 bool fBGRAIsInternalFormat : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000366 bool fUnpackRowLengthSupport : 1;
367 bool fUnpackFlipYSupport : 1;
368 bool fPackRowLengthSupport : 1;
369 bool fPackFlipYSupport : 1;
370 bool fTextureUsageSupport : 1;
371 bool fTexStorageSupport : 1;
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000372 bool fTextureRedSupport : 1;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000373 bool fImagingSupport : 1;
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000374 bool fVertexArrayObjectSupport : 1;
cdalton626e1ff2015-06-12 13:56:46 -0700375 bool fDirectStateAccessSupport : 1;
376 bool fDebugSupport : 1;
jvanverth3f801cb2014-12-16 09:49:38 -0800377 bool fES2CompatibilitySupport : 1;
cdaltond4727922015-11-10 12:49:06 -0800378 bool fMultisampleDisableSupport : 1;
bsalomon@google.com96966a52013-02-21 16:34:21 +0000379 bool fUseNonVBOVertexAndIndexDynamicData : 1;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000380 bool fIsCoreProfile : 1;
joshualittc1f56b52015-06-22 12:31:31 -0700381 bool fBindFragDataLocationSupport : 1;
bsalomon16921ec2015-07-30 15:34:56 -0700382 bool fSRGBWriteControl : 1;
bsalomon88c7b982015-07-31 11:20:16 -0700383 bool fRGBA8888PixelsOpsAreSlow : 1;
384 bool fPartialFBOReadIsSlow : 1;
joshualitt7bdd70a2015-10-01 06:28:11 -0700385 bool fBindUniformLocationSupport : 1;
bsalomon7ea33f52015-11-22 14:51:00 -0800386 bool fExternalTextureSupport : 1;
joshualitt58162332014-08-01 06:44:53 -0700387
bsalomon7928ef62016-01-05 10:26:39 -0800388 /** Number type of the components (with out considering number of bits.) */
389 enum FormatType {
390 kNormalizedFixedPoint_FormatType,
391 kFloat_FormatType,
392 };
393
394 struct ReadPixelsFormat {
395 ReadPixelsFormat() : fFormat(0), fType(0) {}
396 GrGLenum fFormat;
397 GrGLenum fType;
398 };
399
bsalomon30447372015-12-21 09:03:05 -0800400 struct ConfigInfo {
bsalomon7928ef62016-01-05 10:26:39 -0800401 ConfigInfo() : fStencilFormatIndex(kUnknown_StencilIndex), fFlags(0) {}
bsalomon30447372015-12-21 09:03:05 -0800402
403 ConfigFormats fFormats;
404
bsalomon7928ef62016-01-05 10:26:39 -0800405 FormatType fFormatType;
406
407 // On ES contexts there are restrictions on type type/format that may be used for
408 // ReadPixels. One is implicitly specified by the current FBO's format. The other is
409 // queryable. This stores the queried option (lazily).
410 ReadPixelsFormat fSecondReadPixelsFormat;
411
bsalomon30447372015-12-21 09:03:05 -0800412 enum {
413 // This indicates that a stencil format has not yet been determined for the config.
414 kUnknown_StencilIndex = -1,
415 // This indicates that there is no supported stencil format for the config.
416 kUnsupported_StencilFormatIndex = -2
417 };
bsalomon480e8c02015-12-21 13:44:18 -0800418
419 // Index fStencilFormats.
420 int fStencilFormatIndex;
421
422 enum {
423 kVerifiedColorAttachment_Flag = 0x1
424 };
425 uint32_t fFlags;
bsalomon30447372015-12-21 09:03:05 -0800426 };
427
428 ConfigInfo fConfigTable[kGrPixelConfigCnt];
429
bsalomon4b91f762015-05-19 09:29:46 -0700430 typedef GrCaps INHERITED;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000431};
432
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000433#endif