blob: cb0d7899e7de0d435caed6a6d301729141c40004 [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() ||
bsalomona8fcea02015-02-13 09:00:39 -0800502 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800503 fUseDrawInsteadOfClear = true;
504 }
505
joshualitt83bc2292015-06-18 14:18:02 -0700506 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
507 fUseDrawInsteadOfPartialRenderTargetWrite = true;
508 }
509
bsalomonbabafcc2016-02-16 11:36:47 -0800510 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
511 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
512 fUseDrawInsteadOfPartialRenderTargetWrite = true;
513 fUseDrawInsteadOfAllRenderTargetWrites = true;
514 }
515
robertphillips63926682015-08-20 09:39:02 -0700516#ifdef SK_BUILD_FOR_WIN
517 // On ANGLE deferring flushes can lead to GPU starvation
518 fPreferVRAMUseOverFlushes = !isANGLE;
519#endif
520
bsalomon7dea7b72015-08-19 08:26:51 -0700521 if (kChromium_GrGLDriver == ctxInfo.driver()) {
522 fMustClearUploadedBufferData = true;
523 }
524
bsalomond08ea5f2015-02-20 06:58:13 -0800525 if (kGL_GrGLStandard == standard) {
526 // ARB allows mixed size FBO attachments, EXT does not.
527 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
528 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
529 fOversizedStencilSupport = true;
530 } else {
531 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
532 }
533 } else {
534 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
535 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
536 }
537
joshualitt58001552015-06-26 12:46:36 -0700538 if (kGL_GrGLStandard == standard) {
539 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
540 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700541 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700542 version >= GR_GL_VER(3, 2) ||
543 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
544 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
545 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700546 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700547 version >= GR_GL_VER(3, 0) ||
548 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
549 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
550 }
551
cdalton06604b92016-02-05 10:09:51 -0800552 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700553 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
554 ctxInfo.hasExtension("GL_ARB_draw_indirect");
555 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
556 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700557 (fDrawIndirectSupport &&
558 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700559 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700560 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800561 } else {
562 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700563 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
564 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
565 fBaseInstanceSupport = fDrawIndirectSupport &&
566 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700567 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800568 }
569
Brian Salomon1edc5b92016-11-29 13:43:46 -0500570 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800571
572 if (contextOptions.fUseShaderSwizzling) {
573 fTextureSwizzleSupport = false;
574 }
575
ethannicholas28ef4452016-03-25 09:26:03 -0700576 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700577 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
578 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700579 fSampleShadingSupport = true;
580 }
581 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
582 fSampleShadingSupport = true;
583 }
584
jvanverth84741b32016-09-30 08:39:02 -0700585 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
586 if (kGL_GrGLStandard == standard) {
587 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
588 fFenceSyncSupport = true;
589 }
590 } else if (version >= GR_GL_VER(3, 0)) {
591 fFenceSyncSupport = true;
592 }
593
Brian Osman2c2bc112017-02-28 10:02:49 -0500594 // Safely moving textures between contexts requires fences. The Windows Intel driver has a
595 // bug with deleting and reusing texture IDs across contexts, so disallow this feature.
596 fCrossContextTextureSupport = fFenceSyncSupport;
597#ifdef SK_BUILD_FOR_WIN
598 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
599 fCrossContextTextureSupport = false;
600 }
601#endif
602
brianosman131ff132016-06-07 14:22:44 -0700603 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
604 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
605 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
606 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700607 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700608 (contextOptions.fDoManualMipmapping ||
609 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700610 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
611 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700612 fDoManualMipmapping = true;
613 }
614
brianosman20471892016-12-02 06:43:32 -0800615 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800616 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
617 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800618
bsalomoncdee0092016-01-08 13:20:12 -0800619 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
620 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800621 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700622
623 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500624 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000625}
626
egdaniel472d44e2015-10-22 08:20:00 -0700627const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
628 bool isCoreProfile) {
629 switch (generation) {
630 case k110_GrGLSLGeneration:
631 if (kGLES_GrGLStandard == standard) {
632 // ES2s shader language is based on version 1.20 but is version
633 // 1.00 of the ES language.
634 return "#version 100\n";
635 } else {
636 SkASSERT(kGL_GrGLStandard == standard);
637 return "#version 110\n";
638 }
639 case k130_GrGLSLGeneration:
640 SkASSERT(kGL_GrGLStandard == standard);
641 return "#version 130\n";
642 case k140_GrGLSLGeneration:
643 SkASSERT(kGL_GrGLStandard == standard);
644 return "#version 140\n";
645 case k150_GrGLSLGeneration:
646 SkASSERT(kGL_GrGLStandard == standard);
647 if (isCoreProfile) {
648 return "#version 150\n";
649 } else {
650 return "#version 150 compatibility\n";
651 }
652 case k330_GrGLSLGeneration:
653 if (kGLES_GrGLStandard == standard) {
654 return "#version 300 es\n";
655 } else {
656 SkASSERT(kGL_GrGLStandard == standard);
657 if (isCoreProfile) {
658 return "#version 330\n";
659 } else {
660 return "#version 330 compatibility\n";
661 }
662 }
cdalton33ad7012016-02-22 07:55:44 -0800663 case k400_GrGLSLGeneration:
664 SkASSERT(kGL_GrGLStandard == standard);
665 if (isCoreProfile) {
666 return "#version 400\n";
667 } else {
668 return "#version 400 compatibility\n";
669 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500670 case k420_GrGLSLGeneration:
671 SkASSERT(kGL_GrGLStandard == standard);
672 if (isCoreProfile) {
673 return "#version 420\n";
674 }
675 else {
676 return "#version 420 compatibility\n";
677 }
egdaniel472d44e2015-10-22 08:20:00 -0700678 case k310es_GrGLSLGeneration:
679 SkASSERT(kGLES_GrGLStandard == standard);
680 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800681 case k320es_GrGLSLGeneration:
682 SkASSERT(kGLES_GrGLStandard == standard);
683 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700684 }
685 return "<no version>";
686}
687
egdaniel05ded892015-10-26 07:38:05 -0700688void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700689 GrGLStandard standard = ctxInfo.standard();
690 GrGLVersion version = ctxInfo.version();
691
692 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500693 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700694 **************************************************************************/
695
Brian Salomon1edc5b92016-11-29 13:43:46 -0500696 GrShaderCaps* shaderCaps = fShaderCaps.get();
697 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700698 if (kGLES_GrGLStandard == standard) {
699 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500700 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
701 shaderCaps->fFBFetchSupport = true;
702 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
703 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700704 }
705 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
706 // 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 -0500707 shaderCaps->fFBFetchNeedsCustomOutput = false;
708 shaderCaps->fFBFetchSupport = true;
709 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
710 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700711 }
712 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
713 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500714 shaderCaps->fFBFetchNeedsCustomOutput = false;
715 shaderCaps->fFBFetchSupport = true;
716 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
717 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700718 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500719 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700720 }
721
egdaniel7517e452016-09-20 13:00:26 -0700722 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
723 // Galaxy S7.
724 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
725 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500726 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700727 }
728
Brian Salomon1edc5b92016-11-29 13:43:46 -0500729 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700730
cdaltonc08f1962016-02-12 12:14:06 -0800731 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500732 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800733 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500734 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800735 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
736 }
737
738 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500739 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800740 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
741 } else {
742 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500743 shaderCaps->fNoPerspectiveInterpolationSupport = true;
744 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800745 "GL_NV_shader_noperspective_interpolation";
746 }
747 }
748
cdalton33ad7012016-02-22 07:55:44 -0800749 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500750 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800751 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
752 } else {
753 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500754 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800755 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500756 shaderCaps->fMultisampleInterpolationSupport = true;
757 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800758 "GL_OES_shader_multisample_interpolation";
759 }
760 }
761
762 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500763 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800764 } else {
765 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500766 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800767 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500768 shaderCaps->fSampleVariablesSupport = true;
769 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800770 }
771 }
772
Brian Salomon1edc5b92016-11-29 13:43:46 -0500773 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700774 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
775 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500776 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700777 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
778 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800779 }
780
egdaniel472d44e2015-10-22 08:20:00 -0700781 // 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 -0500782 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700783
784 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
785 // function that may require a gradient calculation inside a conditional block may return
786 // undefined results". This appears to be an issue with the 'any' call since even the simple
787 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
788 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500789 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700790
Brian Salomon1edc5b92016-11-29 13:43:46 -0500791 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
792 shaderCaps->fGLSLGeneration,
793 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800794
Brian Salomon1edc5b92016-11-29 13:43:46 -0500795 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
796 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800797 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800798
799 // Frag Coords Convention support is not part of ES
800 // Known issue on at least some Intel platforms:
801 // http://code.google.com/p/skia/issues/detail?id=946
802 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
803 kGLES_GrGLStandard != standard &&
804 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
805 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500806 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800807 }
808
809 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500810 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800811 }
812
cdalton9c3f1432016-03-11 10:07:37 -0800813 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
814 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500815 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800816 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
817 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
818 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500819 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800820 }
821 }
822
Brian Salomon1edc5b92016-11-29 13:43:46 -0500823 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800824 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500825 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800826 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500827 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800828 }
829 }
830
cdaltonc04ce672016-03-11 14:07:38 -0800831 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500832 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800833 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500834 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700835 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
836 }
837
Brian Salomon1edc5b92016-11-29 13:43:46 -0500838 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700839 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500840 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700841 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
842 } else {
843 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
844 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500845 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700846 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500847 shaderCaps->fTexelBufferSupport = true;
848 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700849 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500850 shaderCaps->fTexelBufferSupport = true;
851 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700852 }
cdaltonc04ce672016-03-11 14:07:38 -0800853 }
854 }
855
egdaniel8dcdedc2015-11-11 06:27:20 -0800856 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
857 // the abs first in a separate expression.
858 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500859 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800860 }
861
bsalomon7ea33f52015-11-22 14:51:00 -0800862 // 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 -0800863 // thus must us -1.0 * %s.x to work correctly
864 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500865 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800866 }
egdaniel138c2632016-08-17 10:59:00 -0700867
868 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
869 // the original dst color when reading the outColor even after being written to. By using a
870 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500871 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
872 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700873 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700874
875#ifdef SK_BUILD_FOR_MAC
876 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
877 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
878 // term plan for this WAR is for it to eventually be baked into SkSL.
879 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
880#endif
egdaniel472d44e2015-10-22 08:20:00 -0700881}
882
kkinnunencfe62e32015-07-01 02:58:50 -0700883bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700884 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
885
886 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700887 return false;
888 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700889
kkinnunencfe62e32015-07-01 02:58:50 -0700890 if (kGL_GrGLStandard == ctxInfo.standard()) {
891 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
892 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
893 return false;
894 }
895 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700896 if (!hasChromiumPathRendering &&
897 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700898 return false;
899 }
900 }
901 // We only support v1.3+ of GL_NV_path_rendering which allows us to
902 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
903 // additions are detected by checking the existence of the function.
904 // We also use *Then* functions that not all drivers might have. Check
905 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800906 if (!gli->fFunctions.fStencilThenCoverFillPath ||
907 !gli->fFunctions.fStencilThenCoverStrokePath ||
908 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
909 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
910 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700911 return false;
912 }
913 return true;
914}
bsalomon1aa20292016-01-22 08:16:09 -0800915
Brian Salomon71d9d842016-11-03 13:42:00 -0400916bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800917 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800918 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800919 std::function<bool ()> bindRenderTarget,
920 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400921 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800922 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400923 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800924 return false;
925 }
bsalomon7928ef62016-01-05 10:26:39 -0800926
Brian Salomonbf7b6202016-11-11 16:08:03 -0500927 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
928 return false;
929 }
930
bsalomon76148af2016-01-12 11:13:47 -0800931 GrGLenum readFormat;
932 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400933 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800934 return false;
935 }
936
bsalomon1aa20292016-01-22 08:16:09 -0800937 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800938 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
939 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
940 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
941 // 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 -0500942 // The manual does not seem to fully match the spec as the spec allows integer formats
943 // when the bound color buffer is an integer buffer. It doesn't specify which integer
944 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500945 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
946 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
947 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800948 return false;
949 }
950 // There is also a set of allowed types, but all the types we use are in the set:
951 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
952 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
953 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
954 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
955 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
956 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
957 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800958 return true;
piotaixre4b23142014-10-02 10:57:53 -0700959 }
bsalomon7928ef62016-01-05 10:26:39 -0800960
bsalomon76148af2016-01-12 11:13:47 -0800961 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500962 switch (fConfigTable[surfaceConfig].fFormatType) {
963 case kNormalizedFixedPoint_FormatType:
964 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
965 return true;
966 }
967 break;
968 case kInteger_FormatType:
969 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
970 return true;
971 }
972 break;
973 case kFloat_FormatType:
974 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
975 return true;
976 }
977 break;
bsalomon7928ef62016-01-05 10:26:39 -0800978 }
979
Brian Salomon71d9d842016-11-03 13:42:00 -0400980 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800981 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400982 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800983 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800984 if (!bindRenderTarget()) {
985 return false;
986 }
987 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
988 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800989 rpFormat->fFormat = format;
990 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800991 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800992 }
993
Brian Salomon71d9d842016-11-03 13:42:00 -0400994 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
995 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700996}
997
robertphillips@google.com6177e692013-02-28 20:16:25 +0000998void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000999 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001000 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1001 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1002 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1003 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1004 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1005 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001006 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001007 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001008 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -04001009 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1010 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001011 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001012 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1013 fMSFBOType = kES_Apple_MSFBOType;
1014 }
bsalomon083617b2016-02-12 12:10:14 -08001015
1016 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1017 // is available.
1018 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001019 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
1020 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001021 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1022 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001023 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1024 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001025 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1026 kResolveMustBeFull_BlitFrambufferFlag |
1027 kNoMSAADst_BlitFramebufferFlag |
1028 kNoFormatConversion_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001029 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001030 } else {
egdanieleed519e2016-01-15 11:36:18 -08001031 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001032 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001033 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001034 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1035 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1036 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001037 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001038 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1039 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001040 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001041 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001042 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001043 }
1044}
1045
cdalton1dd05422015-06-12 09:01:18 -07001046void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001047 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001048
1049 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1050 // for now until its own blacklists can be updated.
1051 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001052 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001053 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001054 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001055 return;
1056 }
1057
1058 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1059 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001060 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001061 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1062 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001063 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001064 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1065 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1066 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1067 return;
1068 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1069 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001070 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001071 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1072 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001073 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001074 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1075 // slow on a particular platform.
1076 } else {
1077 return; // No advanced blend support.
1078 }
1079
1080 SkASSERT(this->advancedBlendEquationSupport());
1081
csmartdalton3b88a032016-08-04 14:43:49 -07001082 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1083 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1084 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001085 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1086 (1 << kColorBurn_GrBlendEquation);
1087 }
joel.liang9764c402015-07-09 19:46:18 -07001088 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1089 // Blacklist color-burn on ARM until the fix is released.
1090 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1091 }
cdalton1dd05422015-06-12 09:01:18 -07001092}
1093
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001094namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001095const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001096}
1097
1098void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1099
1100 // Build up list of legal stencil formats (though perhaps not supported on
1101 // the particular gpu/driver) from most preferred to least.
1102
1103 // these consts are in order of most preferred to least preferred
1104 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1105
1106 static const StencilFormat
1107 // internal Format stencil bits total bits packed?
1108 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1109 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1110 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1111 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001112 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001113 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1114
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001115 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001116 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001117 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001118 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1119 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1120
1121 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1122 // require FBO support we can expect these are legal formats and don't
1123 // check. These also all support the unsized GL_STENCIL_INDEX.
1124 fStencilFormats.push_back() = gS8;
1125 fStencilFormats.push_back() = gS16;
1126 if (supportsPackedDS) {
1127 fStencilFormats.push_back() = gD24S8;
1128 }
1129 fStencilFormats.push_back() = gS4;
1130 if (supportsPackedDS) {
1131 fStencilFormats.push_back() = gDS;
1132 }
1133 } else {
1134 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1135 // for other formats.
1136 // ES doesn't support using the unsized format.
1137
1138 fStencilFormats.push_back() = gS8;
1139 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001140 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1141 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001142 fStencilFormats.push_back() = gD24S8;
1143 }
1144 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1145 fStencilFormats.push_back() = gS4;
1146 }
1147 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001148}
1149
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001150SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001151
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001152 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001153
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001154 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001155 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001156 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001157 i,
1158 fStencilFormats[i].fStencilBits,
1159 fStencilFormats[i].fTotalBits);
1160 }
1161
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001162 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001163 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001164 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001165 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001166 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001167 "IMG MS To Texture",
1168 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001169 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001170 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001171 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001172 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1173 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1174 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1175 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1176 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1177 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001178 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001179
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001180 static const char* kInvalidateFBTypeStr[] = {
1181 "None",
1182 "Discard",
1183 "Invalidate",
1184 };
1185 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1186 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1187 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1188 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001189
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001190 static const char* kMapBufferTypeStr[] = {
1191 "None",
1192 "MapBuffer",
1193 "MapBufferRange",
1194 "Chromium",
1195 };
1196 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1197 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1198 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1199 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1200 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1201
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001202 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001203 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001204 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001205 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001206 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001207 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1208 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1209 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1210 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001211
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001212 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001213 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1214 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001215 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001216 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1217 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001218 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001219 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1220 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1221 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001222 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1223 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001224 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001225 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001226 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001227 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001228 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001229
1230 r.append("Configs\n-------\n");
1231 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1232 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001233 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1234 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001235 i,
1236 fConfigTable[i].fFlags,
1237 fConfigTable[i].fFormats.fBaseInternalFormat,
1238 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001239 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1240 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001241 fConfigTable[i].fFormats.fExternalType,
1242 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001243 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001244 }
1245
jvanverthe9c0fc62015-04-29 11:18:05 -07001246 return r;
1247}
1248
jvanverthe9c0fc62015-04-29 11:18:05 -07001249static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1250 switch (p) {
1251 case kLow_GrSLPrecision:
1252 return GR_GL_LOW_FLOAT;
1253 case kMedium_GrSLPrecision:
1254 return GR_GL_MEDIUM_FLOAT;
1255 case kHigh_GrSLPrecision:
1256 return GR_GL_HIGH_FLOAT;
1257 }
1258 SkFAIL("Unknown precision.");
1259 return -1;
1260}
1261
1262static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1263 switch (type) {
1264 case kVertex_GrShaderType:
1265 return GR_GL_VERTEX_SHADER;
1266 case kGeometry_GrShaderType:
1267 return GR_GL_GEOMETRY_SHADER;
1268 case kFragment_GrShaderType:
1269 return GR_GL_FRAGMENT_SHADER;
1270 }
1271 SkFAIL("Unknown shader type.");
1272 return -1;
1273}
1274
jvanverthcba99b82015-06-24 06:59:57 -07001275void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001276 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001277 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001278 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1279 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1280 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1281 if (kGeometry_GrShaderType != s) {
1282 GrShaderType shaderType = static_cast<GrShaderType>(s);
1283 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001284 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001285 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001286 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1287 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1288 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1289 GrGLint range[2];
1290 GrGLint bits;
1291 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1292 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001293 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1294 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1295 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001296 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001297 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001298 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001299 else if (!shaderCaps->fShaderPrecisionVaries) {
1300 shaderCaps->fShaderPrecisionVaries =
1301 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001302 }
1303 }
1304 }
1305 }
1306 }
1307 }
1308 else {
1309 // 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 -05001310 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001311 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1312 if (kGeometry_GrShaderType != s) {
1313 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001314 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1315 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1316 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001317 }
1318 }
1319 }
1320 }
1321 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1322 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1323 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1324 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001325 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001326 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001327 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1328 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001329 }
1330 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001331 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001332}
1333
bsalomon41e4384e2016-01-08 09:12:44 -08001334bool GrGLCaps::bgraIsInternalFormat() const {
1335 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1336}
1337
bsalomon76148af2016-01-12 11:13:47 -08001338bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1339 GrGLenum* internalFormat, GrGLenum* externalFormat,
1340 GrGLenum* externalType) const {
1341 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1342 externalFormat, externalType)) {
1343 return false;
1344 }
1345 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1346 return true;
1347}
1348
1349bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1350 GrGLenum* internalFormat) const {
1351 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1352 return false;
1353 }
1354 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1355 return true;
1356}
1357
1358bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1359 GrGLenum* externalFormat, GrGLenum* externalType) const {
1360 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1361 externalFormat, externalType)) {
1362 return false;
1363 }
1364 return true;
1365}
1366
1367bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1368 if (GrPixelConfigIsCompressed(config)) {
1369 return false;
1370 }
1371 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1372 return true;
1373}
1374
1375bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1376 ExternalFormatUsage usage, GrGLenum* externalFormat,
1377 GrGLenum* externalType) const {
1378 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001379 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001380 return false;
1381 }
1382
1383 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1384 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1385
1386 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1387 // made to work in many cases using glPixelStore and what not but is not needed currently.
1388 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1389 return false;
1390 }
1391
1392 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1393 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1394
bsalomone9573312016-01-25 14:33:25 -08001395 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1396 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1397 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1398 // texture, not the red component.
1399 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1400 if (this->textureRedSupport()) {
1401 SkASSERT(GR_GL_RED == *externalFormat);
1402 *externalFormat = GR_GL_ALPHA;
1403 }
1404 }
1405
bsalomon76148af2016-01-12 11:13:47 -08001406 return true;
1407}
1408
brianosman20471892016-12-02 06:43:32 -08001409void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1410 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001411 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001412 /*
1413 Comments on renderability of configs on various GL versions.
1414 OpenGL < 3.0:
1415 no built in support for render targets.
1416 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1417 format RGB, RGBA and NV float formats we don't use.
1418 This is the following:
1419 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1420 RGB10_A2, RGBA12,RGBA16
1421 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1422 since they aren't required by later standards and the driver can simply return
1423 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1424 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1425 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1426 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1427 This adds a lot of additional renderable sized formats, including ALPHA8.
1428 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1429 16F, 32I, 32UI, and 32F variants).
1430 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1431
1432 For both the above extensions we limit ourselves to those that are also required by
1433 OpenGL 3.0.
1434
1435 OpenGL 3.0:
1436 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1437 but are not required to be supported as renderable textures/renderbuffer.
1438 Required renderable color formats:
1439 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1440 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1441 RGB10_A2.
1442 - R11F_G11F_B10F.
1443 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1444 and RG8UI.
1445 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1446 - ALPHA8
1447
1448 OpenGL 3.1, 3.2, 3.3
1449 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1450 OpengGL 3.3, 4.0, 4.1
1451 Adds RGB10_A2UI.
1452 OpengGL 4.2
1453 Adds
1454 - RGB5_A1, RGBA4
1455 - RGB565
1456 OpenGL 4.4
1457 Does away with the separate list and adds a column to the sized internal color format
1458 table. However, no new formats become required color renderable.
1459
1460 ES 2.0
1461 color renderable: RGBA4, RGB5_A1, RGB565
1462 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1463 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1464 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1465 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1466 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1467 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1468
1469 ES 3.0
1470 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1471 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1472 RGB5_A1.
1473 - RGB8 and RGB565.
1474 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1475 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1476 ES 3.1
1477 Adds RGB10_A2, RGB10_A2UI,
1478 ES 3.2
1479 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1480 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001481 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1482 ConfigInfo::kFBOColorAttachment_Flag;
1483 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001484 if (kNone_MSFBOType != fMSFBOType) {
1485 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1486 }
bsalomon41e4384e2016-01-08 09:12:44 -08001487 GrGLStandard standard = ctxInfo.standard();
1488 GrGLVersion version = ctxInfo.version();
1489
cblume790d5132016-02-29 11:13:29 -08001490 bool texStorageSupported = false;
1491 if (kGL_GrGLStandard == standard) {
1492 // The EXT version can apply to either GL or GLES.
1493 texStorageSupported = version >= GR_GL_VER(4,2) ||
1494 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1495 ctxInfo.hasExtension("GL_EXT_texture_storage");
1496 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001497 texStorageSupported = version >= GR_GL_VER(3,0) ||
1498 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001499 }
1500
1501 // TODO: remove after command buffer supports full ES 3.0
1502 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1503 kChromium_GrGLDriver == ctxInfo.driver()) {
1504 texStorageSupported = false;
1505 }
1506
cdalton74b8d322016-04-11 14:47:28 -07001507 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1508
bsalomon30447372015-12-21 09:03:05 -08001509 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1510 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001511 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001512 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001513 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001514 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001515
1516 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1517 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001518 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1519 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001520 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001521 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001522 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1523 if (kGL_GrGLStandard == standard) {
1524 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1525 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001526 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001527 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1528 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1529 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1530 }
egdaniel4999df82016-01-07 17:06:04 -08001531 }
cblume790d5132016-02-29 11:13:29 -08001532 if (texStorageSupported) {
1533 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1534 }
cdalton74b8d322016-04-11 14:47:28 -07001535 if (texelBufferSupport) {
1536 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1537 }
bsalomoncdee0092016-01-08 13:20:12 -08001538 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001539
bsalomon76148af2016-01-12 11:13:47 -08001540 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1541 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001542 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001543 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001544 if (kGL_GrGLStandard == standard) {
1545 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1546 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1547 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1548 // Since the internal format is RGBA8, it is also renderable.
1549 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1550 allRenderFlags;
1551 }
1552 } else {
1553 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1554 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1555 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1556 // The APPLE extension doesn't make this renderable.
1557 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1558 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1559 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1560 // Though, that seems to not be the case if the texture storage extension is
1561 // present. The specs don't exactly make that clear.
1562 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1563 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1564 }
1565 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1566 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001567 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001568 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001569 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001570 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1571 ConfigInfo::kRenderableWithMSAA_Flag;
1572 }
1573 }
1574 }
cblume790d5132016-02-29 11:13:29 -08001575 if (texStorageSupported) {
1576 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1577 }
bsalomoncdee0092016-01-08 13:20:12 -08001578 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001579
brianosmana6359362016-03-21 06:55:37 -07001580 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001581 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001582 if (kGL_GrGLStandard == standard) {
1583 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001584 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001585 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1586 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1587 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001588 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001589 }
1590 }
1591 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001592 if (fSRGBSupport) {
1593 fSRGBWriteControl = true;
1594 }
bsalomon41e4384e2016-01-08 09:12:44 -08001595 } else {
brianosman20471892016-12-02 06:43:32 -08001596 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1597#if defined(SK_CPU_X86)
1598 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1599 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1600 // blacklist that device (and any others that might be sharing the same driver).
1601 fSRGBSupport = false;
1602 }
1603#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001604 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1605 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001606 // See https://bug.skia.org/5329 for Adreno4xx issue.
1607 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1608 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001609 }
brianosman20471892016-12-02 06:43:32 -08001610 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1611 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1612 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001613 fSRGBSupport = false;
1614 }
brianosman20471892016-12-02 06:43:32 -08001615
1616 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1617 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1618 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1619 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1620 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1621 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1622 // affects Windows.
1623 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1624 fSRGBSupport = false;
1625 }
1626
bsalomon30447372015-12-21 09:03:05 -08001627 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1628 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1629 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1630 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001631 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1632 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001633 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001634 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001635 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001636 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1637 allRenderFlags;
1638 }
cblume790d5132016-02-29 11:13:29 -08001639 if (texStorageSupported) {
1640 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1641 }
bsalomoncdee0092016-01-08 13:20:12 -08001642 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001643
brianosmana6359362016-03-21 06:55:37 -07001644 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1645 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1646 // is in this format, for example).
1647 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1648 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1649 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1650 // external format is GL_BGRA.
1651 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1652 GR_GL_BGRA;
1653 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1654 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1655 if (fSRGBSupport) {
1656 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1657 allRenderFlags;
1658 }
1659 if (texStorageSupported) {
1660 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1661 }
1662 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1663
Brian Salomonbf7b6202016-11-11 16:08:03 -05001664 bool hasIntegerTextures;
1665 if (standard == kGL_GrGLStandard) {
1666 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1667 ctxInfo.hasExtension("GL_EXT_texture_integer");
1668 } else {
1669 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1670 }
1671 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1672 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1673 hasIntegerTextures = false;
1674 }
1675 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1676 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1677 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1678 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1679 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1680 // We currently only support using integer textures as srcs, not for rendering (even though GL
1681 // allows it).
1682 if (hasIntegerTextures) {
1683 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1684 ConfigInfo::kFBOColorAttachment_Flag;
1685 if (texStorageSupported) {
1686 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1687 ConfigInfo::kCanUseTexStorage_Flag;
1688 }
1689 }
1690
bsalomon30447372015-12-21 09:03:05 -08001691 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1692 if (this->ES2CompatibilitySupport()) {
1693 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1694 } else {
1695 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1696 }
bsalomon76148af2016-01-12 11:13:47 -08001697 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1698 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001699 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001700 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001701 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1702 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001703 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001704 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1705 }
1706 } else {
1707 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1708 }
cblume790d5132016-02-29 11:13:29 -08001709 // 565 is not a sized internal format on desktop GL. So on desktop with
1710 // 565 we always use an unsized internal format to let the system pick
1711 // the best sized format to convert the 565 data to. Since TexStorage
1712 // only allows sized internal formats we disallow it.
1713 //
1714 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1715 // update.
1716 if (texStorageSupported && kGL_GrGLStandard != standard) {
1717 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1718 }
bsalomoncdee0092016-01-08 13:20:12 -08001719 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001720
1721 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1722 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001723 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1724 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001725 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001726 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001727 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1728 if (kGL_GrGLStandard == standard) {
1729 if (version >= GR_GL_VER(4, 2)) {
1730 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1731 }
1732 } else {
1733 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1734 }
cblume790d5132016-02-29 11:13:29 -08001735 if (texStorageSupported) {
1736 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1737 }
bsalomoncdee0092016-01-08 13:20:12 -08001738 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001739
Brian Osmanf4faccd2017-01-10 16:53:58 -05001740 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1741 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1742 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001743 if (this->textureRedSupport()) {
1744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1745 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001746 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1747 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001748 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001749 if (texelBufferSupport) {
1750 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1751 }
bsalomon30447372015-12-21 09:03:05 -08001752 } else {
1753 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1754 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001755 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1756 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001757 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001758 }
bsalomon40170072016-05-05 14:40:03 -07001759 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001760 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1761 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001762 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001763 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1764 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1765 }
cblume790d5132016-02-29 11:13:29 -08001766 if (texStorageSupported) {
1767 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1768 }
bsalomon41e4384e2016-01-08 09:12:44 -08001769
Brian Osmanf4faccd2017-01-10 16:53:58 -05001770 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1771 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1772 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001773 if (this->textureRedSupport()) {
1774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1775 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1776 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1777 GR_GL_RED;
1778 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1779 if (texelBufferSupport) {
1780 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1781 }
1782 } else {
1783 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1784 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1785 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1786 GR_GL_LUMINANCE;
1787 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1788 }
Brian Osman986563b2017-01-10 14:20:02 -05001789#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1790 if (this->textureRedSupport() ||
1791 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1792 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1793 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1794 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1795 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1796 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1797 }
1798#endif
1799 if (texStorageSupported) {
1800 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1801 }
1802
bsalomon41e4384e2016-01-08 09:12:44 -08001803 // Check for [half] floating point texture support
1804 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1805 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1806 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1807 bool hasFPTextures = false;
1808 bool hasHalfFPTextures = false;
1809 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001810 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001811
1812 if (kGL_GrGLStandard == standard) {
1813 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1814 hasFPTextures = true;
1815 hasHalfFPTextures = true;
1816 }
1817 } else {
1818 if (version >= GR_GL_VER(3, 1)) {
1819 hasFPTextures = true;
1820 hasHalfFPTextures = true;
1821 } else {
1822 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1823 ctxInfo.hasExtension("GL_OES_texture_float")) {
1824 hasFPTextures = true;
1825 }
1826 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1827 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1828 hasHalfFPTextures = true;
1829 }
1830 }
1831 }
bsalomon30447372015-12-21 09:03:05 -08001832
csmartdalton6aa0e112017-02-08 16:14:11 -05001833 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1834 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1835 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1836 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1837 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1838 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1839 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1840 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1841 if (hasFPTextures) {
1842 fConfigTable[fpconfig].fFlags = ConfigInfo::kTextureable_Flag;
1843 // For now we only enable rendering to float on desktop, because on ES we'd have to
1844 // solve many precision issues and no clients actually want this yet.
1845 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1846 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1847 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1848 }
bsalomon41e4384e2016-01-08 09:12:44 -08001849 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001850 if (texStorageSupported) {
1851 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1852 }
1853 if (texelBufferSupport) {
1854 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1855 }
1856 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001857 }
bsalomon30447372015-12-21 09:03:05 -08001858
1859 if (this->textureRedSupport()) {
1860 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1861 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001862 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1863 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001864 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001865 if (texelBufferSupport) {
1866 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1867 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1868 }
bsalomon30447372015-12-21 09:03:05 -08001869 } else {
1870 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1871 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001872 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1873 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001874 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001875 }
Brian Osman3a887252016-11-17 13:27:31 -05001876 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1877 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1878 // returned when we query, but that turns into a bigger refactor, so just work around it.
1879 if (kGL_GrGLStandard == ctxInfo.standard() ||
1880 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001881 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1882 } else {
1883 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1884 }
bsalomon7928ef62016-01-05 10:26:39 -08001885 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001886 if (texStorageSupported) {
1887 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1888 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001889 if (hasHalfFPTextures) {
1890 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1891 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1892 // GL_RED internal format.
1893 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1894 (this->textureRedSupport() &&
1895 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1896 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1897 }
1898 }
bsalomon30447372015-12-21 09:03:05 -08001899
1900 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1901 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001902 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1903 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001904 // See comment above, re: ANGLE and ES3.
1905 if (kGL_GrGLStandard == ctxInfo.standard() ||
1906 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001907 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1908 } else {
1909 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1910 }
bsalomon7928ef62016-01-05 10:26:39 -08001911 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001912 if (hasHalfFPTextures) {
1913 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1914 // ES requires 3.2 or EXT_color_buffer_half_float.
1915 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1916 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1917 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1918 }
1919 }
cblume790d5132016-02-29 11:13:29 -08001920 if (texStorageSupported) {
1921 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1922 }
cdalton74b8d322016-04-11 14:47:28 -07001923 if (texelBufferSupport) {
1924 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1925 }
bsalomoncdee0092016-01-08 13:20:12 -08001926 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001927
1928 // Compressed texture support
1929
1930 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1931 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1932
1933 // TODO: Fix command buffer bindings and remove this.
1934 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001935
1936 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001937 // Below we set the external formats and types to 0.
Robert Phillipsb34727f2017-02-10 14:44:58 -05001938 {
1939 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1940 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat =
1941 GR_GL_COMPRESSED_ETC1_RGB8;
1942 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
1943 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
1944 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1945 if (kGL_GrGLStandard == standard) {
1946 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1947 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1948 }
1949 } else {
1950 if (version >= GR_GL_VER(3, 0) ||
1951 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1952 // ETC2 is a superset of ETC1, so we can just check for that, too.
1953 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1954 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1955 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1956 }
bsalomon41e4384e2016-01-08 09:12:44 -08001957 }
Robert Phillipsb34727f2017-02-10 14:44:58 -05001958 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001959 }
bsalomon30447372015-12-21 09:03:05 -08001960
1961 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1962
1963 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001964 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1965 ctxInfo.version() >= GR_GL_VER(3,0));
1966 // All ES versions (thus far) require sized internal formats for render buffers.
1967 // TODO: Always use sized internal format?
1968 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1969
bsalomon30447372015-12-21 09:03:05 -08001970 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001971 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1972 // param to glTex[Sub]Image.
1973 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1974 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1975 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1976 fConfigTable[i].fFormats.fSizedInternalFormat :
1977 fConfigTable[i].fFormats.fBaseInternalFormat;
1978 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001979 fConfigTable[i].fFormats.fSizedInternalFormat :
1980 fConfigTable[i].fFormats.fBaseInternalFormat;
1981 }
1982 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1983 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1984 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1985 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1986 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001987 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001988 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001989
1990 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1991 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1992 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1993 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001994 }
1995
1996 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1997 // as a base format.
1998 // GL_EXT_texture_format_BGRA8888:
1999 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2000 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2001 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002002 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002003 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2004 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2005 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002006 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002007 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2008 }
2009
bsalomoncdee0092016-01-08 13:20:12 -08002010 // If we don't have texture swizzle support then the shader generator must insert the
2011 // swizzle into shader code.
2012 if (!this->textureSwizzleSupport()) {
2013 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002014 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002015 }
2016 }
2017
bsalomon7f9b2e42016-01-12 13:29:26 -08002018 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2019 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2020 // gets written to the single component.
2021 if (this->textureRedSupport()) {
2022 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2023 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2024 if (GrPixelConfigIsAlphaOnly(config) &&
2025 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002026 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002027 }
2028 }
2029 }
2030
Brian Salomonf9f45122016-11-29 11:59:17 -05002031 // We currently only support images on rgba textures formats. We could add additional formats
2032 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2033 // (e.g. where we use GL_RED textures to implement alpha configs).
2034 if (this->shaderCaps()->imageLoadStoreSupport()) {
2035 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2036 ConfigInfo::kCanUseAsImageStorage_Flag;
2037 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2038 // immutable via TexStorage. We create non-integer textures as mutable textures using
2039 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2040 // storage support for non-integer textures.
2041 if (kGL_GrGLStandard == ctxInfo.standard()) {
2042 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2043 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2044 ConfigInfo::kCanUseAsImageStorage_Flag;
2045 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2046 }
2047 }
2048
bsalomon30447372015-12-21 09:03:05 -08002049#ifdef SK_DEBUG
2050 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002051 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002052 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002053 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2054 // renderable.
2055 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2056 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002057 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2058 fConfigTable[i].fFormats.fBaseInternalFormat);
2059 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002060 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002061 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2062 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2063 fConfigTable[i].fFormats.fExternalFormat[j]);
2064 }
2065 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002066 }
2067#endif
2068}
2069
Brian Salomon467921e2017-03-06 16:17:12 -05002070bool GrGLCaps::initDescForDstCopy(const GrRenderTarget* src, GrSurfaceDesc* desc) const {
2071 // If the src is a texture, we can implement the blit as a draw assuming the config is
2072 // renderable.
2073 if (src->asTexture() && this->isConfigRenderable(src->config(), false)) {
2074 desc->fOrigin = kDefault_GrSurfaceOrigin;
2075 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2076 desc->fConfig = src->config();
2077 return true;
2078 }
2079
2080 const GrGLTexture* srcTexture = static_cast<const GrGLTexture*>(src->asTexture());
2081 if (srcTexture && srcTexture->target() != GR_GL_TEXTURE_2D) {
2082 // Not supported for FBO blit or CopyTexSubImage
2083 return false;
2084 }
2085
2086 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2087 // possible and we return false to fallback to creating a render target dst for render-to-
2088 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2089 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2090 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
2091 if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
2092 originForBlitFramebuffer = src->origin();
2093 }
2094
2095 // Check for format issues with glCopyTexSubImage2D
2096 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2097 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2098 // then we set up for that, otherwise fail.
2099 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2100 desc->fOrigin = originForBlitFramebuffer;
2101 desc->fConfig = kBGRA_8888_GrPixelConfig;
2102 return true;
2103 }
2104 return false;
2105 }
2106
2107 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src);
2108 if (srcRT->renderFBOID() != srcRT->textureFBOID()) {
2109 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO blit or
2110 // fail.
2111 if (this->canConfigBeFBOColorAttachment(src->config())) {
2112 desc->fOrigin = originForBlitFramebuffer;
2113 desc->fConfig = src->config();
2114 return true;
2115 }
2116 return false;
2117 }
2118
2119 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2120 desc->fConfig = src->config();
2121 desc->fOrigin = src->origin();
2122 desc->fFlags = kNone_GrSurfaceFlags;
2123 return true;
2124}
2125
csmartdaltone0d36292016-07-29 08:14:20 -07002126void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2127 if (options.fEnableInstancedRendering) {
2128 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2129#ifndef SK_BUILD_FOR_MAC
2130 // OS X doesn't seem to write correctly to floating point textures when using
2131 // glDraw*Indirect, regardless of the underlying GPU.
2132 fAvoidInstancedDrawsToFPTargets = true;
2133#endif
2134 }
2135}