blob: ac89115a7b148457520dc71b479987fd8ded8fdd [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"
bsalomon6df86402015-06-01 10:41:49 -070013#include "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:
bsalomon@google.combcce8922013-03-25 15:38:39 +000029 SK_DECLARE_INST_COUNT(GrGLCaps)
30
egdaniel8dc7c3a2015-04-16 11:22:42 -070031 typedef GrGLStencilAttachment::Format StencilFormat;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000032
33 /**
34 * The type of MSAA for FBOs supported. Different extensions have different
35 * semantics of how / when a resolve is performed.
36 */
37 enum MSFBOType {
38 /**
39 * no support for MSAA FBOs
40 */
rmistry@google.comfbfcd562012-08-23 18:09:54 +000041 kNone_MSFBOType = 0,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000042 /**
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +000043 * GL3.0-style MSAA FBO (GL_ARB_framebuffer_object).
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000044 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000045 kDesktop_ARB_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000046 /**
47 * earlier GL_EXT_framebuffer* extensions
48 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000049 kDesktop_EXT_MSFBOType,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000050 /**
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +000051 * Similar to kDesktop_ARB but with additional restrictions on glBlitFramebuffer.
52 */
53 kES_3_0_MSFBOType,
54 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000055 * GL_APPLE_framebuffer_multisample ES extension
56 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000057 kES_Apple_MSFBOType,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000058 /**
bsalomon@google.com347c3822013-05-01 20:10:01 +000059 * GL_IMG_multisampled_render_to_texture. This variation does not have MSAA renderbuffers.
60 * Instead the texture is multisampled when bound to the FBO and then resolved automatically
61 * when read. It also defines an alternate value for GL_MAX_SAMPLES (which we call
62 * GR_GL_MAX_SAMPLES_IMG).
bsalomon@google.comf3a60c02013-03-19 19:06:09 +000063 */
bsalomon@google.com347c3822013-05-01 20:10:01 +000064 kES_IMG_MsToTexture_MSFBOType,
65 /**
66 * GL_EXT_multisampled_render_to_texture. Same as the IMG one above but uses the standard
67 * GL_MAX_SAMPLES value.
68 */
69 kES_EXT_MsToTexture_MSFBOType,
vbuzinovdded6962015-06-12 08:59:45 -070070 /**
71 * GL_NV_framebuffer_mixed_samples.
72 */
73 kMixedSamples_MSFBOType,
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000074
vbuzinovdded6962015-06-12 08:59:45 -070075 kLast_MSFBOType = kMixedSamples_MSFBOType
bsalomon@google.com6b0cf022013-05-03 13:35:14 +000076 };
77
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000078 enum InvalidateFBType {
79 kNone_InvalidateFBType,
80 kDiscard_InvalidateFBType, //<! glDiscardFramebuffer()
81 kInvalidate_InvalidateFBType, //<! glInvalidateFramebuffer()
82
83 kLast_InvalidateFBType = kInvalidate_InvalidateFBType
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000084 };
85
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000086 enum MapBufferType {
87 kNone_MapBufferType,
88 kMapBuffer_MapBufferType, // glMapBuffer()
89 kMapBufferRange_MapBufferType, // glMapBufferRange()
90 kChromium_MapBufferType, // GL_CHROMIUM_map_sub
91
92 kLast_MapBufferType = kChromium_MapBufferType,
93 };
94
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000095 /**
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000096 * Initializes the GrGLCaps to the set of features supported in the current
97 * OpenGL context accessible via ctxInfo.
98 */
bsalomon682c2692015-05-22 14:01:46 -070099 GrGLCaps(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
100 const GrGLInterface* glInterface);
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,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700127 const GrGLStencilAttachment::Format& format);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000128
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,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700135 const GrGLStencilAttachment::Format& format) const;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000136
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 &&
vbuzinovdded6962015-06-12 08:59:45 -0700148 kES_EXT_MsToTexture_MSFBOType != fMSFBOType &&
149 kMixedSamples_MSFBOType != fMSFBOType;
bsalomon@google.com347c3822013-05-01 20:10:01 +0000150 }
151
152 /**
153 * Is the MSAA FBO extension one where the texture is multisampled when bound to an FBO and
154 * then implicitly resolved when read.
155 */
156 bool usesImplicitMSAAResolve() const {
157 return kES_IMG_MsToTexture_MSFBOType == fMSFBOType ||
158 kES_EXT_MsToTexture_MSFBOType == fMSFBOType;
159 }
160
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000161 InvalidateFBType invalidateFBType() const { return fInvalidateFBType; }
162
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000163 /// What type of buffer mapping is supported?
164 MapBufferType mapBufferType() const { return fMapBufferType; }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000165
166 /**
167 * Gets an array of legal stencil formats. These formats are not guaranteed
168 * to be supported by the driver but are legal GLenum names given the GL
169 * version and extensions supported.
170 */
171 const SkTArray<StencilFormat, true>& stencilFormats() const {
172 return fStencilFormats;
173 }
174
175 /// The maximum number of fragment uniform vectors (GLES has min. 16).
176 int maxFragmentUniformVectors() const { return fMaxFragmentUniformVectors; }
177
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000178 /// maximum number of attribute values per vertex
bsalomon@google.com60da4172012-06-01 19:25:00 +0000179 int maxVertexAttributes() const { return fMaxVertexAttributes; }
180
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000181 /// maximum number of texture units accessible in the fragment shader.
182 int maxFragmentTextureUnits() const { return fMaxFragmentTextureUnits; }
183
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000184 /// ES requires an extension to support RGBA8 in RenderBufferStorage
185 bool rgba8RenderbufferSupport() const { return fRGBA8RenderbufferSupport; }
186
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000187 /**
188 * Depending on the ES extensions present the BGRA external format may
189 * correspond either a BGRA or RGBA internalFormat. On desktop GL it is
190 * RGBA.
191 */
192 bool bgraIsInternalFormat() const { return fBGRAIsInternalFormat; }
193
194 /// GL_ARB_texture_swizzle support
195 bool textureSwizzleSupport() const { return fTextureSwizzleSupport; }
196
197 /// Is there support for GL_UNPACK_ROW_LENGTH
198 bool unpackRowLengthSupport() const { return fUnpackRowLengthSupport; }
199
200 /// Is there support for GL_UNPACK_FLIP_Y
201 bool unpackFlipYSupport() const { return fUnpackFlipYSupport; }
202
203 /// Is there support for GL_PACK_ROW_LENGTH
204 bool packRowLengthSupport() const { return fPackRowLengthSupport; }
205
206 /// Is there support for GL_PACK_REVERSE_ROW_ORDER
207 bool packFlipYSupport() const { return fPackFlipYSupport; }
208
209 /// Is there support for texture parameter GL_TEXTURE_USAGE
210 bool textureUsageSupport() const { return fTextureUsageSupport; }
211
212 /// Is there support for glTexStorage
213 bool texStorageSupport() const { return fTexStorageSupport; }
214
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000215 /// Is there support for GL_RED and GL_R8
216 bool textureRedSupport() const { return fTextureRedSupport; }
217
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000218 /// Is GL_ARB_IMAGING supported
219 bool imagingSupport() const { return fImagingSupport; }
220
bsalomon@google.com706f6682012-10-23 14:53:55 +0000221 /// Is GL_ARB_fragment_coord_conventions supported?
222 bool fragCoordConventionsSupport() const { return fFragCoordsConventionSupport; }
223
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000224 /// Is there support for Vertex Array Objects?
225 bool vertexArrayObjectSupport() const { return fVertexArrayObjectSupport; }
226
jvanverth3f801cb2014-12-16 09:49:38 -0800227 /// Is there support for ES2 compatability?
228 bool ES2CompatibilitySupport() const { return fES2CompatibilitySupport; }
229
cdalton0edea2c2015-05-21 08:27:44 -0700230 /// Can we call glDisable(GL_MULTISAMPLE)?
vbuzinovdded6962015-06-12 08:59:45 -0700231 bool multisampleDisableSupport() const {
232 return fMultisampleDisableSupport;
233 }
cdalton0edea2c2015-05-21 08:27:44 -0700234
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000235 /// Use indices or vertices in CPU arrays rather than VBOs for dynamic content.
bsalomon@google.com96966a52013-02-21 16:34:21 +0000236 bool useNonVBOVertexAndIndexDynamicData() const {
237 return fUseNonVBOVertexAndIndexDynamicData;
238 }
239
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000240 /// Does ReadPixels support the provided format/type combo?
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000241 bool readPixelsSupported(const GrGLInterface* intf,
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000242 GrGLenum format,
piotaixre4b23142014-10-02 10:57:53 -0700243 GrGLenum type,
244 GrGLenum currFboFormat) const;
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000245
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000246 bool isCoreProfile() const { return fIsCoreProfile; }
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000247
commit-bot@chromium.org3628ad92013-08-30 19:43:47 +0000248
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000249 bool fullClearIsFree() const { return fFullClearIsFree; }
250
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000251 /**
252 * Returns a string containing the caps info.
253 */
mtklein36352bf2015-03-25 18:17:31 -0700254 SkString dump() const override;
commit-bot@chromium.orgbeb8b3a2014-04-15 15:37:51 +0000255
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000256 /**
257 * LATC can appear under one of three possible names. In order to know
258 * which GL internal format to use, we need to keep track of which name
259 * we found LATC under. The default is LATC.
260 */
261 enum LATCAlias {
262 kLATC_LATCAlias,
263 kRGTC_LATCAlias,
264 k3DC_LATCAlias
265 };
266
267 LATCAlias latcAlias() const { return fLATCAlias; }
268
jvanverthe9c0fc62015-04-29 11:18:05 -0700269 GrGLSLCaps* glslCaps() const { return reinterpret_cast<GrGLSLCaps*>(fShaderCaps.get()); }
270
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000271private:
cdalton4cd67132015-06-10 19:23:46 -0700272 void init(const GrContextOptions&, const GrGLContextInfo&, const GrGLInterface*);
bsalomon424cc262015-05-22 10:37:30 -0700273
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000274 /**
275 * Maintains a bit per GrPixelConfig. It is used to avoid redundantly
276 * performing glCheckFrameBufferStatus for the same config.
277 */
278 struct VerifiedColorConfigs {
279 VerifiedColorConfigs() {
280 this->reset();
281 }
282
283 void reset() {
284 for (int i = 0; i < kNumUints; ++i) {
285 fVerifiedColorConfigs[i] = 0;
286 }
287 }
288
bsalomon@google.comb8eb2e82013-03-28 13:46:42 +0000289 static const int kNumUints = (kGrPixelConfigCnt + 31) / 32;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000290 uint32_t fVerifiedColorConfigs[kNumUints];
291
292 void markVerified(GrPixelConfig config) {
293#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
294 return;
295#endif
296 int u32Idx = config / 32;
297 int bitIdx = config % 32;
298 fVerifiedColorConfigs[u32Idx] |= 1 << bitIdx;
299 }
300
301 bool isVerified(GrPixelConfig config) const {
302#if !GR_GL_CHECK_FBO_STATUS_ONCE_PER_FORMAT
303 return false;
304#endif
305 int u32Idx = config / 32;
306 int bitIdx = config % 32;
307 return SkToBool(fVerifiedColorConfigs[u32Idx] & (1 << bitIdx));
308 }
309 };
310
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000311 void initFSAASupport(const GrGLContextInfo&, const GrGLInterface*);
cdalton1dd05422015-06-12 09:01:18 -0700312 void initBlendEqationSupport(const GrGLContextInfo&);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000313 void initStencilFormats(const GrGLContextInfo&);
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000314 // This must be called after initFSAASupport().
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000315 void initConfigRenderableTable(const GrGLContextInfo&);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000316 void initConfigTexturableTable(const GrGLContextInfo&, const GrGLInterface*);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +0000317
bsalomon17168df2014-12-09 09:00:49 -0800318 bool doReadPixelsSupported(const GrGLInterface* intf, GrGLenum format, GrGLenum type) const;
piotaixre4b23142014-10-02 10:57:53 -0700319
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000320 // tracks configs that have been verified to pass the FBO completeness when
321 // used as a color attachment
322 VerifiedColorConfigs fVerifiedColorConfigs;
323
324 SkTArray<StencilFormat, true> fStencilFormats;
325 // tracks configs that have been verified to pass the FBO completeness when
326 // used as a color attachment when a particular stencil format is used
327 // as a stencil attachment.
328 SkTArray<VerifiedColorConfigs, true> fStencilVerifiedColorConfigs;
329
330 int fMaxFragmentUniformVectors;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000331 int fMaxVertexAttributes;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000332 int fMaxFragmentTextureUnits;
bsalomon@google.com60da4172012-06-01 19:25:00 +0000333
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000334 MSFBOType fMSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000335 InvalidateFBType fInvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000336 MapBufferType fMapBufferType;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000337 LATCAlias fLATCAlias;
bsalomon@google.com6b0cf022013-05-03 13:35:14 +0000338
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000339 bool fRGBA8RenderbufferSupport : 1;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000340 bool fBGRAIsInternalFormat : 1;
341 bool fTextureSwizzleSupport : 1;
342 bool fUnpackRowLengthSupport : 1;
343 bool fUnpackFlipYSupport : 1;
344 bool fPackRowLengthSupport : 1;
345 bool fPackFlipYSupport : 1;
346 bool fTextureUsageSupport : 1;
347 bool fTexStorageSupport : 1;
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000348 bool fTextureRedSupport : 1;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000349 bool fImagingSupport : 1;
robertphillips@google.com1d89c932012-06-27 19:31:41 +0000350 bool fTwoFormatLimit : 1;
bsalomon@google.com706f6682012-10-23 14:53:55 +0000351 bool fFragCoordsConventionSupport : 1;
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000352 bool fVertexArrayObjectSupport : 1;
jvanverth3f801cb2014-12-16 09:49:38 -0800353 bool fES2CompatibilitySupport : 1;
cdalton0edea2c2015-05-21 08:27:44 -0700354 bool fMultisampleDisableSupport : 1;
bsalomon@google.com96966a52013-02-21 16:34:21 +0000355 bool fUseNonVBOVertexAndIndexDynamicData : 1;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000356 bool fIsCoreProfile : 1;
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000357 bool fFullClearIsFree : 1;
joshualitt58162332014-08-01 06:44:53 -0700358
mtklein2aa1f7e2015-02-20 12:35:32 -0800359 struct ReadPixelsSupportedFormat {
360 GrGLenum fFormat;
361 GrGLenum fType;
362 GrGLenum fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700363
mtklein2aa1f7e2015-02-20 12:35:32 -0800364 bool operator==(const ReadPixelsSupportedFormat& rhs) const {
365 return fFormat == rhs.fFormat
366 && fType == rhs.fType
367 && fFboFormat == rhs.fFboFormat;
piotaixre4b23142014-10-02 10:57:53 -0700368 }
piotaixre4b23142014-10-02 10:57:53 -0700369 };
mtklein02f46cf2015-03-20 13:48:42 -0700370 mutable SkTHashMap<ReadPixelsSupportedFormat, bool> fReadPixelsSupportedCache;
piotaixre4b23142014-10-02 10:57:53 -0700371
bsalomon4b91f762015-05-19 09:29:46 -0700372 typedef GrCaps INHERITED;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000373};
374
jvanverthe9c0fc62015-04-29 11:18:05 -0700375class GrGLSLCaps : public GrShaderCaps {
376public:
377 SK_DECLARE_INST_COUNT(GrGLSLCaps)
378
379 /**
cdalton8917d622015-05-06 13:40:21 -0700380 * Indicates how GLSL must interact with advanced blend equations. The KHR extension requires
381 * special layout qualifiers in the fragment shader.
382 */
383 enum AdvBlendEqInteraction {
384 kNotSupported_AdvBlendEqInteraction, //<! No _blend_equation_advanced extension
385 kAutomatic_AdvBlendEqInteraction, //<! No interaction required
386 kGeneralEnable_AdvBlendEqInteraction, //<! layout(blend_support_all_equations) out
387 kSpecificEnables_AdvBlendEqInteraction, //<! Specific layout qualifiers per equation
388
389 kLast_AdvBlendEqInteraction = kSpecificEnables_AdvBlendEqInteraction
390 };
391
392 /**
jvanverthe9c0fc62015-04-29 11:18:05 -0700393 * Initializes the GrGLSLCaps to the set of features supported in the current
394 * OpenGL context accessible via ctxInfo.
395 */
bsalomon4ee6bd82015-05-27 13:23:23 -0700396 GrGLSLCaps(const GrContextOptions&, const GrGLContextInfo&, const GrGLInterface*,
397 const GrGLCaps&);
jvanverthe9c0fc62015-04-29 11:18:05 -0700398
399 /**
400 * Some helper functions for encapsulating various extensions to read FB Buffer on openglES
401 *
402 * TODO(joshualitt) On desktop opengl 4.2+ we can achieve something similar to this effect
403 */
404 bool fbFetchSupport() const { return fFBFetchSupport; }
405
406 bool fbFetchNeedsCustomOutput() const { return fFBFetchNeedsCustomOutput; }
407
408 const char* fbFetchColorName() const { return fFBFetchColorName; }
409
410 const char* fbFetchExtensionString() const { return fFBFetchExtensionString; }
411
412 bool dropsTileOnZeroDivide() const { return fDropsTileOnZeroDivide; }
413
cdalton8917d622015-05-06 13:40:21 -0700414 AdvBlendEqInteraction advBlendEqInteraction() const { return fAdvBlendEqInteraction; }
415
416 bool mustEnableAdvBlendEqs() const {
417 return fAdvBlendEqInteraction >= kGeneralEnable_AdvBlendEqInteraction;
418 }
419
420 bool mustEnableSpecificAdvBlendEqs() const {
421 return fAdvBlendEqInteraction == kSpecificEnables_AdvBlendEqInteraction;
422 }
bsalomon6df86402015-06-01 10:41:49 -0700423
424 bool mustDeclareFragmentShaderOutput() const {
425 return fGLSLGeneration > k110_GrGLSLGeneration;
426 }
427
428 GrGLSLGeneration generation() const { return fGLSLGeneration; }
cdalton8917d622015-05-06 13:40:21 -0700429
jvanverthe9c0fc62015-04-29 11:18:05 -0700430 /**
431 * Returns a string containing the caps info.
432 */
433 SkString dump() const override;
434
435private:
436 // Must be called after fGeometryShaderSupport is initialized.
437 void initShaderPrecisionTable(const GrGLContextInfo&, const GrGLInterface*);
438
bsalomon6df86402015-06-01 10:41:49 -0700439 GrGLSLGeneration fGLSLGeneration;
440
jvanverthe9c0fc62015-04-29 11:18:05 -0700441 bool fDropsTileOnZeroDivide : 1;
442 bool fFBFetchSupport : 1;
443 bool fFBFetchNeedsCustomOutput : 1;
444
445 const char* fFBFetchColorName;
446 const char* fFBFetchExtensionString;
447
cdalton8917d622015-05-06 13:40:21 -0700448 AdvBlendEqInteraction fAdvBlendEqInteraction;
449
cdalton4cd67132015-06-10 19:23:46 -0700450 friend class GrGLCaps; // For initialization.
451
jvanverthe9c0fc62015-04-29 11:18:05 -0700452 typedef GrShaderCaps INHERITED;
453};
454
jvanverthcfc18862015-04-28 08:48:20 -0700455
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000456#endif