blob: 2c2f7ec1131172d1fe8c3f309b5d9d577354f1c9 [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"
Robert Phillipsbf25d432017-04-07 10:08:53 -040014#include "GrSurfaceProxyPriv.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000015#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000016#include "SkTSort.h"
Brian Salomon467921e2017-03-06 16:17:12 -050017#include "instanced/GLInstancedRendering.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000018
bsalomon682c2692015-05-22 14:01:46 -070019GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
20 const GrGLContextInfo& ctxInfo,
21 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080022 fStandard = ctxInfo.standard();
23
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000025 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000026 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000027 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080028 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000030 fUnpackRowLengthSupport = false;
31 fUnpackFlipYSupport = false;
32 fPackRowLengthSupport = false;
33 fPackFlipYSupport = false;
34 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000035 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000036 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000037 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070038 fDirectStateAccessSupport = false;
39 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080040 fES2CompatibilitySupport = false;
csmartdalton4c18b622016-07-29 12:19:28 -070041 fDrawInstancedSupport = false;
cdalton06604b92016-02-05 10:09:51 -080042 fDrawIndirectSupport = false;
43 fMultiDrawIndirectSupport = false;
44 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080054 fSRGBDecodeDisableSupport = false;
brianosman851c2382016-12-07 10:03:25 -080055 fSRGBDecodeDisableAffectsMipmaps = false;
piotaixre4b23142014-10-02 10:57:53 -070056
Brian Salomone5e7eb12016-10-14 16:18:33 -040057 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080058
Brian Salomon94efbf52016-11-29 13:43:05 -050059 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070060
cdalton4cd67132015-06-10 19:23:46 -070061 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000062}
63
cdalton4cd67132015-06-10 19:23:46 -070064void GrGLCaps::init(const GrContextOptions& contextOptions,
65 const GrGLContextInfo& ctxInfo,
66 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000067 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000068 GrGLVersion version = ctxInfo.version();
69
bsalomon@google.combcce8922013-03-25 15:38:39 +000070 /**************************************************************************
71 * Caps specific to GrGLCaps
72 **************************************************************************/
73
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000074 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000075 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
76 &fMaxFragmentUniformVectors);
77 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000078 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000079 GrGLint max;
80 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
81 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000082 if (version >= GR_GL_VER(3, 2)) {
83 GrGLint profileMask;
84 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
85 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
86 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000087 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000088 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000089
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000090 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000091 fUnpackRowLengthSupport = true;
92 fUnpackFlipYSupport = false;
93 fPackRowLengthSupport = true;
94 fPackFlipYSupport = false;
95 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000096 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
97 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000098 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000099 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
100 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000101 fPackFlipYSupport =
102 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
103 }
104
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000105 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000106 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
107
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000108 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700109 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
110 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
111 ctxInfo.hasExtension("GL_NV_texture_barrier");
112 } else {
113 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
114 }
115
cdaltoneb79eea2016-02-26 10:39:34 -0800116 if (kGL_GrGLStandard == standard) {
117 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
118 ctxInfo.hasExtension("GL_ARB_texture_multisample");
119 } else {
120 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
121 }
122
Brian Salomon0ee6f952017-01-19 15:52:24 -0500123 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800124 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500125 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800126 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000127 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
128 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800129 } else {
130 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
131 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000132 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000133 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000134 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000135 ctxInfo.hasExtension("GL_ARB_imaging");
136
egdaniel9250d242015-05-18 13:04:26 -0700137 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
138 // Thus we are blacklisting this extension for now on Adreno4xx devices.
139 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
140 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
141 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
142 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000143 fDiscardRenderTargetSupport = true;
144 fInvalidateFBType = kInvalidate_InvalidateFBType;
145 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
146 fDiscardRenderTargetSupport = true;
147 fInvalidateFBType = kDiscard_InvalidateFBType;
148 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000149
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000150 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
151 fFullClearIsFree = true;
152 }
153
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000154 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000155 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800156 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
157 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000158 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000159 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
160 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000161 }
162
cdalton626e1ff2015-06-12 13:56:46 -0700163 if (kGL_GrGLStandard == standard) {
164 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
165 } else {
166 fDirectStateAccessSupport = false;
167 }
168
169 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
170 fDebugSupport = true;
171 } else {
172 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
173 }
174
jvanverth3f801cb2014-12-16 09:49:38 -0800175 if (kGL_GrGLStandard == standard) {
176 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
177 }
178 else {
179 fES2CompatibilitySupport = true;
180 }
181
cdalton0edea2c2015-05-21 08:27:44 -0700182 if (kGL_GrGLStandard == standard) {
183 fMultisampleDisableSupport = true;
184 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700185 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700186 }
187
kkinnunend94708e2015-07-30 22:47:04 -0700188 if (kGL_GrGLStandard == standard) {
189 if (version >= GR_GL_VER(3, 0)) {
190 fBindFragDataLocationSupport = true;
191 }
192 } else {
193 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
194 fBindFragDataLocationSupport = true;
195 }
joshualittc1f56b52015-06-22 12:31:31 -0700196 }
197
joshualitt7bdd70a2015-10-01 06:28:11 -0700198 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
199
kkinnunene06ed252016-02-16 23:15:40 -0800200 if (kGL_GrGLStandard == standard) {
201 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
202 // We also require textureSize() support for rectangle 2D samplers which was added in
203 // GLSL 1.40.
204 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
205 fRectangleTextureSupport = true;
206 }
bsalomone179a912016-01-20 06:18:10 -0800207 }
kkinnunene06ed252016-02-16 23:15:40 -0800208 } else {
209 // Command buffer exposes this in GL ES context for Chromium reasons,
210 // but it should not be used. Also, at the time of writing command buffer
211 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800212 }
213
bsalomoncdee0092016-01-08 13:20:12 -0800214 if (kGL_GrGLStandard == standard) {
215 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
216 fTextureSwizzleSupport = true;
217 }
218 } else {
219 if (version >= GR_GL_VER(3,0)) {
220 fTextureSwizzleSupport = true;
221 }
222 }
223
cblume09bd2c02016-03-01 14:08:28 -0800224 if (kGL_GrGLStandard == standard) {
225 fMipMapLevelAndLodControlSupport = true;
226 } else if (kGLES_GrGLStandard == standard) {
227 if (version >= GR_GL_VER(3,0)) {
228 fMipMapLevelAndLodControlSupport = true;
229 }
230 }
231
bsalomon88c7b982015-07-31 11:20:16 -0700232#ifdef SK_BUILD_FOR_WIN
233 // We're assuming that on Windows Chromium we're using ANGLE.
234 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
235 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700236 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700237 fRGBA8888PixelsOpsAreSlow = isANGLE;
238 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
239 // check DX11 ANGLE.
240 fPartialFBOReadIsSlow = isANGLE;
241#endif
242
ericrkb4ecabd2016-03-11 15:18:20 -0800243 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
244 bool isMAC = false;
245#ifdef SK_BUILD_FOR_MAC
246 isMAC = true;
247#endif
248
249 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
250 // vis-versa.
251 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
252
cdalton4cd67132015-06-10 19:23:46 -0700253 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700254 * GrShaderCaps fields
255 **************************************************************************/
256
egdaniel0a482332015-10-26 08:59:10 -0700257 // This must be called after fCoreProfile is set on the GrGLCaps
258 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500259 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700260
csmartdalton008b9d82017-02-22 12:00:42 -0700261 if (!contextOptions.fSuppressPathRendering) {
262 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
263 }
egdaniel05ded892015-10-26 07:38:05 -0700264
265 // For now these two are equivalent but we could have dst read in shader via some other method.
266 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500267 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700268
269 // Enable supported shader-related caps
270 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500271 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700272 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
273 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500274 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700275 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500276 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700277 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500278 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800279 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700280 }
281 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500282 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700283
Brian Salomon1edc5b92016-11-29 13:43:46 -0500284 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700285 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800286
csmartdalton1d2aed02017-02-15 21:43:20 -0700287 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
288
Brian Salomon1edc5b92016-11-29 13:43:46 -0500289 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800290 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700291 }
292
cdalton9c3f1432016-03-11 10:07:37 -0800293 // Protect ourselves against tracking huge amounts of texture state.
294 static const uint8_t kMaxSaneSamplers = 32;
295 GrGLint maxSamplers;
296 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500297 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
298 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800299 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500300 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800301 }
302 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500303 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800304 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500305 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800306
Brian Salomonf26f7a02016-11-15 14:05:01 -0500307 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500308 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
309 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500310 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500311 shaderCaps->fImageLoadStoreSupport = true;
312 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500313 }
314 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500315 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500316 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500317 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500318 // Protect ourselves against tracking huge amounts of image state.
319 static constexpr int kMaxSaneImages = 4;
320 GrGLint maxUnits;
321 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500322 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500323 &shaderCaps->fMaxVertexImageStorages);
324 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500325 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500326 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500327 }
328 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500329 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500330 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500331 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500332 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500333 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
334 maxUnits), kMaxSaneImages);
335 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
336 shaderCaps->fMaxVertexImageStorages);
337 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
338 shaderCaps->fMaxGeometryImageStorages);
339 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
340 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500341 }
342
egdaniel05ded892015-10-26 07:38:05 -0700343 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700344 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000345 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700346
csmartdalton485a1202016-07-13 10:16:32 -0700347 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
348 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
349 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
350 // limit this decision to specific GPU families rather than basing it on the vendor alone.
351 if (!GR_GL_MUST_USE_VBO &&
352 !fIsCoreProfile &&
353 (kARM_GrGLVendor == ctxInfo.vendor() ||
354 kImagination_GrGLVendor == ctxInfo.vendor() ||
355 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
356 fPreferClientSideDynamicBuffers = true;
357 }
358
Eric Karl5c779752017-05-08 12:02:07 -0700359 if (!contextOptions.fAvoidStencilBuffers) {
360 // To reduce surface area, if we avoid stencil buffers, we also disable MSAA.
361 this->initFSAASupport(contextOptions, ctxInfo, gli);
362 this->initStencilSupport(ctxInfo);
363 }
cdalton1dd05422015-06-12 09:01:18 -0700364 this->initBlendEqationSupport(ctxInfo);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000365
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000366 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000367 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
368 // extension includes glMapBuffer.
369 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
370 fMapBufferFlags |= kSubset_MapFlag;
371 fMapBufferType = kMapBufferRange_MapBufferType;
372 } else {
373 fMapBufferType = kMapBuffer_MapBufferType;
374 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000375 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000376 // Unextended GLES2 doesn't have any buffer mapping.
377 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800378 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800379 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
380 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800381 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
382 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
383 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000384 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
385 fMapBufferFlags = kCanMap_MapFlag;
386 fMapBufferType = kMapBuffer_MapBufferType;
387 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000388 }
389
jvanverthd7a2c1f2015-12-07 07:36:44 -0800390 if (kGL_GrGLStandard == standard) {
391 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
392 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700393 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800394 } else {
395 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
396 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700397 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
398 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800399 }
400 }
401
joshualitte5b74c62015-06-01 14:17:47 -0700402 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
403 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700404 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700405#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500406 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
407 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
408 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700409 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700410#else
cdalton397536c2016-03-25 12:15:03 -0700411 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700412#endif
joshualitte5b74c62015-06-01 14:17:47 -0700413 }
414
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000415 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000416 fNPOTTextureTileSupport = true;
417 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000418 } else {
419 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000420 // ES3 has no limitations.
421 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
422 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000423 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
424 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
425 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
426 // to alllow arbitrary wrap modes, however.
427 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000428 }
429
bsalomone72bd022015-10-26 07:33:03 -0700430 // Using MIPs on this GPU seems to be a source of trouble.
431 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
432 fMipMapSupport = false;
433 }
434
bsalomon@google.combcce8922013-03-25 15:38:39 +0000435 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
436 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
437 // Our render targets are always created with textures as the color
438 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000439 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000440
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000441 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
442
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000443 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700444 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000445
robertphillips1b8e1b52015-06-24 06:54:10 -0700446#if 0
447 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
448 kQualcomm_GrGLVendor != ctxInfo.vendor();
449#endif
450
csmartdalton9bc11872016-08-09 12:42:47 -0700451 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
452 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700453 }
454
bsalomon63b21962014-11-05 07:05:34 -0800455 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800456 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400457 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
458 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800459 fUseDrawInsteadOfClear = true;
460 }
461
joshualitt83bc2292015-06-18 14:18:02 -0700462 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
463 fUseDrawInsteadOfPartialRenderTargetWrite = true;
464 }
465
bsalomonbabafcc2016-02-16 11:36:47 -0800466 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
467 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
468 fUseDrawInsteadOfPartialRenderTargetWrite = true;
469 fUseDrawInsteadOfAllRenderTargetWrites = true;
470 }
471
robertphillips63926682015-08-20 09:39:02 -0700472#ifdef SK_BUILD_FOR_WIN
473 // On ANGLE deferring flushes can lead to GPU starvation
474 fPreferVRAMUseOverFlushes = !isANGLE;
475#endif
476
bsalomon7dea7b72015-08-19 08:26:51 -0700477 if (kChromium_GrGLDriver == ctxInfo.driver()) {
478 fMustClearUploadedBufferData = true;
479 }
480
bsalomond08ea5f2015-02-20 06:58:13 -0800481 if (kGL_GrGLStandard == standard) {
482 // ARB allows mixed size FBO attachments, EXT does not.
483 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
484 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
485 fOversizedStencilSupport = true;
486 } else {
487 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
488 }
489 } else {
490 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
491 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
492 }
493
joshualitt58001552015-06-26 12:46:36 -0700494 if (kGL_GrGLStandard == standard) {
495 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
496 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700497 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700498 version >= GR_GL_VER(3, 2) ||
499 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
500 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
501 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700502 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700503 version >= GR_GL_VER(3, 0) ||
504 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
505 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
506 }
507
cdalton06604b92016-02-05 10:09:51 -0800508 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700509 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
510 ctxInfo.hasExtension("GL_ARB_draw_indirect");
511 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
512 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700513 (fDrawIndirectSupport &&
514 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700515 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700516 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800517 } else {
518 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700519 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
520 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
521 fBaseInstanceSupport = fDrawIndirectSupport &&
522 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700523 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800524 }
525
Brian Salomon1edc5b92016-11-29 13:43:46 -0500526 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800527
528 if (contextOptions.fUseShaderSwizzling) {
529 fTextureSwizzleSupport = false;
530 }
531
ethannicholas28ef4452016-03-25 09:26:03 -0700532 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700533 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
534 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700535 fSampleShadingSupport = true;
536 }
537 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
538 fSampleShadingSupport = true;
539 }
540
jvanverth84741b32016-09-30 08:39:02 -0700541 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
542 if (kGL_GrGLStandard == standard) {
543 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
544 fFenceSyncSupport = true;
545 }
546 } else if (version >= GR_GL_VER(3, 0)) {
547 fFenceSyncSupport = true;
548 }
549
Brian Osman2c2bc112017-02-28 10:02:49 -0500550 // Safely moving textures between contexts requires fences. The Windows Intel driver has a
551 // bug with deleting and reusing texture IDs across contexts, so disallow this feature.
552 fCrossContextTextureSupport = fFenceSyncSupport;
553#ifdef SK_BUILD_FOR_WIN
554 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
555 fCrossContextTextureSupport = false;
556 }
557#endif
558
brianosman131ff132016-06-07 14:22:44 -0700559 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
560 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
561 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
562 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700563 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700564 (contextOptions.fDoManualMipmapping ||
565 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700566 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
567 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700568 fDoManualMipmapping = true;
569 }
570
brianosman20471892016-12-02 06:43:32 -0800571 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800572 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
573 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800574
bsalomoncdee0092016-01-08 13:20:12 -0800575 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
576 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800577 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700578
579 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500580 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000581}
582
egdaniel472d44e2015-10-22 08:20:00 -0700583const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
584 bool isCoreProfile) {
585 switch (generation) {
586 case k110_GrGLSLGeneration:
587 if (kGLES_GrGLStandard == standard) {
588 // ES2s shader language is based on version 1.20 but is version
589 // 1.00 of the ES language.
590 return "#version 100\n";
591 } else {
592 SkASSERT(kGL_GrGLStandard == standard);
593 return "#version 110\n";
594 }
595 case k130_GrGLSLGeneration:
596 SkASSERT(kGL_GrGLStandard == standard);
597 return "#version 130\n";
598 case k140_GrGLSLGeneration:
599 SkASSERT(kGL_GrGLStandard == standard);
600 return "#version 140\n";
601 case k150_GrGLSLGeneration:
602 SkASSERT(kGL_GrGLStandard == standard);
603 if (isCoreProfile) {
604 return "#version 150\n";
605 } else {
606 return "#version 150 compatibility\n";
607 }
608 case k330_GrGLSLGeneration:
609 if (kGLES_GrGLStandard == standard) {
610 return "#version 300 es\n";
611 } else {
612 SkASSERT(kGL_GrGLStandard == standard);
613 if (isCoreProfile) {
614 return "#version 330\n";
615 } else {
616 return "#version 330 compatibility\n";
617 }
618 }
cdalton33ad7012016-02-22 07:55:44 -0800619 case k400_GrGLSLGeneration:
620 SkASSERT(kGL_GrGLStandard == standard);
621 if (isCoreProfile) {
622 return "#version 400\n";
623 } else {
624 return "#version 400 compatibility\n";
625 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500626 case k420_GrGLSLGeneration:
627 SkASSERT(kGL_GrGLStandard == standard);
628 if (isCoreProfile) {
629 return "#version 420\n";
630 }
631 else {
632 return "#version 420 compatibility\n";
633 }
egdaniel472d44e2015-10-22 08:20:00 -0700634 case k310es_GrGLSLGeneration:
635 SkASSERT(kGLES_GrGLStandard == standard);
636 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800637 case k320es_GrGLSLGeneration:
638 SkASSERT(kGLES_GrGLStandard == standard);
639 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700640 }
641 return "<no version>";
642}
643
egdaniel05ded892015-10-26 07:38:05 -0700644void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700645 GrGLStandard standard = ctxInfo.standard();
646 GrGLVersion version = ctxInfo.version();
647
648 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500649 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700650 **************************************************************************/
651
Brian Salomon1edc5b92016-11-29 13:43:46 -0500652 GrShaderCaps* shaderCaps = fShaderCaps.get();
653 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700654 if (kGLES_GrGLStandard == standard) {
655 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500656 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
657 shaderCaps->fFBFetchSupport = true;
658 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
659 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700660 }
661 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
662 // 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 -0500663 shaderCaps->fFBFetchNeedsCustomOutput = false;
664 shaderCaps->fFBFetchSupport = true;
665 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
666 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700667 }
668 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
669 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500670 shaderCaps->fFBFetchNeedsCustomOutput = false;
671 shaderCaps->fFBFetchSupport = true;
672 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
673 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700674 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500675 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700676 }
677
egdaniel7517e452016-09-20 13:00:26 -0700678 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
679 // Galaxy S7.
680 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
681 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500682 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700683 }
684
Brian Salomon1edc5b92016-11-29 13:43:46 -0500685 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700686
cdaltonc08f1962016-02-12 12:14:06 -0800687 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500688 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800689 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500690 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800691 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
692 }
693
694 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500695 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800696 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
697 } else {
698 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500699 shaderCaps->fNoPerspectiveInterpolationSupport = true;
700 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800701 "GL_NV_shader_noperspective_interpolation";
702 }
703 }
704
cdalton33ad7012016-02-22 07:55:44 -0800705 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500706 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800707 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
708 } else {
709 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500710 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800711 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500712 shaderCaps->fMultisampleInterpolationSupport = true;
713 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800714 "GL_OES_shader_multisample_interpolation";
715 }
716 }
717
718 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500719 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800720 } else {
721 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500722 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800723 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500724 shaderCaps->fSampleVariablesSupport = true;
725 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800726 }
727 }
728
Brian Salomon1edc5b92016-11-29 13:43:46 -0500729 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700730 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
731 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500732 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700733 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
734 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800735 }
736
egdaniel472d44e2015-10-22 08:20:00 -0700737 // 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 -0500738 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700739
740 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
741 // function that may require a gradient calculation inside a conditional block may return
742 // undefined results". This appears to be an issue with the 'any' call since even the simple
743 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
744 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500745 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700746
Brian Salomon1edc5b92016-11-29 13:43:46 -0500747 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
748 shaderCaps->fGLSLGeneration,
749 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800750
Brian Salomon1edc5b92016-11-29 13:43:46 -0500751 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
752 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800753 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800754
755 // Frag Coords Convention support is not part of ES
756 // Known issue on at least some Intel platforms:
757 // http://code.google.com/p/skia/issues/detail?id=946
758 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
759 kGLES_GrGLStandard != standard &&
760 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
761 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500762 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800763 }
764
765 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500766 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800767 }
768
cdalton9c3f1432016-03-11 10:07:37 -0800769 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
770 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500771 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800772 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
773 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
774 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500775 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800776 }
777 }
778
Brian Salomon1edc5b92016-11-29 13:43:46 -0500779 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800780 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500781 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800782 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500783 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800784 }
785 }
786
cdaltonc04ce672016-03-11 14:07:38 -0800787 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500788 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800789 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500790 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700791 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
792 }
793
Brian Salomon1edc5b92016-11-29 13:43:46 -0500794 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700795 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500796 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700797 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
798 } else {
799 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
800 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500801 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700802 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500803 shaderCaps->fTexelBufferSupport = true;
804 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700805 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500806 shaderCaps->fTexelBufferSupport = true;
807 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700808 }
cdaltonc04ce672016-03-11 14:07:38 -0800809 }
810 }
811
egdaniel8dcdedc2015-11-11 06:27:20 -0800812 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
813 // the abs first in a separate expression.
814 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500815 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800816 }
817
bsalomon7ea33f52015-11-22 14:51:00 -0800818 // 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 -0800819 // thus must us -1.0 * %s.x to work correctly
820 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500821 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800822 }
egdaniel138c2632016-08-17 10:59:00 -0700823
824 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
825 // the original dst color when reading the outColor even after being written to. By using a
826 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500827 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
828 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700829 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700830
831#ifdef SK_BUILD_FOR_MAC
832 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
833 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
834 // term plan for this WAR is for it to eventually be baked into SkSL.
835 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
836#endif
egdaniel472d44e2015-10-22 08:20:00 -0700837}
838
kkinnunencfe62e32015-07-01 02:58:50 -0700839bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700840 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
841
842 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700843 return false;
844 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700845
kkinnunencfe62e32015-07-01 02:58:50 -0700846 if (kGL_GrGLStandard == ctxInfo.standard()) {
847 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
848 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
849 return false;
850 }
851 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700852 if (!hasChromiumPathRendering &&
853 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700854 return false;
855 }
856 }
857 // We only support v1.3+ of GL_NV_path_rendering which allows us to
858 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
859 // additions are detected by checking the existence of the function.
860 // We also use *Then* functions that not all drivers might have. Check
861 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800862 if (!gli->fFunctions.fStencilThenCoverFillPath ||
863 !gli->fFunctions.fStencilThenCoverStrokePath ||
864 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
865 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
866 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700867 return false;
868 }
869 return true;
870}
bsalomon1aa20292016-01-22 08:16:09 -0800871
Brian Salomon71d9d842016-11-03 13:42:00 -0400872bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800873 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800874 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800875 std::function<bool ()> bindRenderTarget,
876 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400877 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800878 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400879 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800880 return false;
881 }
bsalomon7928ef62016-01-05 10:26:39 -0800882
Brian Salomonbf7b6202016-11-11 16:08:03 -0500883 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
884 return false;
885 }
886
bsalomon76148af2016-01-12 11:13:47 -0800887 GrGLenum readFormat;
888 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400889 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800890 return false;
891 }
892
bsalomon1aa20292016-01-22 08:16:09 -0800893 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800894 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
895 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
896 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
897 // 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 -0500898 // The manual does not seem to fully match the spec as the spec allows integer formats
899 // when the bound color buffer is an integer buffer. It doesn't specify which integer
900 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500901 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
902 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
903 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800904 return false;
905 }
906 // There is also a set of allowed types, but all the types we use are in the set:
907 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
908 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
909 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
910 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
911 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
912 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
913 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800914 return true;
piotaixre4b23142014-10-02 10:57:53 -0700915 }
bsalomon7928ef62016-01-05 10:26:39 -0800916
bsalomon76148af2016-01-12 11:13:47 -0800917 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500918 switch (fConfigTable[surfaceConfig].fFormatType) {
919 case kNormalizedFixedPoint_FormatType:
920 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
921 return true;
922 }
923 break;
924 case kInteger_FormatType:
925 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
926 return true;
927 }
928 break;
929 case kFloat_FormatType:
930 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
931 return true;
932 }
933 break;
bsalomon7928ef62016-01-05 10:26:39 -0800934 }
935
Brian Salomon71d9d842016-11-03 13:42:00 -0400936 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800937 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400938 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800939 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800940 if (!bindRenderTarget()) {
941 return false;
942 }
943 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
944 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800945 rpFormat->fFormat = format;
946 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800947 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800948 }
949
Brian Salomon71d9d842016-11-03 13:42:00 -0400950 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
951 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700952}
953
Eric Karl5c779752017-05-08 12:02:07 -0700954void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
955 const GrGLInterface* gli) {
956 // We need dual source blending and the ability to disable multisample in order to support mixed
957 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
958 // renderer is available and enabled; no other path renderers support this feature.
959 if (fMultisampleDisableSupport &&
960 this->shaderCaps()->dualSourceBlendingSupport() &&
961 this->shaderCaps()->pathRenderingSupport() &&
962 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
963 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
964 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
965 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
966 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
967 kChromium_GrGLDriver == ctxInfo.driver())) {
968 fDiscardRenderTargetSupport = false;
969 fInvalidateFBType = kNone_InvalidateFBType;
970 }
971 }
972
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000973 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000974 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
975 // ES3 driver bugs on at least one device with a tiled GPU (N10).
976 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
977 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
978 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
979 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800980 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700981 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -0400982 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -0400983 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
984 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -0400985 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000986 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
987 fMSFBOType = kES_Apple_MSFBOType;
988 }
bsalomon083617b2016-02-12 12:10:14 -0800989
990 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
991 // is available.
992 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -0400993 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -0700994 kNoMSAADst_BlitFramebufferFlag |
Brian Salomone5e7eb12016-10-14 16:18:33 -0400995 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -0400996 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
997 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -0800998 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
999 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001000 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1001 kResolveMustBeFull_BlitFrambufferFlag |
1002 kNoMSAADst_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001003 kNoFormatConversion_BlitFramebufferFlag |
1004 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001005 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001006 } else {
egdanieleed519e2016-01-15 11:36:18 -08001007 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001008 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001009 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001010 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1011 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1012 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001013 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001014 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1015 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001016 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001017 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001018 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001019 }
Eric Karl5c779752017-05-08 12:02:07 -07001020
1021 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
1022 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
1023 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
1024 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
1025 }
1026 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
1027 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
1028 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
1029 // This is to guard against platforms that may not support as many samples for
1030 // glRasterSamples as they do for framebuffers.
1031 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
1032 }
1033 fMaxColorSampleCount = fMaxStencilSampleCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001034}
1035
cdalton1dd05422015-06-12 09:01:18 -07001036void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001037 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001038
1039 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1040 // for now until its own blacklists can be updated.
1041 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001042 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001043 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001044 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001045 return;
1046 }
1047
1048 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1049 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001050 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001051 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1052 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001053 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001054 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1055 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1056 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1057 return;
1058 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1059 fBlendEquationSupport = kAdvanced_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")) {
1062 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001063 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001064 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1065 // slow on a particular platform.
1066 } else {
1067 return; // No advanced blend support.
1068 }
1069
1070 SkASSERT(this->advancedBlendEquationSupport());
1071
csmartdalton3b88a032016-08-04 14:43:49 -07001072 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1073 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1074 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001075 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1076 (1 << kColorBurn_GrBlendEquation);
1077 }
joel.liang9764c402015-07-09 19:46:18 -07001078 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1079 // Blacklist color-burn on ARM until the fix is released.
1080 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1081 }
cdalton1dd05422015-06-12 09:01:18 -07001082}
1083
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001084namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001085const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001086}
1087
Eric Karl5c779752017-05-08 12:02:07 -07001088void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001089
1090 // Build up list of legal stencil formats (though perhaps not supported on
1091 // the particular gpu/driver) from most preferred to least.
1092
1093 // these consts are in order of most preferred to least preferred
1094 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1095
1096 static const StencilFormat
1097 // internal Format stencil bits total bits packed?
1098 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1099 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1100 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1101 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001102 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001103 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1104
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001105 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001106 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001107 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001108 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1109 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1110
1111 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1112 // require FBO support we can expect these are legal formats and don't
1113 // check. These also all support the unsized GL_STENCIL_INDEX.
1114 fStencilFormats.push_back() = gS8;
1115 fStencilFormats.push_back() = gS16;
1116 if (supportsPackedDS) {
1117 fStencilFormats.push_back() = gD24S8;
1118 }
1119 fStencilFormats.push_back() = gS4;
1120 if (supportsPackedDS) {
1121 fStencilFormats.push_back() = gDS;
1122 }
1123 } else {
1124 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1125 // for other formats.
1126 // ES doesn't support using the unsized format.
1127
1128 fStencilFormats.push_back() = gS8;
1129 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001130 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1131 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001132 fStencilFormats.push_back() = gD24S8;
1133 }
1134 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1135 fStencilFormats.push_back() = gS4;
1136 }
1137 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001138}
1139
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001140SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001141
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001142 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001143
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001144 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001145 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001146 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001147 i,
1148 fStencilFormats[i].fStencilBits,
1149 fStencilFormats[i].fTotalBits);
1150 }
1151
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001152 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001153 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001154 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001155 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001156 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001157 "IMG MS To Texture",
1158 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001159 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001160 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001161 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001162 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1163 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1164 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1165 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1166 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1167 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001168 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001169
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001170 static const char* kInvalidateFBTypeStr[] = {
1171 "None",
1172 "Discard",
1173 "Invalidate",
1174 };
1175 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1176 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1177 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1178 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001179
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001180 static const char* kMapBufferTypeStr[] = {
1181 "None",
1182 "MapBuffer",
1183 "MapBufferRange",
1184 "Chromium",
1185 };
1186 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1187 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1188 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1189 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1190 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1191
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001192 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001193 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001194 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001195 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001196 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001197 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1198 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1199 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1200 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001201
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001202 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001203 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1204 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001205 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001206 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1207 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001208 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001209 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1210 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1211 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001212 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1213 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001214 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001215 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001216 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001217 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001218 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001219
1220 r.append("Configs\n-------\n");
1221 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1222 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001223 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1224 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001225 i,
1226 fConfigTable[i].fFlags,
1227 fConfigTable[i].fFormats.fBaseInternalFormat,
1228 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001229 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1230 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001231 fConfigTable[i].fFormats.fExternalType,
1232 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001233 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001234 }
1235
jvanverthe9c0fc62015-04-29 11:18:05 -07001236 return r;
1237}
1238
jvanverthe9c0fc62015-04-29 11:18:05 -07001239static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1240 switch (p) {
1241 case kLow_GrSLPrecision:
1242 return GR_GL_LOW_FLOAT;
1243 case kMedium_GrSLPrecision:
1244 return GR_GL_MEDIUM_FLOAT;
1245 case kHigh_GrSLPrecision:
1246 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001247 default:
1248 SkFAIL("Unexpected precision type.");
1249 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001250 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001251}
1252
1253static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1254 switch (type) {
1255 case kVertex_GrShaderType:
1256 return GR_GL_VERTEX_SHADER;
1257 case kGeometry_GrShaderType:
1258 return GR_GL_GEOMETRY_SHADER;
1259 case kFragment_GrShaderType:
1260 return GR_GL_FRAGMENT_SHADER;
1261 }
1262 SkFAIL("Unknown shader type.");
1263 return -1;
1264}
1265
jvanverthcba99b82015-06-24 06:59:57 -07001266void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001267 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001268 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001269 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1270 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1271 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1272 if (kGeometry_GrShaderType != s) {
1273 GrShaderType shaderType = static_cast<GrShaderType>(s);
1274 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001275 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001276 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001277 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1278 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1279 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1280 GrGLint range[2];
1281 GrGLint bits;
1282 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1283 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001284 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1285 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1286 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001287 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001288 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001289 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001290 else if (!shaderCaps->fShaderPrecisionVaries) {
1291 shaderCaps->fShaderPrecisionVaries =
1292 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001293 }
1294 }
1295 }
1296 }
1297 }
1298 }
1299 else {
1300 // 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 -05001301 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001302 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1303 if (kGeometry_GrShaderType != s) {
1304 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001305 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1306 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1307 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001308 }
1309 }
1310 }
1311 }
1312 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1313 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1314 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1315 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001316 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001317 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001318 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1319 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001320 }
1321 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001322 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001323}
1324
bsalomon41e4384e2016-01-08 09:12:44 -08001325bool GrGLCaps::bgraIsInternalFormat() const {
1326 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1327}
1328
bsalomon76148af2016-01-12 11:13:47 -08001329bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1330 GrGLenum* internalFormat, GrGLenum* externalFormat,
1331 GrGLenum* externalType) const {
1332 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1333 externalFormat, externalType)) {
1334 return false;
1335 }
1336 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1337 return true;
1338}
1339
1340bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1341 GrGLenum* internalFormat) const {
1342 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1343 return false;
1344 }
1345 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1346 return true;
1347}
1348
1349bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1350 GrGLenum* externalFormat, GrGLenum* externalType) const {
1351 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1352 externalFormat, externalType)) {
1353 return false;
1354 }
1355 return true;
1356}
1357
1358bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1359 if (GrPixelConfigIsCompressed(config)) {
1360 return false;
1361 }
1362 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1363 return true;
1364}
1365
1366bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1367 ExternalFormatUsage usage, GrGLenum* externalFormat,
1368 GrGLenum* externalType) const {
1369 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001370 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001371 return false;
1372 }
1373
1374 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1375 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1376
1377 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1378 // made to work in many cases using glPixelStore and what not but is not needed currently.
1379 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1380 return false;
1381 }
1382
1383 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1384 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1385
bsalomone9573312016-01-25 14:33:25 -08001386 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1387 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1388 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1389 // texture, not the red component.
1390 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1391 if (this->textureRedSupport()) {
1392 SkASSERT(GR_GL_RED == *externalFormat);
1393 *externalFormat = GR_GL_ALPHA;
1394 }
1395 }
1396
bsalomon76148af2016-01-12 11:13:47 -08001397 return true;
1398}
1399
brianosman20471892016-12-02 06:43:32 -08001400void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1401 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001402 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001403 /*
1404 Comments on renderability of configs on various GL versions.
1405 OpenGL < 3.0:
1406 no built in support for render targets.
1407 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1408 format RGB, RGBA and NV float formats we don't use.
1409 This is the following:
1410 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1411 RGB10_A2, RGBA12,RGBA16
1412 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1413 since they aren't required by later standards and the driver can simply return
1414 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1415 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1416 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1417 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1418 This adds a lot of additional renderable sized formats, including ALPHA8.
1419 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1420 16F, 32I, 32UI, and 32F variants).
1421 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1422
1423 For both the above extensions we limit ourselves to those that are also required by
1424 OpenGL 3.0.
1425
1426 OpenGL 3.0:
1427 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1428 but are not required to be supported as renderable textures/renderbuffer.
1429 Required renderable color formats:
1430 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1431 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1432 RGB10_A2.
1433 - R11F_G11F_B10F.
1434 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1435 and RG8UI.
1436 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1437 - ALPHA8
1438
1439 OpenGL 3.1, 3.2, 3.3
1440 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1441 OpengGL 3.3, 4.0, 4.1
1442 Adds RGB10_A2UI.
1443 OpengGL 4.2
1444 Adds
1445 - RGB5_A1, RGBA4
1446 - RGB565
1447 OpenGL 4.4
1448 Does away with the separate list and adds a column to the sized internal color format
1449 table. However, no new formats become required color renderable.
1450
1451 ES 2.0
1452 color renderable: RGBA4, RGB5_A1, RGB565
1453 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1454 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1455 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1456 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1457 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1458 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1459
1460 ES 3.0
1461 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1462 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1463 RGB5_A1.
1464 - RGB8 and RGB565.
1465 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1466 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1467 ES 3.1
1468 Adds RGB10_A2, RGB10_A2UI,
1469 ES 3.2
1470 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1471 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001472 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1473 ConfigInfo::kFBOColorAttachment_Flag;
1474 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001475 if (kNone_MSFBOType != fMSFBOType) {
1476 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1477 }
bsalomon41e4384e2016-01-08 09:12:44 -08001478 GrGLStandard standard = ctxInfo.standard();
1479 GrGLVersion version = ctxInfo.version();
1480
cblume790d5132016-02-29 11:13:29 -08001481 bool texStorageSupported = false;
1482 if (kGL_GrGLStandard == standard) {
1483 // The EXT version can apply to either GL or GLES.
1484 texStorageSupported = version >= GR_GL_VER(4,2) ||
1485 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1486 ctxInfo.hasExtension("GL_EXT_texture_storage");
1487 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001488 texStorageSupported = version >= GR_GL_VER(3,0) ||
1489 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001490 }
1491
1492 // TODO: remove after command buffer supports full ES 3.0
1493 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1494 kChromium_GrGLDriver == ctxInfo.driver()) {
1495 texStorageSupported = false;
1496 }
1497
cdalton74b8d322016-04-11 14:47:28 -07001498 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1499
bsalomon30447372015-12-21 09:03:05 -08001500 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1501 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001502 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001503 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001504 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001505 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001506
1507 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1508 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001509 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1510 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001511 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001512 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001513 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1514 if (kGL_GrGLStandard == standard) {
1515 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1516 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001517 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001518 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1519 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1520 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1521 }
egdaniel4999df82016-01-07 17:06:04 -08001522 }
cblume790d5132016-02-29 11:13:29 -08001523 if (texStorageSupported) {
1524 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1525 }
cdalton74b8d322016-04-11 14:47:28 -07001526 if (texelBufferSupport) {
1527 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1528 }
bsalomoncdee0092016-01-08 13:20:12 -08001529 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001530
bsalomon76148af2016-01-12 11:13:47 -08001531 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1532 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001533 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001534 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001535 if (kGL_GrGLStandard == standard) {
1536 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1537 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1538 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1539 // Since the internal format is RGBA8, it is also renderable.
1540 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1541 allRenderFlags;
1542 }
1543 } else {
1544 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1545 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1546 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1547 // The APPLE extension doesn't make this renderable.
1548 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1549 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1550 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1551 // Though, that seems to not be the case if the texture storage extension is
1552 // present. The specs don't exactly make that clear.
1553 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1554 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1555 }
1556 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1557 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001558 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001559 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001560 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001561 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1562 ConfigInfo::kRenderableWithMSAA_Flag;
1563 }
1564 }
1565 }
cblume790d5132016-02-29 11:13:29 -08001566 if (texStorageSupported) {
1567 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1568 }
bsalomoncdee0092016-01-08 13:20:12 -08001569 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001570
brianosmana6359362016-03-21 06:55:37 -07001571 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001572 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001573 if (kGL_GrGLStandard == standard) {
1574 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001575 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001576 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1577 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1578 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001579 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001580 }
1581 }
1582 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001583 if (fSRGBSupport) {
1584 fSRGBWriteControl = true;
1585 }
bsalomon41e4384e2016-01-08 09:12:44 -08001586 } else {
brianosman20471892016-12-02 06:43:32 -08001587 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1588#if defined(SK_CPU_X86)
1589 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1590 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1591 // blacklist that device (and any others that might be sharing the same driver).
1592 fSRGBSupport = false;
1593 }
1594#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001595 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1596 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001597 // See https://bug.skia.org/5329 for Adreno4xx issue.
1598 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1599 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001600 }
brianosman20471892016-12-02 06:43:32 -08001601 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1602 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1603 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001604 fSRGBSupport = false;
1605 }
brianosman20471892016-12-02 06:43:32 -08001606
1607 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1608 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1609 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1610 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1611 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1612 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1613 // affects Windows.
1614 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1615 fSRGBSupport = false;
1616 }
1617
bsalomon30447372015-12-21 09:03:05 -08001618 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1619 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1620 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1621 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001622 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1623 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001624 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001625 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001626 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001627 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1628 allRenderFlags;
1629 }
cblume790d5132016-02-29 11:13:29 -08001630 if (texStorageSupported) {
1631 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1632 }
bsalomoncdee0092016-01-08 13:20:12 -08001633 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001634
brianosmana6359362016-03-21 06:55:37 -07001635 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1636 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1637 // is in this format, for example).
1638 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1639 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1640 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1641 // external format is GL_BGRA.
1642 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1643 GR_GL_BGRA;
1644 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1645 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1646 if (fSRGBSupport) {
1647 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1648 allRenderFlags;
1649 }
1650 if (texStorageSupported) {
1651 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1652 }
1653 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1654
Brian Salomonbf7b6202016-11-11 16:08:03 -05001655 bool hasIntegerTextures;
1656 if (standard == kGL_GrGLStandard) {
1657 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1658 ctxInfo.hasExtension("GL_EXT_texture_integer");
1659 } else {
1660 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1661 }
1662 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1663 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1664 hasIntegerTextures = false;
1665 }
1666 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1667 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1668 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1669 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1670 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1671 // We currently only support using integer textures as srcs, not for rendering (even though GL
1672 // allows it).
1673 if (hasIntegerTextures) {
1674 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1675 ConfigInfo::kFBOColorAttachment_Flag;
1676 if (texStorageSupported) {
1677 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1678 ConfigInfo::kCanUseTexStorage_Flag;
1679 }
1680 }
1681
bsalomon30447372015-12-21 09:03:05 -08001682 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1683 if (this->ES2CompatibilitySupport()) {
1684 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1685 } else {
1686 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1687 }
bsalomon76148af2016-01-12 11:13:47 -08001688 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1689 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001690 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001691 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001692 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1693 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001694 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001695 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1696 }
1697 } else {
1698 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1699 }
cblume790d5132016-02-29 11:13:29 -08001700 // 565 is not a sized internal format on desktop GL. So on desktop with
1701 // 565 we always use an unsized internal format to let the system pick
1702 // the best sized format to convert the 565 data to. Since TexStorage
1703 // only allows sized internal formats we disallow it.
1704 //
1705 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1706 // update.
1707 if (texStorageSupported && kGL_GrGLStandard != standard) {
1708 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1709 }
bsalomoncdee0092016-01-08 13:20:12 -08001710 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001711
1712 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1713 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001714 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1715 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001716 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001717 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001718 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1719 if (kGL_GrGLStandard == standard) {
1720 if (version >= GR_GL_VER(4, 2)) {
1721 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1722 }
1723 } else {
1724 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1725 }
cblume790d5132016-02-29 11:13:29 -08001726 if (texStorageSupported) {
1727 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1728 }
bsalomoncdee0092016-01-08 13:20:12 -08001729 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001730
Brian Osmanf4faccd2017-01-10 16:53:58 -05001731 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1732 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1733 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001734 if (this->textureRedSupport()) {
1735 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1736 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001737 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1738 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001739 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001740 if (texelBufferSupport) {
1741 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1742 }
bsalomon30447372015-12-21 09:03:05 -08001743 } else {
1744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1745 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001746 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1747 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001748 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001749 }
bsalomon40170072016-05-05 14:40:03 -07001750 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001751 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1752 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001753 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001754 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1755 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1756 }
cblume790d5132016-02-29 11:13:29 -08001757 if (texStorageSupported) {
1758 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1759 }
bsalomon41e4384e2016-01-08 09:12:44 -08001760
Brian Osmanf4faccd2017-01-10 16:53:58 -05001761 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1762 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1763 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001764 if (this->textureRedSupport()) {
1765 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1766 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1767 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1768 GR_GL_RED;
1769 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1770 if (texelBufferSupport) {
1771 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1772 }
1773 } else {
1774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1775 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1776 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1777 GR_GL_LUMINANCE;
1778 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1779 }
Brian Osman986563b2017-01-10 14:20:02 -05001780#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1781 if (this->textureRedSupport() ||
1782 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1783 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1784 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1785 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1786 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1787 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1788 }
1789#endif
1790 if (texStorageSupported) {
1791 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1792 }
1793
bsalomon41e4384e2016-01-08 09:12:44 -08001794 // Check for [half] floating point texture support
1795 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1796 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1797 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1798 bool hasFPTextures = false;
1799 bool hasHalfFPTextures = false;
1800 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001801 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001802
1803 if (kGL_GrGLStandard == standard) {
1804 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1805 hasFPTextures = true;
1806 hasHalfFPTextures = true;
1807 }
1808 } else {
1809 if (version >= GR_GL_VER(3, 1)) {
1810 hasFPTextures = true;
1811 hasHalfFPTextures = true;
1812 } else {
1813 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1814 ctxInfo.hasExtension("GL_OES_texture_float")) {
1815 hasFPTextures = true;
1816 }
1817 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1818 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1819 hasHalfFPTextures = true;
1820 }
1821 }
1822 }
bsalomon30447372015-12-21 09:03:05 -08001823
csmartdalton6aa0e112017-02-08 16:14:11 -05001824 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1825 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1826 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1827 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1828 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1829 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1830 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1831 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1832 if (hasFPTextures) {
1833 fConfigTable[fpconfig].fFlags = ConfigInfo::kTextureable_Flag;
1834 // For now we only enable rendering to float on desktop, because on ES we'd have to
1835 // solve many precision issues and no clients actually want this yet.
1836 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1837 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1838 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1839 }
bsalomon41e4384e2016-01-08 09:12:44 -08001840 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001841 if (texStorageSupported) {
1842 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1843 }
1844 if (texelBufferSupport) {
1845 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1846 }
1847 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001848 }
bsalomon30447372015-12-21 09:03:05 -08001849
1850 if (this->textureRedSupport()) {
1851 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1852 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001853 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1854 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001855 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001856 if (texelBufferSupport) {
1857 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1858 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1859 }
bsalomon30447372015-12-21 09:03:05 -08001860 } else {
1861 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1862 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001863 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1864 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001865 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001866 }
Brian Osman3a887252016-11-17 13:27:31 -05001867 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1868 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1869 // returned when we query, but that turns into a bigger refactor, so just work around it.
1870 if (kGL_GrGLStandard == ctxInfo.standard() ||
1871 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001872 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1873 } else {
1874 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1875 }
bsalomon7928ef62016-01-05 10:26:39 -08001876 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001877 if (texStorageSupported) {
1878 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1879 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001880 if (hasHalfFPTextures) {
1881 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1882 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1883 // GL_RED internal format.
1884 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1885 (this->textureRedSupport() &&
1886 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1887 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1888 }
1889 }
bsalomon30447372015-12-21 09:03:05 -08001890
1891 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1892 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001893 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1894 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001895 // See comment above, re: ANGLE and ES3.
1896 if (kGL_GrGLStandard == ctxInfo.standard() ||
1897 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001898 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1899 } else {
1900 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1901 }
bsalomon7928ef62016-01-05 10:26:39 -08001902 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001903 if (hasHalfFPTextures) {
1904 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1905 // ES requires 3.2 or EXT_color_buffer_half_float.
1906 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1907 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1908 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1909 }
1910 }
cblume790d5132016-02-29 11:13:29 -08001911 if (texStorageSupported) {
1912 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1913 }
cdalton74b8d322016-04-11 14:47:28 -07001914 if (texelBufferSupport) {
1915 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1916 }
bsalomoncdee0092016-01-08 13:20:12 -08001917 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001918
1919 // Compressed texture support
1920
1921 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1922 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1923
1924 // TODO: Fix command buffer bindings and remove this.
1925 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001926
1927 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001928 // Below we set the external formats and types to 0.
Robert Phillipsb34727f2017-02-10 14:44:58 -05001929 {
1930 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1931 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat =
1932 GR_GL_COMPRESSED_ETC1_RGB8;
1933 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
1934 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
1935 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1936 if (kGL_GrGLStandard == standard) {
1937 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1938 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1939 }
1940 } else {
1941 if (version >= GR_GL_VER(3, 0) ||
1942 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1943 // ETC2 is a superset of ETC1, so we can just check for that, too.
1944 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1945 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1946 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1947 }
bsalomon41e4384e2016-01-08 09:12:44 -08001948 }
Robert Phillipsb34727f2017-02-10 14:44:58 -05001949 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001950 }
bsalomon30447372015-12-21 09:03:05 -08001951
1952 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1953
1954 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001955 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1956 ctxInfo.version() >= GR_GL_VER(3,0));
1957 // All ES versions (thus far) require sized internal formats for render buffers.
1958 // TODO: Always use sized internal format?
1959 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1960
bsalomon30447372015-12-21 09:03:05 -08001961 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001962 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1963 // param to glTex[Sub]Image.
1964 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1965 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1966 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1967 fConfigTable[i].fFormats.fSizedInternalFormat :
1968 fConfigTable[i].fFormats.fBaseInternalFormat;
1969 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001970 fConfigTable[i].fFormats.fSizedInternalFormat :
1971 fConfigTable[i].fFormats.fBaseInternalFormat;
1972 }
1973 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1974 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1975 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1976 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1977 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001978 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001979 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001980
1981 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1982 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1983 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1984 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001985 }
1986
1987 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1988 // as a base format.
1989 // GL_EXT_texture_format_BGRA8888:
1990 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1991 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1992 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001993 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001994 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1995 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1996 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001997 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001998 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1999 }
2000
bsalomoncdee0092016-01-08 13:20:12 -08002001 // If we don't have texture swizzle support then the shader generator must insert the
2002 // swizzle into shader code.
2003 if (!this->textureSwizzleSupport()) {
2004 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002005 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002006 }
2007 }
2008
bsalomon7f9b2e42016-01-12 13:29:26 -08002009 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2010 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2011 // gets written to the single component.
2012 if (this->textureRedSupport()) {
2013 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2014 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2015 if (GrPixelConfigIsAlphaOnly(config) &&
2016 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002017 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002018 }
2019 }
2020 }
2021
Brian Salomonf9f45122016-11-29 11:59:17 -05002022 // We currently only support images on rgba textures formats. We could add additional formats
2023 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2024 // (e.g. where we use GL_RED textures to implement alpha configs).
2025 if (this->shaderCaps()->imageLoadStoreSupport()) {
2026 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2027 ConfigInfo::kCanUseAsImageStorage_Flag;
2028 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2029 // immutable via TexStorage. We create non-integer textures as mutable textures using
2030 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2031 // storage support for non-integer textures.
2032 if (kGL_GrGLStandard == ctxInfo.standard()) {
2033 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2034 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2035 ConfigInfo::kCanUseAsImageStorage_Flag;
2036 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2037 }
2038 }
2039
bsalomon30447372015-12-21 09:03:05 -08002040#ifdef SK_DEBUG
2041 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002042 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002043 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002044 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2045 // renderable.
2046 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2047 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002048 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2049 fConfigTable[i].fFormats.fBaseInternalFormat);
2050 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002051 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002052 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2053 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2054 fConfigTable[i].fFormats.fExternalFormat[j]);
2055 }
2056 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002057 }
2058#endif
2059}
2060
Robert Phillipsbf25d432017-04-07 10:08:53 -04002061bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Eric Karl74480882017-04-03 14:49:05 -07002062 bool* rectsMustMatch, bool* disallowSubrect) const {
2063 // By default, we don't require rects to match.
2064 *rectsMustMatch = false;
2065
2066 // By default, we allow subrects.
2067 *disallowSubrect = false;
2068
Brian Salomon467921e2017-03-06 16:17:12 -05002069 // If the src is a texture, we can implement the blit as a draw assuming the config is
2070 // renderable.
Robert Phillipsbf25d432017-04-07 10:08:53 -04002071 if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) {
2072 desc->fOrigin = kBottomLeft_GrSurfaceOrigin;
Brian Salomon467921e2017-03-06 16:17:12 -05002073 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2074 desc->fConfig = src->config();
2075 return true;
2076 }
2077
Robert Phillipsbf25d432017-04-07 10:08:53 -04002078 {
2079 // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were
2080 // wrapped. In that case the proxy would already be instantiated.
2081 const GrTexture* srcTexture = src->priv().peekTexture();
2082 const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture);
2083 if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) {
2084 // Not supported for FBO blit or CopyTexSubImage
2085 return false;
2086 }
Brian Salomon467921e2017-03-06 16:17:12 -05002087 }
2088
2089 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2090 // possible and we return false to fallback to creating a render target dst for render-to-
2091 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2092 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2093 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002094 bool rectsMustMatchForBlitFramebuffer = false;
2095 bool disallowSubrectForBlitFramebuffer = false;
2096 if (src->numColorSamples() &&
2097 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2098 rectsMustMatchForBlitFramebuffer = true;
2099 disallowSubrectForBlitFramebuffer = true;
2100 // Mirroring causes rects to mismatch later, don't allow it.
2101 originForBlitFramebuffer = src->origin();
2102 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2103 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2104 rectsMustMatchForBlitFramebuffer = true;
2105 // Mirroring causes rects to mismatch later, don't allow it.
2106 originForBlitFramebuffer = src->origin();
2107 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002108 originForBlitFramebuffer = src->origin();
2109 }
2110
2111 // Check for format issues with glCopyTexSubImage2D
2112 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2113 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2114 // then we set up for that, otherwise fail.
2115 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2116 desc->fOrigin = originForBlitFramebuffer;
2117 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002118 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2119 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002120 return true;
2121 }
2122 return false;
2123 }
2124
Robert Phillipsbf25d432017-04-07 10:08:53 -04002125 {
2126 bool srcIsMSAARenderbuffer = src->desc().fSampleCnt > 0 && this->usesMSAARenderBuffers();
2127 if (srcIsMSAARenderbuffer) {
2128 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO
2129 // blit or fail.
2130 if (this->canConfigBeFBOColorAttachment(src->config())) {
2131 desc->fOrigin = originForBlitFramebuffer;
2132 desc->fConfig = src->config();
2133 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2134 *disallowSubrect = disallowSubrectForBlitFramebuffer;
2135 return true;
2136 }
2137 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05002138 }
Brian Salomon467921e2017-03-06 16:17:12 -05002139 }
2140
2141 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2142 desc->fConfig = src->config();
2143 desc->fOrigin = src->origin();
2144 desc->fFlags = kNone_GrSurfaceFlags;
2145 return true;
2146}
2147
csmartdaltone0d36292016-07-29 08:14:20 -07002148void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2149 if (options.fEnableInstancedRendering) {
2150 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2151#ifndef SK_BUILD_FOR_MAC
2152 // OS X doesn't seem to write correctly to floating point textures when using
2153 // glDraw*Indirect, regardless of the underlying GPU.
2154 fAvoidInstancedDrawsToFPTargets = true;
2155#endif
2156 }
2157}