blob: 34dde70a36ba8a829f06b89f2e65b1daa52da8d2 [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
174 /// GL_ARB_texture_swizzle support
175 bool textureSwizzleSupport() const { return fTextureSwizzleSupport; }
176
177 /// Is there support for GL_UNPACK_ROW_LENGTH
178 bool unpackRowLengthSupport() const { return fUnpackRowLengthSupport; }
179
180 /// Is there support for GL_UNPACK_FLIP_Y
181 bool unpackFlipYSupport() const { return fUnpackFlipYSupport; }
182
183 /// Is there support for GL_PACK_ROW_LENGTH
184 bool packRowLengthSupport() const { return fPackRowLengthSupport; }
185
186 /// Is there support for GL_PACK_REVERSE_ROW_ORDER
187 bool packFlipYSupport() const { return fPackFlipYSupport; }
188
189 /// Is there support for texture parameter GL_TEXTURE_USAGE
190 bool textureUsageSupport() const { return fTextureUsageSupport; }
191
192 /// Is there support for glTexStorage
193 bool texStorageSupport() const { return fTexStorageSupport; }
194
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000195 /// Is there support for GL_RED and GL_R8
196 bool textureRedSupport() const { return fTextureRedSupport; }
197
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000198 /// Is GL_ARB_IMAGING supported
199 bool imagingSupport() const { return fImagingSupport; }
200
bsalomon@google.com706f6682012-10-23 14:53:55 +0000201 /// Is GL_ARB_fragment_coord_conventions supported?
202 bool fragCoordConventionsSupport() const { return fFragCoordsConventionSupport; }
203
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000204 /// Is there support for Vertex Array Objects?
205 bool vertexArrayObjectSupport() const { return fVertexArrayObjectSupport; }
206
cdalton626e1ff2015-06-12 13:56:46 -0700207 /// Is there support for glDraw*Instanced and glVertexAttribDivisor?
208 bool instancedDrawingSupport() const { return fInstancedDrawingSupport; }
209
210 /// Is there support for GL_EXT_direct_state_access?
211 bool directStateAccessSupport() const { return fDirectStateAccessSupport; }
212
213 /// Is there support for GL_KHR_debug?
214 bool debugSupport() const { return fDebugSupport; }
215
jvanverth3f801cb2014-12-16 09:49:38 -0800216 /// Is there support for ES2 compatability?
217 bool ES2CompatibilitySupport() const { return fES2CompatibilitySupport; }
218
cdalton0edea2c2015-05-21 08:27:44 -0700219 /// Can we call glDisable(GL_MULTISAMPLE)?
vbuzinovdded6962015-06-12 08:59:45 -0700220 bool multisampleDisableSupport() const {
221 return fMultisampleDisableSupport;
222 }
cdalton0edea2c2015-05-21 08:27:44 -0700223
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000224 /// Use indices or vertices in CPU arrays rather than VBOs for dynamic content.
bsalomon@google.com96966a52013-02-21 16:34:21 +0000225 bool useNonVBOVertexAndIndexDynamicData() const {
226 return fUseNonVBOVertexAndIndexDynamicData;
227 }
228
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000229 /// Does ReadPixels support the provided format/type combo?
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000230 bool readPixelsSupported(const GrGLInterface* intf,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000231 GrGLenum format,
piotaixre4b23142014-10-02 10:57:53 -0700232 GrGLenum type,
233 GrGLenum currFboFormat) const;
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000234
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000235 bool isCoreProfile() const { return fIsCoreProfile; }
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000236
joshualittc1f56b52015-06-22 12:31:31 -0700237 bool bindFragDataLocationSupport() const { return fBindFragDataLocationSupport; }
238
joshualitt7bdd70a2015-10-01 06:28:11 -0700239 bool bindUniformLocationSupport() const { return fBindUniformLocationSupport; }
240
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000241 /**
bsalomon16921ec2015-07-30 15:34:56 -0700242 * Is there support for enabling/disabling sRGB writes for sRGB-capable color attachments?
243 * If false this does not mean sRGB is not supported but rather that if it is supported
244 * it cannot be turned off for configs that support it.
245 */
246 bool srgbWriteControl() const { return fSRGBWriteControl; }
247
248 /**
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000249 * Returns a string containing the caps info.
250 */
mtklein36352bf2015-03-25 18:17:31 -0700251 SkString dump() const override;
commit-bot@chromium.orgbeb8b3a2014-04-15 15:37:51 +0000252
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000253 /**
254 * LATC can appear under one of three possible names. In order to know
255 * which GL internal format to use, we need to keep track of which name
256 * we found LATC under. The default is LATC.
257 */
258 enum LATCAlias {
259 kLATC_LATCAlias,
260 kRGTC_LATCAlias,
261 k3DC_LATCAlias
262 };
263
264 LATCAlias latcAlias() const { return fLATCAlias; }
265
bsalomon88c7b982015-07-31 11:20:16 -0700266 bool rgba8888PixelsOpsAreSlow() const { return fRGBA8888PixelsOpsAreSlow; }
267 bool partialFBOReadIsSlow() const { return fPartialFBOReadIsSlow; }
268
egdanielf5294392015-10-21 07:14:17 -0700269 const GrGLSLCaps* glslCaps() const { return reinterpret_cast<GrGLSLCaps*>(fShaderCaps.get()); }
jvanverthe9c0fc62015-04-29 11:18:05 -0700270
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000271private:
cdalton4cd67132015-06-10 19:23:46 -0700272 void init(const GrContextOptions&, const GrGLContextInfo&, const GrGLInterface*);
kkinnunencfe62e32015-07-01 02:58:50 -0700273 bool hasPathRenderingSupport(const GrGLContextInfo&, const GrGLInterface*);
bsalomon424cc262015-05-22 10:37:30 -0700274
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
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000325 // tracks configs that have been verified to pass the FBO completeness when
326 // used as a color attachment
327 VerifiedColorConfigs fVerifiedColorConfigs;
328
329 SkTArray<StencilFormat, true> fStencilFormats;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000330
331 int fMaxFragmentUniformVectors;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000332 int fMaxVertexAttributes;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000333 int fMaxFragmentTextureUnits;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000334
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000335 MSFBOType fMSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000336 InvalidateFBType fInvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000337 MapBufferType fMapBufferType;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000338 LATCAlias fLATCAlias;
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000339
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000340 bool fRGBA8RenderbufferSupport : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000341 bool fBGRAIsInternalFormat : 1;
342 bool fTextureSwizzleSupport : 1;
343 bool fUnpackRowLengthSupport : 1;
344 bool fUnpackFlipYSupport : 1;
345 bool fPackRowLengthSupport : 1;
346 bool fPackFlipYSupport : 1;
347 bool fTextureUsageSupport : 1;
348 bool fTexStorageSupport : 1;
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000349 bool fTextureRedSupport : 1;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000350 bool fImagingSupport : 1;
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000351 bool fTwoFormatLimit : 1;
bsalomon@google.com706f6682012-10-23 14:53:55 +0000352 bool fFragCoordsConventionSupport : 1;
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000353 bool fVertexArrayObjectSupport : 1;
cdalton626e1ff2015-06-12 13:56:46 -0700354 bool fInstancedDrawingSupport : 1;
355 bool fDirectStateAccessSupport : 1;
356 bool fDebugSupport : 1;
jvanverth3f801cb2014-12-16 09:49:38 -0800357 bool fES2CompatibilitySupport : 1;
cdalton0edea2c2015-05-21 08:27:44 -0700358 bool fMultisampleDisableSupport : 1;
bsalomon@google.com96966a52013-02-21 16:34:21 +0000359 bool fUseNonVBOVertexAndIndexDynamicData : 1;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000360 bool fIsCoreProfile : 1;
joshualittc1f56b52015-06-22 12:31:31 -0700361 bool fBindFragDataLocationSupport : 1;
bsalomon16921ec2015-07-30 15:34:56 -0700362 bool fSRGBWriteControl : 1;
bsalomon88c7b982015-07-31 11:20:16 -0700363 bool fRGBA8888PixelsOpsAreSlow : 1;
364 bool fPartialFBOReadIsSlow : 1;
joshualitt7bdd70a2015-10-01 06:28:11 -0700365 bool fBindUniformLocationSupport : 1;
joshualitt58162332014-08-01 06:44:53 -0700366
mtklein2aa1f7e2015-02-20 12:35:32 -0800367 struct ReadPixelsSupportedFormat {
368 GrGLenum fFormat;
369 GrGLenum fType;
370 GrGLenum fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700371
mtklein2aa1f7e2015-02-20 12:35:32 -0800372 bool operator==(const ReadPixelsSupportedFormat& rhs) const {
373 return fFormat == rhs.fFormat
374 && fType == rhs.fType
375 && fFboFormat == rhs.fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700376 }
piotaixre4b23142014-10-02 10:57:53 -0700377 };
mtklein02f46cf2015-03-20 13:48:42 -0700378 mutable SkTHashMap<ReadPixelsSupportedFormat, bool> fReadPixelsSupportedCache;
piotaixre4b23142014-10-02 10:57:53 -0700379
bsalomon4b91f762015-05-19 09:29:46 -0700380 typedef GrCaps INHERITED;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000381};
382
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000383#endif