blob: 548e7f7ba4a105a178342d8255c0aeeecede93a3 [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
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000012#include "GrDrawTargetCaps.h"
13#include "GrGLStencilBuffer.h"
robertphillips@google.coma2d71482012-08-01 20:08:47 +000014#include "SkTArray.h"
15#include "SkTDArray.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000016
17class GrGLContextInfo;
18
19/**
20 * Stores some capabilities of a GL context. Most are determined by the GL
21 * version and the extensions string. It also tracks formats that have passed
22 * the FBO completeness test.
23 */
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000024class GrGLCaps : public GrDrawTargetCaps {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000025public:
bsalomon@google.combcce8922013-03-25 15:38:39 +000026 SK_DECLARE_INST_COUNT(GrGLCaps)
27
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000028 typedef GrGLStencilBuffer::Format StencilFormat;
29
30 /**
31 * The type of MSAA for FBOs supported. Different extensions have different
32 * semantics of how / when a resolve is performed.
33 */
34 enum MSFBOType {
35 /**
36 * no support for MSAA FBOs
37 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +000038 kNone_MSFBOType = 0,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000039 /**
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +000040 * GL3.0-style MSAA FBO (GL_ARB_framebuffer_object).
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000041 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000042 kDesktop_ARB_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000043 /**
44 * earlier GL_EXT_framebuffer* extensions
45 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000046 kDesktop_EXT_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000047 /**
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +000048 * Similar to kDesktop_ARB but with additional restrictions on glBlitFramebuffer.
49 */
50 kES_3_0_MSFBOType,
51 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000052 * GL_APPLE_framebuffer_multisample ES extension
53 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000054 kES_Apple_MSFBOType,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000055 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +000056 * GL_IMG_multisampled_render_to_texture. This variation does not have MSAA renderbuffers.
57 * Instead the texture is multisampled when bound to the FBO and then resolved automatically
58 * when read. It also defines an alternate value for GL_MAX_SAMPLES (which we call
59 * GR_GL_MAX_SAMPLES_IMG).
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000060 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000061 kES_IMG_MsToTexture_MSFBOType,
62 /**
63 * GL_EXT_multisampled_render_to_texture. Same as the IMG one above but uses the standard
64 * GL_MAX_SAMPLES value.
65 */
66 kES_EXT_MsToTexture_MSFBOType,
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000067
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +000068 kLast_MSFBOType = kES_EXT_MsToTexture_MSFBOType
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000069 };
70
71 enum FBFetchType {
72 kNone_FBFetchType,
73 /** GL_EXT_shader_framebuffer_fetch */
74 kEXT_FBFetchType,
75 /** GL_NV_shader_framebuffer_fetch */
76 kNV_FBFetchType,
77
78 kLast_FBFetchType = kNV_FBFetchType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000079 };
80
81 /**
82 * Creates a GrGLCaps that advertises no support for any extensions,
83 * formats, etc. Call init to initialize from a GrGLContextInfo.
84 */
85 GrGLCaps();
86
87 GrGLCaps(const GrGLCaps& caps);
88
89 GrGLCaps& operator = (const GrGLCaps& caps);
90
91 /**
92 * Resets the caps such that nothing is supported.
93 */
bsalomon@google.combcce8922013-03-25 15:38:39 +000094 virtual void reset() SK_OVERRIDE;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000095
96 /**
97 * Initializes the GrGLCaps to the set of features supported in the current
98 * OpenGL context accessible via ctxInfo.
99 */
robertphillips@google.com6177e692013-02-28 20:16:25 +0000100 void init(const GrGLContextInfo& ctxInfo, const GrGLInterface* interface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000101
102 /**
103 * Call to note that a color config has been verified as a valid color
104 * attachment. This may save future calls to glCheckFramebufferStatus
105 * using isConfigVerifiedColorAttachment().
106 */
107 void markConfigAsValidColorAttachment(GrPixelConfig config) {
108 fVerifiedColorConfigs.markVerified(config);
109 }
110
111 /**
112 * Call to check whether a config has been verified as a valid color
113 * attachment.
114 */
115 bool isConfigVerifiedColorAttachment(GrPixelConfig config) const {
116 return fVerifiedColorConfigs.isVerified(config);
117 }
118
119 /**
120 * Call to note that a color config / stencil format pair passed
121 * FBO status check. We may skip calling glCheckFramebufferStatus for
122 * this combination in the future using
123 * isColorConfigAndStencilFormatVerified().
124 */
125 void markColorConfigAndStencilFormatAsVerified(
126 GrPixelConfig config,
127 const GrGLStencilBuffer::Format& format);
128
129 /**
130 * Call to check whether color config / stencil format pair has already
131 * passed FBO status check.
132 */
133 bool isColorConfigAndStencilFormatVerified(
134 GrPixelConfig config,
135 const GrGLStencilBuffer::Format& format) const;
136
137 /**
138 * Reports the type of MSAA FBO support.
139 */
140 MSFBOType msFBOType() const { return fMSFBOType; }
141
142 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +0000143 * Does the supported MSAA FBO extension have MSAA renderbuffers?
144 */
145 bool usesMSAARenderBuffers() const {
146 return kNone_MSFBOType != fMSFBOType &&
147 kES_IMG_MsToTexture_MSFBOType != fMSFBOType &&
148 kES_EXT_MsToTexture_MSFBOType != fMSFBOType;
149 }
150
151 /**
152 * Is the MSAA FBO extension one where the texture is multisampled when bound to an FBO and
153 * then implicitly resolved when read.
154 */
155 bool usesImplicitMSAAResolve() const {
156 return kES_IMG_MsToTexture_MSFBOType == fMSFBOType ||
157 kES_EXT_MsToTexture_MSFBOType == fMSFBOType;
158 }
159
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000160 FBFetchType fbFetchType() const { return fFBFetchType; }
161
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000162 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000163 * Prints the caps info using GrPrintf.
164 */
bsalomon@google.combcce8922013-03-25 15:38:39 +0000165 virtual void print() const SK_OVERRIDE;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000166
167 /**
168 * Gets an array of legal stencil formats. These formats are not guaranteed
169 * to be supported by the driver but are legal GLenum names given the GL
170 * version and extensions supported.
171 */
172 const SkTArray<StencilFormat, true>& stencilFormats() const {
173 return fStencilFormats;
174 }
175
176 /// The maximum number of fragment uniform vectors (GLES has min. 16).
177 int maxFragmentUniformVectors() const { return fMaxFragmentUniformVectors; }
178
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000179 /// maximum number of attribute values per vertex
bsalomon@google.com60da4172012-06-01 19:25:00 +0000180 int maxVertexAttributes() const { return fMaxVertexAttributes; }
181
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000182 /// maximum number of texture units accessible in the fragment shader.
183 int maxFragmentTextureUnits() const { return fMaxFragmentTextureUnits; }
184
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +0000185 /// maximum number of fixed-function texture coords, or zero if no fixed-function.
186 int maxFixedFunctionTextureCoords() const { return fMaxFixedFunctionTextureCoords; }
187
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000188 /// ES requires an extension to support RGBA8 in RenderBufferStorage
189 bool rgba8RenderbufferSupport() const { return fRGBA8RenderbufferSupport; }
190
191 /// Is GL_BGRA supported
192 bool bgraFormatSupport() const { return fBGRAFormatSupport; }
193
194 /**
195 * Depending on the ES extensions present the BGRA external format may
196 * correspond either a BGRA or RGBA internalFormat. On desktop GL it is
197 * RGBA.
198 */
199 bool bgraIsInternalFormat() const { return fBGRAIsInternalFormat; }
200
201 /// GL_ARB_texture_swizzle support
202 bool textureSwizzleSupport() const { return fTextureSwizzleSupport; }
203
204 /// Is there support for GL_UNPACK_ROW_LENGTH
205 bool unpackRowLengthSupport() const { return fUnpackRowLengthSupport; }
206
207 /// Is there support for GL_UNPACK_FLIP_Y
208 bool unpackFlipYSupport() const { return fUnpackFlipYSupport; }
209
210 /// Is there support for GL_PACK_ROW_LENGTH
211 bool packRowLengthSupport() const { return fPackRowLengthSupport; }
212
213 /// Is there support for GL_PACK_REVERSE_ROW_ORDER
214 bool packFlipYSupport() const { return fPackFlipYSupport; }
215
216 /// Is there support for texture parameter GL_TEXTURE_USAGE
217 bool textureUsageSupport() const { return fTextureUsageSupport; }
218
219 /// Is there support for glTexStorage
220 bool texStorageSupport() const { return fTexStorageSupport; }
221
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000222 /// Is there support for GL_RED and GL_R8
223 bool textureRedSupport() const { return fTextureRedSupport; }
224
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000225 /// Is GL_ARB_IMAGING supported
226 bool imagingSupport() const { return fImagingSupport; }
227
bsalomon@google.com706f6682012-10-23 14:53:55 +0000228 /// Is GL_ARB_fragment_coord_conventions supported?
229 bool fragCoordConventionsSupport() const { return fFragCoordsConventionSupport; }
230
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000231 /// Is there support for Vertex Array Objects?
232 bool vertexArrayObjectSupport() const { return fVertexArrayObjectSupport; }
233
234 /// Use indices or vertices in CPU arrays rather than VBOs for dynamic content.
bsalomon@google.com96966a52013-02-21 16:34:21 +0000235 bool useNonVBOVertexAndIndexDynamicData() const {
236 return fUseNonVBOVertexAndIndexDynamicData;
237 }
238
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000239 /// Does ReadPixels support the provided format/type combo?
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000240 bool readPixelsSupported(const GrGLInterface* intf,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000241 GrGLenum format,
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000242 GrGLenum type) const;
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000243
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000244 bool isCoreProfile() const { return fIsCoreProfile; }
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000245
commit-bot@chromium.org3628ad92013-08-30 19:43:47 +0000246 bool fixedFunctionSupport() const { return fFixedFunctionSupport; }
247
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000248 /// Is there support for discarding the frame buffer
249 bool discardFBSupport() const { return fDiscardFBSupport; }
250
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000251private:
252 /**
253 * Maintains a bit per GrPixelConfig. It is used to avoid redundantly
254 * performing glCheckFrameBufferStatus for the same config.
255 */
256 struct VerifiedColorConfigs {
257 VerifiedColorConfigs() {
258 this->reset();
259 }
260
261 void reset() {
262 for (int i = 0; i < kNumUints; ++i) {
263 fVerifiedColorConfigs[i] = 0;
264 }
265 }
266
bsalomon@google.comb8eb2e82013-03-28 13:46:42 +0000267 static const int kNumUints = (kGrPixelConfigCnt + 31) / 32;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000268 uint32_t fVerifiedColorConfigs[kNumUints];
269
270 void markVerified(GrPixelConfig config) {
271#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
272 return;
273#endif
274 int u32Idx = config / 32;
275 int bitIdx = config % 32;
276 fVerifiedColorConfigs[u32Idx] |= 1 << bitIdx;
277 }
278
279 bool isVerified(GrPixelConfig config) const {
280#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
281 return false;
282#endif
283 int u32Idx = config / 32;
284 int bitIdx = config % 32;
285 return SkToBool(fVerifiedColorConfigs[u32Idx] & (1 << bitIdx));
286 }
287 };
288
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000289 void initFSAASupport(const GrGLContextInfo&, const GrGLInterface*);
290 void initStencilFormats(const GrGLContextInfo&);
291 void initConfigRenderableTable(const GrGLContextInfo&);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000292
293 // tracks configs that have been verified to pass the FBO completeness when
294 // used as a color attachment
295 VerifiedColorConfigs fVerifiedColorConfigs;
296
297 SkTArray<StencilFormat, true> fStencilFormats;
298 // tracks configs that have been verified to pass the FBO completeness when
299 // used as a color attachment when a particular stencil format is used
300 // as a stencil attachment.
301 SkTArray<VerifiedColorConfigs, true> fStencilVerifiedColorConfigs;
302
303 int fMaxFragmentUniformVectors;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000304 int fMaxVertexAttributes;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000305 int fMaxFragmentTextureUnits;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +0000306 int fMaxFixedFunctionTextureCoords;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000307
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000308 MSFBOType fMSFBOType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000309
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000310 FBFetchType fFBFetchType;
311
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000312 bool fRGBA8RenderbufferSupport : 1;
313 bool fBGRAFormatSupport : 1;
314 bool fBGRAIsInternalFormat : 1;
315 bool fTextureSwizzleSupport : 1;
316 bool fUnpackRowLengthSupport : 1;
317 bool fUnpackFlipYSupport : 1;
318 bool fPackRowLengthSupport : 1;
319 bool fPackFlipYSupport : 1;
320 bool fTextureUsageSupport : 1;
321 bool fTexStorageSupport : 1;
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000322 bool fTextureRedSupport : 1;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000323 bool fImagingSupport : 1;
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000324 bool fTwoFormatLimit : 1;
bsalomon@google.com706f6682012-10-23 14:53:55 +0000325 bool fFragCoordsConventionSupport : 1;
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000326 bool fVertexArrayObjectSupport : 1;
bsalomon@google.com96966a52013-02-21 16:34:21 +0000327 bool fUseNonVBOVertexAndIndexDynamicData : 1;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000328 bool fIsCoreProfile : 1;
commit-bot@chromium.org3628ad92013-08-30 19:43:47 +0000329 bool fFixedFunctionSupport : 1;
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000330 bool fDiscardFBSupport : 1;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000331
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000332 typedef GrDrawTargetCaps INHERITED;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000333};
334
335#endif