blob: 6b3e3a72dd2fc3157711d813e18517ecedfa6099 [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
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00008#include "GrGLCaps.h"
egdanielb7e7d572015-11-04 04:23:53 -08009#include "GrContextOptions.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000010#include "GrGLContext.h"
bsalomon1aa20292016-01-22 08:16:09 -080011#include "GrGLRenderTarget.h"
Brian Salomon467921e2017-03-06 16:17:12 -050012#include "GrGLTexture.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050013#include "GrShaderCaps.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000014#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000015#include "SkTSort.h"
Brian Salomon467921e2017-03-06 16:17:12 -050016#include "instanced/GLInstancedRendering.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000017
bsalomon682c2692015-05-22 14:01:46 -070018GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
19 const GrGLContextInfo& ctxInfo,
20 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080021 fStandard = ctxInfo.standard();
22
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000023 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000025 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000026 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080027 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000028 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fUnpackRowLengthSupport = false;
30 fUnpackFlipYSupport = false;
31 fPackRowLengthSupport = false;
32 fPackFlipYSupport = false;
33 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000034 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000035 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000036 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070037 fDirectStateAccessSupport = false;
38 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080039 fES2CompatibilitySupport = false;
csmartdalton4c18b622016-07-29 12:19:28 -070040 fDrawInstancedSupport = false;
cdalton06604b92016-02-05 10:09:51 -080041 fDrawIndirectSupport = false;
42 fMultiDrawIndirectSupport = false;
43 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000044 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070045 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080046 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080047 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070048 fRGBA8888PixelsOpsAreSlow = false;
49 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080050 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080051 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070052 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080053 fSRGBDecodeDisableSupport = false;
brianosman851c2382016-12-07 10:03:25 -080054 fSRGBDecodeDisableAffectsMipmaps = false;
piotaixre4b23142014-10-02 10:57:53 -070055
Brian Salomone5e7eb12016-10-14 16:18:33 -040056 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080057
Brian Salomon94efbf52016-11-29 13:43:05 -050058 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070059
cdalton4cd67132015-06-10 19:23:46 -070060 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000061}
62
cdalton4cd67132015-06-10 19:23:46 -070063void GrGLCaps::init(const GrContextOptions& contextOptions,
64 const GrGLContextInfo& ctxInfo,
65 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000066 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000067 GrGLVersion version = ctxInfo.version();
68
bsalomon@google.combcce8922013-03-25 15:38:39 +000069 /**************************************************************************
70 * Caps specific to GrGLCaps
71 **************************************************************************/
72
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000073 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000074 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
75 &fMaxFragmentUniformVectors);
76 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000077 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000078 GrGLint max;
79 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
80 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000081 if (version >= GR_GL_VER(3, 2)) {
82 GrGLint profileMask;
83 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
84 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
85 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000086 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000087 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000088
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000089 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000090 fUnpackRowLengthSupport = true;
91 fUnpackFlipYSupport = false;
92 fPackRowLengthSupport = true;
93 fPackFlipYSupport = false;
94 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000095 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
96 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000097 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000098 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
99 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000100 fPackFlipYSupport =
101 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
102 }
103
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000104 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000105 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
106
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000107 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700108 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
109 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
110 ctxInfo.hasExtension("GL_NV_texture_barrier");
111 } else {
112 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
113 }
114
cdaltoneb79eea2016-02-26 10:39:34 -0800115 if (kGL_GrGLStandard == standard) {
116 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
117 ctxInfo.hasExtension("GL_ARB_texture_multisample");
118 } else {
119 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
120 }
121
Brian Salomon0ee6f952017-01-19 15:52:24 -0500122 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800123 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500124 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800125 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000126 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
127 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800128 } else {
129 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
130 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000131 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000132 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000133 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000134 ctxInfo.hasExtension("GL_ARB_imaging");
135
egdaniel9250d242015-05-18 13:04:26 -0700136 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
137 // Thus we are blacklisting this extension for now on Adreno4xx devices.
138 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
139 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
140 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
141 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000142 fDiscardRenderTargetSupport = true;
143 fInvalidateFBType = kInvalidate_InvalidateFBType;
144 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
145 fDiscardRenderTargetSupport = true;
146 fInvalidateFBType = kDiscard_InvalidateFBType;
147 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000148
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000149 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
150 fFullClearIsFree = true;
151 }
152
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000153 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000154 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800155 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
156 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000157 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000158 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
159 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000160 }
161
cdalton626e1ff2015-06-12 13:56:46 -0700162 if (kGL_GrGLStandard == standard) {
163 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
164 } else {
165 fDirectStateAccessSupport = false;
166 }
167
168 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
169 fDebugSupport = true;
170 } else {
171 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
172 }
173
jvanverth3f801cb2014-12-16 09:49:38 -0800174 if (kGL_GrGLStandard == standard) {
175 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
176 }
177 else {
178 fES2CompatibilitySupport = true;
179 }
180
cdalton0edea2c2015-05-21 08:27:44 -0700181 if (kGL_GrGLStandard == standard) {
182 fMultisampleDisableSupport = true;
183 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700184 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700185 }
186
kkinnunend94708e2015-07-30 22:47:04 -0700187 if (kGL_GrGLStandard == standard) {
188 if (version >= GR_GL_VER(3, 0)) {
189 fBindFragDataLocationSupport = true;
190 }
191 } else {
192 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
193 fBindFragDataLocationSupport = true;
194 }
joshualittc1f56b52015-06-22 12:31:31 -0700195 }
196
joshualitt7bdd70a2015-10-01 06:28:11 -0700197 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
198
kkinnunene06ed252016-02-16 23:15:40 -0800199 if (kGL_GrGLStandard == standard) {
200 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
201 // We also require textureSize() support for rectangle 2D samplers which was added in
202 // GLSL 1.40.
203 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
204 fRectangleTextureSupport = true;
205 }
bsalomone179a912016-01-20 06:18:10 -0800206 }
kkinnunene06ed252016-02-16 23:15:40 -0800207 } else {
208 // Command buffer exposes this in GL ES context for Chromium reasons,
209 // but it should not be used. Also, at the time of writing command buffer
210 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800211 }
212
bsalomoncdee0092016-01-08 13:20:12 -0800213 if (kGL_GrGLStandard == standard) {
214 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
215 fTextureSwizzleSupport = true;
216 }
217 } else {
218 if (version >= GR_GL_VER(3,0)) {
219 fTextureSwizzleSupport = true;
220 }
221 }
222
cblume09bd2c02016-03-01 14:08:28 -0800223 if (kGL_GrGLStandard == standard) {
224 fMipMapLevelAndLodControlSupport = true;
225 } else if (kGLES_GrGLStandard == standard) {
226 if (version >= GR_GL_VER(3,0)) {
227 fMipMapLevelAndLodControlSupport = true;
228 }
229 }
230
bsalomon88c7b982015-07-31 11:20:16 -0700231#ifdef SK_BUILD_FOR_WIN
232 // We're assuming that on Windows Chromium we're using ANGLE.
233 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
234 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700235 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700236 fRGBA8888PixelsOpsAreSlow = isANGLE;
237 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
238 // check DX11 ANGLE.
239 fPartialFBOReadIsSlow = isANGLE;
240#endif
241
ericrkb4ecabd2016-03-11 15:18:20 -0800242 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
243 bool isMAC = false;
244#ifdef SK_BUILD_FOR_MAC
245 isMAC = true;
246#endif
247
248 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
249 // vis-versa.
250 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
251
cdalton4cd67132015-06-10 19:23:46 -0700252 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700253 * GrShaderCaps fields
254 **************************************************************************/
255
egdaniel0a482332015-10-26 08:59:10 -0700256 // This must be called after fCoreProfile is set on the GrGLCaps
257 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500258 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700259
csmartdalton008b9d82017-02-22 12:00:42 -0700260 if (!contextOptions.fSuppressPathRendering) {
261 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
262 }
egdaniel05ded892015-10-26 07:38:05 -0700263
264 // For now these two are equivalent but we could have dst read in shader via some other method.
265 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500266 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700267
268 // Enable supported shader-related caps
269 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500270 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700271 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
272 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500273 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700274 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500275 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700276 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500277 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800278 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700279 }
280 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500281 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700282
Brian Salomon1edc5b92016-11-29 13:43:46 -0500283 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700284 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800285
csmartdalton1d2aed02017-02-15 21:43:20 -0700286 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
287
Brian Salomon1edc5b92016-11-29 13:43:46 -0500288 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800289 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700290 }
291
cdalton9c3f1432016-03-11 10:07:37 -0800292 // Protect ourselves against tracking huge amounts of texture state.
293 static const uint8_t kMaxSaneSamplers = 32;
294 GrGLint maxSamplers;
295 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500296 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
297 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800298 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500299 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800300 }
301 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500302 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800303 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500304 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800305
Brian Salomonf26f7a02016-11-15 14:05:01 -0500306 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500307 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
308 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500309 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500310 shaderCaps->fImageLoadStoreSupport = true;
311 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500312 }
313 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500314 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500315 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500316 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500317 // Protect ourselves against tracking huge amounts of image state.
318 static constexpr int kMaxSaneImages = 4;
319 GrGLint maxUnits;
320 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500321 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500322 &shaderCaps->fMaxVertexImageStorages);
323 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500324 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500325 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500326 }
327 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500328 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500329 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500330 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500331 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500332 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
333 maxUnits), kMaxSaneImages);
334 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
335 shaderCaps->fMaxVertexImageStorages);
336 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
337 shaderCaps->fMaxGeometryImageStorages);
338 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
339 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500340 }
341
egdaniel05ded892015-10-26 07:38:05 -0700342 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700343 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000344 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700345
cdalton63f6c1f2015-11-06 07:09:43 -0800346 // We need dual source blending and the ability to disable multisample in order to support mixed
csmartdalton372953b2017-02-22 23:16:23 -0700347 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
348 // renderer is available and enabled; no other path renderers support this feature.
egdanieleed519e2016-01-15 11:36:18 -0800349 if (fMultisampleDisableSupport &&
Brian Salomon1edc5b92016-11-29 13:43:46 -0500350 shaderCaps->dualSourceBlendingSupport() &&
csmartdalton372953b2017-02-22 23:16:23 -0700351 fShaderCaps->pathRenderingSupport() &&
352 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
egdanieleed519e2016-01-15 11:36:18 -0800353 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800354 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800355 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800356 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
357 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800358 fDiscardRenderTargetSupport = false;
359 fInvalidateFBType = kNone_InvalidateFBType;
360 }
361 }
362
csmartdalton485a1202016-07-13 10:16:32 -0700363 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
364 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
365 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
366 // limit this decision to specific GPU families rather than basing it on the vendor alone.
367 if (!GR_GL_MUST_USE_VBO &&
368 !fIsCoreProfile &&
369 (kARM_GrGLVendor == ctxInfo.vendor() ||
370 kImagination_GrGLVendor == ctxInfo.vendor() ||
371 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
372 fPreferClientSideDynamicBuffers = true;
373 }
374
egdanieleed519e2016-01-15 11:36:18 -0800375 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700376 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700377 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700378 this->initStencilFormats(ctxInfo);
379
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000380 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000381 // we could also look for GL_ATI_separate_stencil extension or
382 // GL_EXT_stencil_two_side but they use different function signatures
383 // than GL2.0+ (and than each other).
384 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
385 // supported on GL 1.4 and higher or by extension
386 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
387 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
388 } else {
389 // ES 2 has two sided stencil and stencil wrap
390 fTwoSidedStencilSupport = true;
391 fStencilWrapOpsSupport = true;
392 }
393
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000394 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000395 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
396 // extension includes glMapBuffer.
397 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
398 fMapBufferFlags |= kSubset_MapFlag;
399 fMapBufferType = kMapBufferRange_MapBufferType;
400 } else {
401 fMapBufferType = kMapBuffer_MapBufferType;
402 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000403 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000404 // Unextended GLES2 doesn't have any buffer mapping.
405 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800406 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800407 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
408 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800409 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
410 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
411 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000412 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
413 fMapBufferFlags = kCanMap_MapFlag;
414 fMapBufferType = kMapBuffer_MapBufferType;
415 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000416 }
417
jvanverthd7a2c1f2015-12-07 07:36:44 -0800418 if (kGL_GrGLStandard == standard) {
419 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
420 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700421 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800422 } else {
423 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
424 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700425 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
426 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800427 }
428 }
429
joshualitte5b74c62015-06-01 14:17:47 -0700430 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
431 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700432 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700433#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500434 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
435 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
436 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700437 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700438#else
cdalton397536c2016-03-25 12:15:03 -0700439 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700440#endif
joshualitte5b74c62015-06-01 14:17:47 -0700441 }
442
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000443 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000444 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
445 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
446 fNPOTTextureTileSupport = true;
447 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000448 } else {
449 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000450 // ES3 has no limitations.
451 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
452 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000453 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
454 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
455 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
456 // to alllow arbitrary wrap modes, however.
457 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000458 }
459
bsalomone72bd022015-10-26 07:33:03 -0700460 // Using MIPs on this GPU seems to be a source of trouble.
461 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
462 fMipMapSupport = false;
463 }
464
bsalomon@google.combcce8922013-03-25 15:38:39 +0000465 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
466 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
467 // Our render targets are always created with textures as the color
468 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000469 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000470
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000471 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
472
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000473 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700474 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000475
robertphillips1b8e1b52015-06-24 06:54:10 -0700476#if 0
477 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
478 kQualcomm_GrGLVendor != ctxInfo.vendor();
479#endif
480
egdaniel05ded892015-10-26 07:38:05 -0700481 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000482 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800483 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000484 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800485 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000486 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800487 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
488 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
489 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
490 // This is to guard against platforms that may not support as many samples for
491 // glRasterSamples as they do for framebuffers.
492 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
493 }
494 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000495
csmartdalton9bc11872016-08-09 12:42:47 -0700496 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
497 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700498 }
499
bsalomon63b21962014-11-05 07:05:34 -0800500 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800501 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400502 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
503 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800504 fUseDrawInsteadOfClear = true;
505 }
506
joshualitt83bc2292015-06-18 14:18:02 -0700507 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
508 fUseDrawInsteadOfPartialRenderTargetWrite = true;
509 }
510
bsalomonbabafcc2016-02-16 11:36:47 -0800511 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
512 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
513 fUseDrawInsteadOfPartialRenderTargetWrite = true;
514 fUseDrawInsteadOfAllRenderTargetWrites = true;
515 }
516
robertphillips63926682015-08-20 09:39:02 -0700517#ifdef SK_BUILD_FOR_WIN
518 // On ANGLE deferring flushes can lead to GPU starvation
519 fPreferVRAMUseOverFlushes = !isANGLE;
520#endif
521
bsalomon7dea7b72015-08-19 08:26:51 -0700522 if (kChromium_GrGLDriver == ctxInfo.driver()) {
523 fMustClearUploadedBufferData = true;
524 }
525
bsalomond08ea5f2015-02-20 06:58:13 -0800526 if (kGL_GrGLStandard == standard) {
527 // ARB allows mixed size FBO attachments, EXT does not.
528 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
529 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
530 fOversizedStencilSupport = true;
531 } else {
532 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
533 }
534 } else {
535 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
536 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
537 }
538
joshualitt58001552015-06-26 12:46:36 -0700539 if (kGL_GrGLStandard == standard) {
540 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
541 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700542 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700543 version >= GR_GL_VER(3, 2) ||
544 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
545 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
546 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700547 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700548 version >= GR_GL_VER(3, 0) ||
549 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
550 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
551 }
552
cdalton06604b92016-02-05 10:09:51 -0800553 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700554 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
555 ctxInfo.hasExtension("GL_ARB_draw_indirect");
556 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
557 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700558 (fDrawIndirectSupport &&
559 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700560 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700561 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800562 } else {
563 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700564 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
565 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
566 fBaseInstanceSupport = fDrawIndirectSupport &&
567 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700568 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800569 }
570
Brian Salomon1edc5b92016-11-29 13:43:46 -0500571 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800572
573 if (contextOptions.fUseShaderSwizzling) {
574 fTextureSwizzleSupport = false;
575 }
576
ethannicholas28ef4452016-03-25 09:26:03 -0700577 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700578 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
579 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700580 fSampleShadingSupport = true;
581 }
582 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
583 fSampleShadingSupport = true;
584 }
585
jvanverth84741b32016-09-30 08:39:02 -0700586 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
587 if (kGL_GrGLStandard == standard) {
588 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
589 fFenceSyncSupport = true;
590 }
591 } else if (version >= GR_GL_VER(3, 0)) {
592 fFenceSyncSupport = true;
593 }
594
Brian Osman2c2bc112017-02-28 10:02:49 -0500595 // Safely moving textures between contexts requires fences. The Windows Intel driver has a
596 // bug with deleting and reusing texture IDs across contexts, so disallow this feature.
597 fCrossContextTextureSupport = fFenceSyncSupport;
598#ifdef SK_BUILD_FOR_WIN
599 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
600 fCrossContextTextureSupport = false;
601 }
602#endif
603
brianosman131ff132016-06-07 14:22:44 -0700604 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
605 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
606 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
607 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700608 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700609 (contextOptions.fDoManualMipmapping ||
610 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700611 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
612 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700613 fDoManualMipmapping = true;
614 }
615
brianosman20471892016-12-02 06:43:32 -0800616 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800617 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
618 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800619
bsalomoncdee0092016-01-08 13:20:12 -0800620 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
621 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800622 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700623
624 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500625 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000626}
627
egdaniel472d44e2015-10-22 08:20:00 -0700628const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
629 bool isCoreProfile) {
630 switch (generation) {
631 case k110_GrGLSLGeneration:
632 if (kGLES_GrGLStandard == standard) {
633 // ES2s shader language is based on version 1.20 but is version
634 // 1.00 of the ES language.
635 return "#version 100\n";
636 } else {
637 SkASSERT(kGL_GrGLStandard == standard);
638 return "#version 110\n";
639 }
640 case k130_GrGLSLGeneration:
641 SkASSERT(kGL_GrGLStandard == standard);
642 return "#version 130\n";
643 case k140_GrGLSLGeneration:
644 SkASSERT(kGL_GrGLStandard == standard);
645 return "#version 140\n";
646 case k150_GrGLSLGeneration:
647 SkASSERT(kGL_GrGLStandard == standard);
648 if (isCoreProfile) {
649 return "#version 150\n";
650 } else {
651 return "#version 150 compatibility\n";
652 }
653 case k330_GrGLSLGeneration:
654 if (kGLES_GrGLStandard == standard) {
655 return "#version 300 es\n";
656 } else {
657 SkASSERT(kGL_GrGLStandard == standard);
658 if (isCoreProfile) {
659 return "#version 330\n";
660 } else {
661 return "#version 330 compatibility\n";
662 }
663 }
cdalton33ad7012016-02-22 07:55:44 -0800664 case k400_GrGLSLGeneration:
665 SkASSERT(kGL_GrGLStandard == standard);
666 if (isCoreProfile) {
667 return "#version 400\n";
668 } else {
669 return "#version 400 compatibility\n";
670 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500671 case k420_GrGLSLGeneration:
672 SkASSERT(kGL_GrGLStandard == standard);
673 if (isCoreProfile) {
674 return "#version 420\n";
675 }
676 else {
677 return "#version 420 compatibility\n";
678 }
egdaniel472d44e2015-10-22 08:20:00 -0700679 case k310es_GrGLSLGeneration:
680 SkASSERT(kGLES_GrGLStandard == standard);
681 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800682 case k320es_GrGLSLGeneration:
683 SkASSERT(kGLES_GrGLStandard == standard);
684 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700685 }
686 return "<no version>";
687}
688
egdaniel05ded892015-10-26 07:38:05 -0700689void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700690 GrGLStandard standard = ctxInfo.standard();
691 GrGLVersion version = ctxInfo.version();
692
693 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500694 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700695 **************************************************************************/
696
Brian Salomon1edc5b92016-11-29 13:43:46 -0500697 GrShaderCaps* shaderCaps = fShaderCaps.get();
698 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700699 if (kGLES_GrGLStandard == standard) {
700 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500701 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
702 shaderCaps->fFBFetchSupport = true;
703 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
704 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700705 }
706 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
707 // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know
Brian Salomon1edc5b92016-11-29 13:43:46 -0500708 shaderCaps->fFBFetchNeedsCustomOutput = false;
709 shaderCaps->fFBFetchSupport = true;
710 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
711 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700712 }
713 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
714 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500715 shaderCaps->fFBFetchNeedsCustomOutput = false;
716 shaderCaps->fFBFetchSupport = true;
717 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
718 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700719 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500720 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700721 }
722
egdaniel7517e452016-09-20 13:00:26 -0700723 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
724 // Galaxy S7.
725 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
726 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500727 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700728 }
729
Brian Salomon1edc5b92016-11-29 13:43:46 -0500730 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700731
cdaltonc08f1962016-02-12 12:14:06 -0800732 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500733 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800734 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500735 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800736 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
737 }
738
739 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500740 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800741 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
742 } else {
743 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500744 shaderCaps->fNoPerspectiveInterpolationSupport = true;
745 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800746 "GL_NV_shader_noperspective_interpolation";
747 }
748 }
749
cdalton33ad7012016-02-22 07:55:44 -0800750 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500751 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800752 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
753 } else {
754 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500755 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800756 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500757 shaderCaps->fMultisampleInterpolationSupport = true;
758 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800759 "GL_OES_shader_multisample_interpolation";
760 }
761 }
762
763 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500764 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800765 } else {
766 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500767 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800768 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500769 shaderCaps->fSampleVariablesSupport = true;
770 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800771 }
772 }
773
Brian Salomon1edc5b92016-11-29 13:43:46 -0500774 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700775 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
776 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500777 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700778 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
779 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800780 }
781
egdaniel472d44e2015-10-22 08:20:00 -0700782 // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader
Brian Salomon1edc5b92016-11-29 13:43:46 -0500783 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700784
785 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
786 // function that may require a gradient calculation inside a conditional block may return
787 // undefined results". This appears to be an issue with the 'any' call since even the simple
788 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
789 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500790 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700791
Brian Salomon1edc5b92016-11-29 13:43:46 -0500792 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
793 shaderCaps->fGLSLGeneration,
794 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800795
Brian Salomon1edc5b92016-11-29 13:43:46 -0500796 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
797 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800798 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800799
800 // Frag Coords Convention support is not part of ES
801 // Known issue on at least some Intel platforms:
802 // http://code.google.com/p/skia/issues/detail?id=946
803 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
804 kGLES_GrGLStandard != standard &&
805 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
806 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500807 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800808 }
809
810 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500811 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800812 }
813
cdalton9c3f1432016-03-11 10:07:37 -0800814 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
815 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500816 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800817 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
818 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
819 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500820 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800821 }
822 }
823
Brian Salomon1edc5b92016-11-29 13:43:46 -0500824 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800825 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500826 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800827 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500828 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800829 }
830 }
831
cdaltonc04ce672016-03-11 14:07:38 -0800832 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500833 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800834 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500835 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700836 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
837 }
838
Brian Salomon1edc5b92016-11-29 13:43:46 -0500839 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700840 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500841 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700842 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
843 } else {
844 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
845 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500846 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700847 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500848 shaderCaps->fTexelBufferSupport = true;
849 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700850 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500851 shaderCaps->fTexelBufferSupport = true;
852 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700853 }
cdaltonc04ce672016-03-11 14:07:38 -0800854 }
855 }
856
egdaniel8dcdedc2015-11-11 06:27:20 -0800857 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
858 // the abs first in a separate expression.
859 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500860 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800861 }
862
bsalomon7ea33f52015-11-22 14:51:00 -0800863 // On Intel GPU there is an issue where it reads the second argument to atan "- %s.x" as an int
egdaniel8dcdedc2015-11-11 06:27:20 -0800864 // thus must us -1.0 * %s.x to work correctly
865 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500866 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800867 }
egdaniel138c2632016-08-17 10:59:00 -0700868
869 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
870 // the original dst color when reading the outColor even after being written to. By using a
871 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500872 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
873 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700874 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700875
876#ifdef SK_BUILD_FOR_MAC
877 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
878 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
879 // term plan for this WAR is for it to eventually be baked into SkSL.
880 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
881#endif
egdaniel472d44e2015-10-22 08:20:00 -0700882}
883
kkinnunencfe62e32015-07-01 02:58:50 -0700884bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700885 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
886
887 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700888 return false;
889 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700890
kkinnunencfe62e32015-07-01 02:58:50 -0700891 if (kGL_GrGLStandard == ctxInfo.standard()) {
892 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
893 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
894 return false;
895 }
896 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700897 if (!hasChromiumPathRendering &&
898 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700899 return false;
900 }
901 }
902 // We only support v1.3+ of GL_NV_path_rendering which allows us to
903 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
904 // additions are detected by checking the existence of the function.
905 // We also use *Then* functions that not all drivers might have. Check
906 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800907 if (!gli->fFunctions.fStencilThenCoverFillPath ||
908 !gli->fFunctions.fStencilThenCoverStrokePath ||
909 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
910 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
911 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700912 return false;
913 }
914 return true;
915}
bsalomon1aa20292016-01-22 08:16:09 -0800916
Brian Salomon71d9d842016-11-03 13:42:00 -0400917bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800918 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800919 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800920 std::function<bool ()> bindRenderTarget,
921 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400922 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800923 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400924 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800925 return false;
926 }
bsalomon7928ef62016-01-05 10:26:39 -0800927
Brian Salomonbf7b6202016-11-11 16:08:03 -0500928 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
929 return false;
930 }
931
bsalomon76148af2016-01-12 11:13:47 -0800932 GrGLenum readFormat;
933 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400934 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800935 return false;
936 }
937
bsalomon1aa20292016-01-22 08:16:09 -0800938 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800939 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
940 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
941 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
942 // GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA. We check for the subset that we would use.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500943 // The manual does not seem to fully match the spec as the spec allows integer formats
944 // when the bound color buffer is an integer buffer. It doesn't specify which integer
945 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500946 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
947 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
948 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800949 return false;
950 }
951 // There is also a set of allowed types, but all the types we use are in the set:
952 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
953 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
954 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
955 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
956 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
957 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
958 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800959 return true;
piotaixre4b23142014-10-02 10:57:53 -0700960 }
bsalomon7928ef62016-01-05 10:26:39 -0800961
bsalomon76148af2016-01-12 11:13:47 -0800962 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500963 switch (fConfigTable[surfaceConfig].fFormatType) {
964 case kNormalizedFixedPoint_FormatType:
965 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
966 return true;
967 }
968 break;
969 case kInteger_FormatType:
970 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
971 return true;
972 }
973 break;
974 case kFloat_FormatType:
975 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
976 return true;
977 }
978 break;
bsalomon7928ef62016-01-05 10:26:39 -0800979 }
980
Brian Salomon71d9d842016-11-03 13:42:00 -0400981 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800982 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400983 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800984 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800985 if (!bindRenderTarget()) {
986 return false;
987 }
988 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
989 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800990 rpFormat->fFormat = format;
991 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800992 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800993 }
994
Brian Salomon71d9d842016-11-03 13:42:00 -0400995 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
996 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700997}
998
robertphillips@google.com6177e692013-02-28 20:16:25 +0000999void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001000 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001001 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1002 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1003 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1004 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1005 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1006 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001007 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001008 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001009 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -04001010 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1011 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001012 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001013 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1014 fMSFBOType = kES_Apple_MSFBOType;
1015 }
bsalomon083617b2016-02-12 12:10:14 -08001016
1017 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1018 // is available.
1019 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001020 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001021 kNoMSAADst_BlitFramebufferFlag |
Brian Salomone5e7eb12016-10-14 16:18:33 -04001022 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001023 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1024 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001025 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1026 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001027 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1028 kResolveMustBeFull_BlitFrambufferFlag |
1029 kNoMSAADst_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001030 kNoFormatConversion_BlitFramebufferFlag |
1031 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001032 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001033 } else {
egdanieleed519e2016-01-15 11:36:18 -08001034 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001035 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001036 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001037 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1038 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1039 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001040 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001041 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1042 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001043 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001044 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001045 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001046 }
1047}
1048
cdalton1dd05422015-06-12 09:01:18 -07001049void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001050 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001051
1052 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1053 // for now until its own blacklists can be updated.
1054 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001055 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001056 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001057 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001058 return;
1059 }
1060
1061 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1062 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001063 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001064 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1065 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001066 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001067 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1068 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1069 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1070 return;
1071 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1072 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001073 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001074 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1075 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001076 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001077 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1078 // slow on a particular platform.
1079 } else {
1080 return; // No advanced blend support.
1081 }
1082
1083 SkASSERT(this->advancedBlendEquationSupport());
1084
csmartdalton3b88a032016-08-04 14:43:49 -07001085 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1086 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1087 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001088 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1089 (1 << kColorBurn_GrBlendEquation);
1090 }
joel.liang9764c402015-07-09 19:46:18 -07001091 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1092 // Blacklist color-burn on ARM until the fix is released.
1093 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1094 }
cdalton1dd05422015-06-12 09:01:18 -07001095}
1096
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001097namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001098const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001099}
1100
1101void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1102
1103 // Build up list of legal stencil formats (though perhaps not supported on
1104 // the particular gpu/driver) from most preferred to least.
1105
1106 // these consts are in order of most preferred to least preferred
1107 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1108
1109 static const StencilFormat
1110 // internal Format stencil bits total bits packed?
1111 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1112 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1113 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1114 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001115 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001116 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1117
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001118 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001119 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001120 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001121 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1122 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1123
1124 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1125 // require FBO support we can expect these are legal formats and don't
1126 // check. These also all support the unsized GL_STENCIL_INDEX.
1127 fStencilFormats.push_back() = gS8;
1128 fStencilFormats.push_back() = gS16;
1129 if (supportsPackedDS) {
1130 fStencilFormats.push_back() = gD24S8;
1131 }
1132 fStencilFormats.push_back() = gS4;
1133 if (supportsPackedDS) {
1134 fStencilFormats.push_back() = gDS;
1135 }
1136 } else {
1137 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1138 // for other formats.
1139 // ES doesn't support using the unsized format.
1140
1141 fStencilFormats.push_back() = gS8;
1142 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001143 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1144 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001145 fStencilFormats.push_back() = gD24S8;
1146 }
1147 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1148 fStencilFormats.push_back() = gS4;
1149 }
1150 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001151}
1152
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001153SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001154
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001155 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001156
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001157 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001158 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001159 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001160 i,
1161 fStencilFormats[i].fStencilBits,
1162 fStencilFormats[i].fTotalBits);
1163 }
1164
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001165 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001166 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001167 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001168 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001169 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001170 "IMG MS To Texture",
1171 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001172 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001173 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001174 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001175 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1176 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1177 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1178 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1179 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1180 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001181 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001182
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001183 static const char* kInvalidateFBTypeStr[] = {
1184 "None",
1185 "Discard",
1186 "Invalidate",
1187 };
1188 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1189 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1190 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1191 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001192
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001193 static const char* kMapBufferTypeStr[] = {
1194 "None",
1195 "MapBuffer",
1196 "MapBufferRange",
1197 "Chromium",
1198 };
1199 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1200 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1201 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1202 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1203 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1204
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001205 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001206 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001207 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001208 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001209 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001210 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1211 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1212 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1213 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001214
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001215 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001216 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1217 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001218 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001219 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1220 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001221 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001222 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1223 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1224 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001225 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1226 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001227 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001228 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001229 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001230 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001231 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001232
1233 r.append("Configs\n-------\n");
1234 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1235 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001236 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1237 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001238 i,
1239 fConfigTable[i].fFlags,
1240 fConfigTable[i].fFormats.fBaseInternalFormat,
1241 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001242 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1243 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001244 fConfigTable[i].fFormats.fExternalType,
1245 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001246 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001247 }
1248
jvanverthe9c0fc62015-04-29 11:18:05 -07001249 return r;
1250}
1251
jvanverthe9c0fc62015-04-29 11:18:05 -07001252static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1253 switch (p) {
1254 case kLow_GrSLPrecision:
1255 return GR_GL_LOW_FLOAT;
1256 case kMedium_GrSLPrecision:
1257 return GR_GL_MEDIUM_FLOAT;
1258 case kHigh_GrSLPrecision:
1259 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001260 default:
1261 SkFAIL("Unexpected precision type.");
1262 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001263 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001264}
1265
1266static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1267 switch (type) {
1268 case kVertex_GrShaderType:
1269 return GR_GL_VERTEX_SHADER;
1270 case kGeometry_GrShaderType:
1271 return GR_GL_GEOMETRY_SHADER;
1272 case kFragment_GrShaderType:
1273 return GR_GL_FRAGMENT_SHADER;
1274 }
1275 SkFAIL("Unknown shader type.");
1276 return -1;
1277}
1278
jvanverthcba99b82015-06-24 06:59:57 -07001279void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001280 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001281 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001282 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1283 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1284 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1285 if (kGeometry_GrShaderType != s) {
1286 GrShaderType shaderType = static_cast<GrShaderType>(s);
1287 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001288 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001289 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001290 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1291 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1292 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1293 GrGLint range[2];
1294 GrGLint bits;
1295 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1296 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001297 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1298 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1299 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001300 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001301 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001302 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001303 else if (!shaderCaps->fShaderPrecisionVaries) {
1304 shaderCaps->fShaderPrecisionVaries =
1305 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001306 }
1307 }
1308 }
1309 }
1310 }
1311 }
1312 else {
1313 // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001314 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001315 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1316 if (kGeometry_GrShaderType != s) {
1317 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001318 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1319 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1320 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001321 }
1322 }
1323 }
1324 }
1325 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1326 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1327 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1328 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001329 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001330 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001331 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1332 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001333 }
1334 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001335 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001336}
1337
bsalomon41e4384e2016-01-08 09:12:44 -08001338bool GrGLCaps::bgraIsInternalFormat() const {
1339 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1340}
1341
bsalomon76148af2016-01-12 11:13:47 -08001342bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1343 GrGLenum* internalFormat, GrGLenum* externalFormat,
1344 GrGLenum* externalType) const {
1345 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1346 externalFormat, externalType)) {
1347 return false;
1348 }
1349 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1350 return true;
1351}
1352
1353bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1354 GrGLenum* internalFormat) const {
1355 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1356 return false;
1357 }
1358 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1359 return true;
1360}
1361
1362bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1363 GrGLenum* externalFormat, GrGLenum* externalType) const {
1364 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1365 externalFormat, externalType)) {
1366 return false;
1367 }
1368 return true;
1369}
1370
1371bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1372 if (GrPixelConfigIsCompressed(config)) {
1373 return false;
1374 }
1375 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1376 return true;
1377}
1378
1379bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1380 ExternalFormatUsage usage, GrGLenum* externalFormat,
1381 GrGLenum* externalType) const {
1382 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001383 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001384 return false;
1385 }
1386
1387 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1388 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1389
1390 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1391 // made to work in many cases using glPixelStore and what not but is not needed currently.
1392 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1393 return false;
1394 }
1395
1396 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1397 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1398
bsalomone9573312016-01-25 14:33:25 -08001399 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1400 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1401 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1402 // texture, not the red component.
1403 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1404 if (this->textureRedSupport()) {
1405 SkASSERT(GR_GL_RED == *externalFormat);
1406 *externalFormat = GR_GL_ALPHA;
1407 }
1408 }
1409
bsalomon76148af2016-01-12 11:13:47 -08001410 return true;
1411}
1412
brianosman20471892016-12-02 06:43:32 -08001413void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1414 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001415 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001416 /*
1417 Comments on renderability of configs on various GL versions.
1418 OpenGL < 3.0:
1419 no built in support for render targets.
1420 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1421 format RGB, RGBA and NV float formats we don't use.
1422 This is the following:
1423 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1424 RGB10_A2, RGBA12,RGBA16
1425 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1426 since they aren't required by later standards and the driver can simply return
1427 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1428 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1429 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1430 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1431 This adds a lot of additional renderable sized formats, including ALPHA8.
1432 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1433 16F, 32I, 32UI, and 32F variants).
1434 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1435
1436 For both the above extensions we limit ourselves to those that are also required by
1437 OpenGL 3.0.
1438
1439 OpenGL 3.0:
1440 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1441 but are not required to be supported as renderable textures/renderbuffer.
1442 Required renderable color formats:
1443 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1444 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1445 RGB10_A2.
1446 - R11F_G11F_B10F.
1447 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1448 and RG8UI.
1449 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1450 - ALPHA8
1451
1452 OpenGL 3.1, 3.2, 3.3
1453 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1454 OpengGL 3.3, 4.0, 4.1
1455 Adds RGB10_A2UI.
1456 OpengGL 4.2
1457 Adds
1458 - RGB5_A1, RGBA4
1459 - RGB565
1460 OpenGL 4.4
1461 Does away with the separate list and adds a column to the sized internal color format
1462 table. However, no new formats become required color renderable.
1463
1464 ES 2.0
1465 color renderable: RGBA4, RGB5_A1, RGB565
1466 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1467 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1468 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1469 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1470 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1471 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1472
1473 ES 3.0
1474 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1475 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1476 RGB5_A1.
1477 - RGB8 and RGB565.
1478 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1479 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1480 ES 3.1
1481 Adds RGB10_A2, RGB10_A2UI,
1482 ES 3.2
1483 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1484 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001485 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1486 ConfigInfo::kFBOColorAttachment_Flag;
1487 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001488 if (kNone_MSFBOType != fMSFBOType) {
1489 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1490 }
bsalomon41e4384e2016-01-08 09:12:44 -08001491 GrGLStandard standard = ctxInfo.standard();
1492 GrGLVersion version = ctxInfo.version();
1493
cblume790d5132016-02-29 11:13:29 -08001494 bool texStorageSupported = false;
1495 if (kGL_GrGLStandard == standard) {
1496 // The EXT version can apply to either GL or GLES.
1497 texStorageSupported = version >= GR_GL_VER(4,2) ||
1498 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1499 ctxInfo.hasExtension("GL_EXT_texture_storage");
1500 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001501 texStorageSupported = version >= GR_GL_VER(3,0) ||
1502 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001503 }
1504
1505 // TODO: remove after command buffer supports full ES 3.0
1506 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1507 kChromium_GrGLDriver == ctxInfo.driver()) {
1508 texStorageSupported = false;
1509 }
1510
cdalton74b8d322016-04-11 14:47:28 -07001511 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1512
bsalomon30447372015-12-21 09:03:05 -08001513 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1514 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001515 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001516 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001517 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001518 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001519
1520 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1521 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001522 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1523 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001524 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001525 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001526 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1527 if (kGL_GrGLStandard == standard) {
1528 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1529 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001530 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001531 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1532 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1533 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1534 }
egdaniel4999df82016-01-07 17:06:04 -08001535 }
cblume790d5132016-02-29 11:13:29 -08001536 if (texStorageSupported) {
1537 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1538 }
cdalton74b8d322016-04-11 14:47:28 -07001539 if (texelBufferSupport) {
1540 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1541 }
bsalomoncdee0092016-01-08 13:20:12 -08001542 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001543
bsalomon76148af2016-01-12 11:13:47 -08001544 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1545 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001546 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001547 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001548 if (kGL_GrGLStandard == standard) {
1549 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1550 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1551 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1552 // Since the internal format is RGBA8, it is also renderable.
1553 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1554 allRenderFlags;
1555 }
1556 } else {
1557 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1558 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1559 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1560 // The APPLE extension doesn't make this renderable.
1561 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1562 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1563 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1564 // Though, that seems to not be the case if the texture storage extension is
1565 // present. The specs don't exactly make that clear.
1566 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1567 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1568 }
1569 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1570 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001571 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001572 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001573 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001574 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1575 ConfigInfo::kRenderableWithMSAA_Flag;
1576 }
1577 }
1578 }
cblume790d5132016-02-29 11:13:29 -08001579 if (texStorageSupported) {
1580 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1581 }
bsalomoncdee0092016-01-08 13:20:12 -08001582 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001583
brianosmana6359362016-03-21 06:55:37 -07001584 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001585 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001586 if (kGL_GrGLStandard == standard) {
1587 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001588 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001589 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1590 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1591 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001592 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001593 }
1594 }
1595 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001596 if (fSRGBSupport) {
1597 fSRGBWriteControl = true;
1598 }
bsalomon41e4384e2016-01-08 09:12:44 -08001599 } else {
brianosman20471892016-12-02 06:43:32 -08001600 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1601#if defined(SK_CPU_X86)
1602 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1603 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1604 // blacklist that device (and any others that might be sharing the same driver).
1605 fSRGBSupport = false;
1606 }
1607#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001608 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1609 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001610 // See https://bug.skia.org/5329 for Adreno4xx issue.
1611 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1612 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001613 }
brianosman20471892016-12-02 06:43:32 -08001614 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1615 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1616 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001617 fSRGBSupport = false;
1618 }
brianosman20471892016-12-02 06:43:32 -08001619
1620 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1621 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1622 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1623 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1624 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1625 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1626 // affects Windows.
1627 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1628 fSRGBSupport = false;
1629 }
1630
bsalomon30447372015-12-21 09:03:05 -08001631 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1632 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1633 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1634 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001635 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1636 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001637 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001638 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001639 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001640 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1641 allRenderFlags;
1642 }
cblume790d5132016-02-29 11:13:29 -08001643 if (texStorageSupported) {
1644 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1645 }
bsalomoncdee0092016-01-08 13:20:12 -08001646 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001647
brianosmana6359362016-03-21 06:55:37 -07001648 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1649 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1650 // is in this format, for example).
1651 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1652 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1653 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1654 // external format is GL_BGRA.
1655 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1656 GR_GL_BGRA;
1657 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1658 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1659 if (fSRGBSupport) {
1660 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1661 allRenderFlags;
1662 }
1663 if (texStorageSupported) {
1664 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1665 }
1666 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1667
Brian Salomonbf7b6202016-11-11 16:08:03 -05001668 bool hasIntegerTextures;
1669 if (standard == kGL_GrGLStandard) {
1670 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1671 ctxInfo.hasExtension("GL_EXT_texture_integer");
1672 } else {
1673 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1674 }
1675 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1676 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1677 hasIntegerTextures = false;
1678 }
1679 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1680 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1681 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1682 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1683 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1684 // We currently only support using integer textures as srcs, not for rendering (even though GL
1685 // allows it).
1686 if (hasIntegerTextures) {
1687 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1688 ConfigInfo::kFBOColorAttachment_Flag;
1689 if (texStorageSupported) {
1690 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1691 ConfigInfo::kCanUseTexStorage_Flag;
1692 }
1693 }
1694
bsalomon30447372015-12-21 09:03:05 -08001695 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1696 if (this->ES2CompatibilitySupport()) {
1697 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1698 } else {
1699 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1700 }
bsalomon76148af2016-01-12 11:13:47 -08001701 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1702 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001703 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001704 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001705 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1706 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001707 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001708 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1709 }
1710 } else {
1711 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1712 }
cblume790d5132016-02-29 11:13:29 -08001713 // 565 is not a sized internal format on desktop GL. So on desktop with
1714 // 565 we always use an unsized internal format to let the system pick
1715 // the best sized format to convert the 565 data to. Since TexStorage
1716 // only allows sized internal formats we disallow it.
1717 //
1718 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1719 // update.
1720 if (texStorageSupported && kGL_GrGLStandard != standard) {
1721 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1722 }
bsalomoncdee0092016-01-08 13:20:12 -08001723 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001724
1725 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1726 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001727 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1728 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001729 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001730 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001731 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1732 if (kGL_GrGLStandard == standard) {
1733 if (version >= GR_GL_VER(4, 2)) {
1734 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1735 }
1736 } else {
1737 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1738 }
cblume790d5132016-02-29 11:13:29 -08001739 if (texStorageSupported) {
1740 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1741 }
bsalomoncdee0092016-01-08 13:20:12 -08001742 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001743
Brian Osmanf4faccd2017-01-10 16:53:58 -05001744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1745 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1746 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001747 if (this->textureRedSupport()) {
1748 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1749 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001750 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1751 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001752 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001753 if (texelBufferSupport) {
1754 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1755 }
bsalomon30447372015-12-21 09:03:05 -08001756 } else {
1757 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1758 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001759 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1760 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001761 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001762 }
bsalomon40170072016-05-05 14:40:03 -07001763 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001764 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1765 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001766 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001767 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1768 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1769 }
cblume790d5132016-02-29 11:13:29 -08001770 if (texStorageSupported) {
1771 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1772 }
bsalomon41e4384e2016-01-08 09:12:44 -08001773
Brian Osmanf4faccd2017-01-10 16:53:58 -05001774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1775 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1776 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001777 if (this->textureRedSupport()) {
1778 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1779 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1780 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1781 GR_GL_RED;
1782 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1783 if (texelBufferSupport) {
1784 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1785 }
1786 } else {
1787 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1788 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1789 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1790 GR_GL_LUMINANCE;
1791 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1792 }
Brian Osman986563b2017-01-10 14:20:02 -05001793#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1794 if (this->textureRedSupport() ||
1795 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1796 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1797 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1798 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1799 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1800 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1801 }
1802#endif
1803 if (texStorageSupported) {
1804 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1805 }
1806
bsalomon41e4384e2016-01-08 09:12:44 -08001807 // Check for [half] floating point texture support
1808 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1809 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1810 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1811 bool hasFPTextures = false;
1812 bool hasHalfFPTextures = false;
1813 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001814 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001815
1816 if (kGL_GrGLStandard == standard) {
1817 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1818 hasFPTextures = true;
1819 hasHalfFPTextures = true;
1820 }
1821 } else {
1822 if (version >= GR_GL_VER(3, 1)) {
1823 hasFPTextures = true;
1824 hasHalfFPTextures = true;
1825 } else {
1826 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1827 ctxInfo.hasExtension("GL_OES_texture_float")) {
1828 hasFPTextures = true;
1829 }
1830 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1831 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1832 hasHalfFPTextures = true;
1833 }
1834 }
1835 }
bsalomon30447372015-12-21 09:03:05 -08001836
csmartdalton6aa0e112017-02-08 16:14:11 -05001837 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1838 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1839 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1840 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1841 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1842 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1843 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1844 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1845 if (hasFPTextures) {
1846 fConfigTable[fpconfig].fFlags = ConfigInfo::kTextureable_Flag;
1847 // For now we only enable rendering to float on desktop, because on ES we'd have to
1848 // solve many precision issues and no clients actually want this yet.
1849 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1850 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1851 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1852 }
bsalomon41e4384e2016-01-08 09:12:44 -08001853 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001854 if (texStorageSupported) {
1855 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1856 }
1857 if (texelBufferSupport) {
1858 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1859 }
1860 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001861 }
bsalomon30447372015-12-21 09:03:05 -08001862
1863 if (this->textureRedSupport()) {
1864 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1865 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001866 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1867 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001868 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001869 if (texelBufferSupport) {
1870 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1871 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1872 }
bsalomon30447372015-12-21 09:03:05 -08001873 } else {
1874 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1875 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001876 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1877 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001878 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001879 }
Brian Osman3a887252016-11-17 13:27:31 -05001880 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1881 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1882 // returned when we query, but that turns into a bigger refactor, so just work around it.
1883 if (kGL_GrGLStandard == ctxInfo.standard() ||
1884 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001885 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1886 } else {
1887 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1888 }
bsalomon7928ef62016-01-05 10:26:39 -08001889 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001890 if (texStorageSupported) {
1891 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1892 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001893 if (hasHalfFPTextures) {
1894 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1895 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1896 // GL_RED internal format.
1897 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1898 (this->textureRedSupport() &&
1899 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1900 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1901 }
1902 }
bsalomon30447372015-12-21 09:03:05 -08001903
1904 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1905 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001906 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1907 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001908 // See comment above, re: ANGLE and ES3.
1909 if (kGL_GrGLStandard == ctxInfo.standard() ||
1910 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001911 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1912 } else {
1913 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1914 }
bsalomon7928ef62016-01-05 10:26:39 -08001915 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001916 if (hasHalfFPTextures) {
1917 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1918 // ES requires 3.2 or EXT_color_buffer_half_float.
1919 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1920 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1921 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1922 }
1923 }
cblume790d5132016-02-29 11:13:29 -08001924 if (texStorageSupported) {
1925 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1926 }
cdalton74b8d322016-04-11 14:47:28 -07001927 if (texelBufferSupport) {
1928 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1929 }
bsalomoncdee0092016-01-08 13:20:12 -08001930 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001931
1932 // Compressed texture support
1933
1934 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1935 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1936
1937 // TODO: Fix command buffer bindings and remove this.
1938 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001939
1940 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001941 // Below we set the external formats and types to 0.
Robert Phillipsb34727f2017-02-10 14:44:58 -05001942 {
1943 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1944 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat =
1945 GR_GL_COMPRESSED_ETC1_RGB8;
1946 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
1947 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
1948 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1949 if (kGL_GrGLStandard == standard) {
1950 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1951 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1952 }
1953 } else {
1954 if (version >= GR_GL_VER(3, 0) ||
1955 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1956 // ETC2 is a superset of ETC1, so we can just check for that, too.
1957 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1958 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1959 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1960 }
bsalomon41e4384e2016-01-08 09:12:44 -08001961 }
Robert Phillipsb34727f2017-02-10 14:44:58 -05001962 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001963 }
bsalomon30447372015-12-21 09:03:05 -08001964
1965 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1966
1967 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001968 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1969 ctxInfo.version() >= GR_GL_VER(3,0));
1970 // All ES versions (thus far) require sized internal formats for render buffers.
1971 // TODO: Always use sized internal format?
1972 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1973
bsalomon30447372015-12-21 09:03:05 -08001974 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001975 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1976 // param to glTex[Sub]Image.
1977 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1978 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1979 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1980 fConfigTable[i].fFormats.fSizedInternalFormat :
1981 fConfigTable[i].fFormats.fBaseInternalFormat;
1982 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001983 fConfigTable[i].fFormats.fSizedInternalFormat :
1984 fConfigTable[i].fFormats.fBaseInternalFormat;
1985 }
1986 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1987 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1988 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1989 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1990 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001991 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001992 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001993
1994 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1995 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1996 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1997 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001998 }
1999
2000 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
2001 // as a base format.
2002 // GL_EXT_texture_format_BGRA8888:
2003 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2004 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2005 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002006 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002007 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2008 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2009 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002010 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002011 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2012 }
2013
bsalomoncdee0092016-01-08 13:20:12 -08002014 // If we don't have texture swizzle support then the shader generator must insert the
2015 // swizzle into shader code.
2016 if (!this->textureSwizzleSupport()) {
2017 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002018 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002019 }
2020 }
2021
bsalomon7f9b2e42016-01-12 13:29:26 -08002022 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2023 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2024 // gets written to the single component.
2025 if (this->textureRedSupport()) {
2026 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2027 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2028 if (GrPixelConfigIsAlphaOnly(config) &&
2029 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002030 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002031 }
2032 }
2033 }
2034
Brian Salomonf9f45122016-11-29 11:59:17 -05002035 // We currently only support images on rgba textures formats. We could add additional formats
2036 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2037 // (e.g. where we use GL_RED textures to implement alpha configs).
2038 if (this->shaderCaps()->imageLoadStoreSupport()) {
2039 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2040 ConfigInfo::kCanUseAsImageStorage_Flag;
2041 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2042 // immutable via TexStorage. We create non-integer textures as mutable textures using
2043 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2044 // storage support for non-integer textures.
2045 if (kGL_GrGLStandard == ctxInfo.standard()) {
2046 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2047 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2048 ConfigInfo::kCanUseAsImageStorage_Flag;
2049 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2050 }
2051 }
2052
bsalomon30447372015-12-21 09:03:05 -08002053#ifdef SK_DEBUG
2054 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002055 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002056 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002057 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2058 // renderable.
2059 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2060 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002061 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2062 fConfigTable[i].fFormats.fBaseInternalFormat);
2063 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002064 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002065 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2066 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2067 fConfigTable[i].fFormats.fExternalFormat[j]);
2068 }
2069 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002070 }
2071#endif
2072}
2073
Eric Karl74480882017-04-03 14:49:05 -07002074bool GrGLCaps::initDescForDstCopy(const GrRenderTarget* src, GrSurfaceDesc* desc,
2075 bool* rectsMustMatch, bool* disallowSubrect) const {
2076 // By default, we don't require rects to match.
2077 *rectsMustMatch = false;
2078
2079 // By default, we allow subrects.
2080 *disallowSubrect = false;
2081
Brian Salomon467921e2017-03-06 16:17:12 -05002082 // If the src is a texture, we can implement the blit as a draw assuming the config is
2083 // renderable.
2084 if (src->asTexture() && this->isConfigRenderable(src->config(), false)) {
2085 desc->fOrigin = kDefault_GrSurfaceOrigin;
2086 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2087 desc->fConfig = src->config();
2088 return true;
2089 }
2090
2091 const GrGLTexture* srcTexture = static_cast<const GrGLTexture*>(src->asTexture());
2092 if (srcTexture && srcTexture->target() != GR_GL_TEXTURE_2D) {
2093 // Not supported for FBO blit or CopyTexSubImage
2094 return false;
2095 }
2096
2097 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2098 // possible and we return false to fallback to creating a render target dst for render-to-
2099 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2100 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2101 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002102 bool rectsMustMatchForBlitFramebuffer = false;
2103 bool disallowSubrectForBlitFramebuffer = false;
2104 if (src->numColorSamples() &&
2105 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2106 rectsMustMatchForBlitFramebuffer = true;
2107 disallowSubrectForBlitFramebuffer = true;
2108 // Mirroring causes rects to mismatch later, don't allow it.
2109 originForBlitFramebuffer = src->origin();
2110 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2111 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2112 rectsMustMatchForBlitFramebuffer = true;
2113 // Mirroring causes rects to mismatch later, don't allow it.
2114 originForBlitFramebuffer = src->origin();
2115 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002116 originForBlitFramebuffer = src->origin();
2117 }
2118
2119 // Check for format issues with glCopyTexSubImage2D
2120 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2121 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2122 // then we set up for that, otherwise fail.
2123 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2124 desc->fOrigin = originForBlitFramebuffer;
2125 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002126 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2127 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002128 return true;
2129 }
2130 return false;
2131 }
2132
2133 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src);
2134 if (srcRT->renderFBOID() != srcRT->textureFBOID()) {
2135 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO blit or
2136 // fail.
2137 if (this->canConfigBeFBOColorAttachment(src->config())) {
2138 desc->fOrigin = originForBlitFramebuffer;
2139 desc->fConfig = src->config();
Eric Karl74480882017-04-03 14:49:05 -07002140 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2141 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002142 return true;
2143 }
2144 return false;
2145 }
2146
2147 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2148 desc->fConfig = src->config();
2149 desc->fOrigin = src->origin();
2150 desc->fFlags = kNone_GrSurfaceFlags;
2151 return true;
2152}
2153
csmartdaltone0d36292016-07-29 08:14:20 -07002154void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2155 if (options.fEnableInstancedRendering) {
2156 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2157#ifndef SK_BUILD_FOR_MAC
2158 // OS X doesn't seem to write correctly to floating point textures when using
2159 // glDraw*Indirect, regardless of the underlying GPU.
2160 fAvoidInstancedDrawsToFPTargets = true;
2161#endif
2162 }
2163}