blob: 4c252215a95a2c3c3605a8545cffab5cbdd6966a [file] [log] [blame]
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8
9#include "GrGLCaps.h"
joshualittb4384b92014-10-21 12:53:15 -070010
egdanielb7e7d572015-11-04 04:23:53 -080011#include "GrContextOptions.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000012#include "GrGLContext.h"
bsalomon1aa20292016-01-22 08:16:09 -080013#include "GrGLRenderTarget.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050014#include "GrShaderCaps.h"
csmartdaltone0d36292016-07-29 08:14:20 -070015#include "instanced/GLInstancedRendering.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000016#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000017#include "SkTSort.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
Brian Salomon1edc5b92016-11-29 13:43:46 -0500261 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
egdaniel05ded892015-10-26 07:38:05 -0700262
263 // For now these two are equivalent but we could have dst read in shader via some other method.
264 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500265 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700266
267 // Enable supported shader-related caps
268 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500269 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700270 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
271 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500272 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700273 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500274 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700275 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500276 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800277 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700278 }
279 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500280 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700281
Brian Salomon1edc5b92016-11-29 13:43:46 -0500282 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700283 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800284
csmartdalton1d2aed02017-02-15 21:43:20 -0700285 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
286
Brian Salomon1edc5b92016-11-29 13:43:46 -0500287 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800288 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700289 }
290
ethannicholas22793252016-01-30 09:59:10 -0800291 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
292 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700293 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500294 &shaderCaps->fPixelLocalStorageSize);
295 shaderCaps->fPLSPathRenderingSupport = shaderCaps->fFBFetchSupport;
ethannicholas22793252016-01-30 09:59:10 -0800296 }
297 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500298 shaderCaps->fPixelLocalStorageSize = 0;
299 shaderCaps->fPLSPathRenderingSupport = false;
ethannicholas22793252016-01-30 09:59:10 -0800300 }
301
cdalton9c3f1432016-03-11 10:07:37 -0800302 // Protect ourselves against tracking huge amounts of texture state.
303 static const uint8_t kMaxSaneSamplers = 32;
304 GrGLint maxSamplers;
305 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500306 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
307 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800308 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500309 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800310 }
311 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500312 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800313 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500314 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800315
Brian Salomonf26f7a02016-11-15 14:05:01 -0500316 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500317 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
318 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500319 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500320 shaderCaps->fImageLoadStoreSupport = true;
321 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500322 }
323 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500324 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500325 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500326 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500327 // Protect ourselves against tracking huge amounts of image state.
328 static constexpr int kMaxSaneImages = 4;
329 GrGLint maxUnits;
330 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500331 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500332 &shaderCaps->fMaxVertexImageStorages);
333 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500334 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500335 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500336 }
337 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500338 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500339 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500340 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500341 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500342 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
343 maxUnits), kMaxSaneImages);
344 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
345 shaderCaps->fMaxVertexImageStorages);
346 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
347 shaderCaps->fMaxGeometryImageStorages);
348 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
349 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500350 }
351
egdaniel05ded892015-10-26 07:38:05 -0700352 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700353 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000354 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700355
cdalton63f6c1f2015-11-06 07:09:43 -0800356 // We need dual source blending and the ability to disable multisample in order to support mixed
357 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800358 if (fMultisampleDisableSupport &&
Brian Salomon1edc5b92016-11-29 13:43:46 -0500359 shaderCaps->dualSourceBlendingSupport() &&
egdanieleed519e2016-01-15 11:36:18 -0800360 fShaderCaps->pathRenderingSupport()) {
361 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800362 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800363 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800364 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
365 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800366 fDiscardRenderTargetSupport = false;
367 fInvalidateFBType = kNone_InvalidateFBType;
368 }
369 }
370
csmartdalton485a1202016-07-13 10:16:32 -0700371 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
372 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
373 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
374 // limit this decision to specific GPU families rather than basing it on the vendor alone.
375 if (!GR_GL_MUST_USE_VBO &&
376 !fIsCoreProfile &&
377 (kARM_GrGLVendor == ctxInfo.vendor() ||
378 kImagination_GrGLVendor == ctxInfo.vendor() ||
379 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
380 fPreferClientSideDynamicBuffers = true;
381 }
382
egdanieleed519e2016-01-15 11:36:18 -0800383 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700384 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700385 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700386 this->initStencilFormats(ctxInfo);
387
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000388 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000389 // we could also look for GL_ATI_separate_stencil extension or
390 // GL_EXT_stencil_two_side but they use different function signatures
391 // than GL2.0+ (and than each other).
392 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
393 // supported on GL 1.4 and higher or by extension
394 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
395 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
396 } else {
397 // ES 2 has two sided stencil and stencil wrap
398 fTwoSidedStencilSupport = true;
399 fStencilWrapOpsSupport = true;
400 }
401
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000402 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000403 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
404 // extension includes glMapBuffer.
405 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
406 fMapBufferFlags |= kSubset_MapFlag;
407 fMapBufferType = kMapBufferRange_MapBufferType;
408 } else {
409 fMapBufferType = kMapBuffer_MapBufferType;
410 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000411 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000412 // Unextended GLES2 doesn't have any buffer mapping.
413 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800414 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800415 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
416 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800417 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
418 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
419 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000420 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
421 fMapBufferFlags = kCanMap_MapFlag;
422 fMapBufferType = kMapBuffer_MapBufferType;
423 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000424 }
425
jvanverthd7a2c1f2015-12-07 07:36:44 -0800426 if (kGL_GrGLStandard == standard) {
427 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
428 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700429 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800430 } else {
431 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
432 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700433 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
434 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800435 }
436 }
437
joshualitte5b74c62015-06-01 14:17:47 -0700438 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
439 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700440 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700441#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500442 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
443 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
444 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700445 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700446#else
cdalton397536c2016-03-25 12:15:03 -0700447 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700448#endif
joshualitte5b74c62015-06-01 14:17:47 -0700449 }
450
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000451 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000452 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
453 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
454 fNPOTTextureTileSupport = true;
455 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000456 } else {
457 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000458 // ES3 has no limitations.
459 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
460 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000461 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
462 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
463 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
464 // to alllow arbitrary wrap modes, however.
465 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000466 }
467
bsalomone72bd022015-10-26 07:33:03 -0700468 // Using MIPs on this GPU seems to be a source of trouble.
469 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
470 fMipMapSupport = false;
471 }
472
bsalomon@google.combcce8922013-03-25 15:38:39 +0000473 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
474 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
475 // Our render targets are always created with textures as the color
476 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000477 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000478
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000479 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
480
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000481 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700482 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000483
robertphillips1b8e1b52015-06-24 06:54:10 -0700484#if 0
485 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
486 kQualcomm_GrGLVendor != ctxInfo.vendor();
487#endif
488
egdaniel05ded892015-10-26 07:38:05 -0700489 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000490 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800491 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000492 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800493 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000494 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800495 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
496 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
497 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
498 // This is to guard against platforms that may not support as many samples for
499 // glRasterSamples as they do for framebuffers.
500 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
501 }
502 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000503
csmartdalton9bc11872016-08-09 12:42:47 -0700504 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
505 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700506 }
507
bsalomon63b21962014-11-05 07:05:34 -0800508 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800509 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800510 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800511 fUseDrawInsteadOfClear = true;
512 }
513
joshualitt83bc2292015-06-18 14:18:02 -0700514 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
515 fUseDrawInsteadOfPartialRenderTargetWrite = true;
516 }
517
bsalomonbabafcc2016-02-16 11:36:47 -0800518 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
519 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
520 fUseDrawInsteadOfPartialRenderTargetWrite = true;
521 fUseDrawInsteadOfAllRenderTargetWrites = true;
522 }
523
robertphillips63926682015-08-20 09:39:02 -0700524#ifdef SK_BUILD_FOR_WIN
525 // On ANGLE deferring flushes can lead to GPU starvation
526 fPreferVRAMUseOverFlushes = !isANGLE;
527#endif
528
bsalomon7dea7b72015-08-19 08:26:51 -0700529 if (kChromium_GrGLDriver == ctxInfo.driver()) {
530 fMustClearUploadedBufferData = true;
531 }
532
bsalomond08ea5f2015-02-20 06:58:13 -0800533 if (kGL_GrGLStandard == standard) {
534 // ARB allows mixed size FBO attachments, EXT does not.
535 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
536 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
537 fOversizedStencilSupport = true;
538 } else {
539 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
540 }
541 } else {
542 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
543 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
544 }
545
joshualitt58001552015-06-26 12:46:36 -0700546 if (kGL_GrGLStandard == standard) {
547 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
548 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700549 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700550 version >= GR_GL_VER(3, 2) ||
551 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
552 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
553 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700554 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700555 version >= GR_GL_VER(3, 0) ||
556 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
557 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
558 }
559
cdalton06604b92016-02-05 10:09:51 -0800560 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700561 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
562 ctxInfo.hasExtension("GL_ARB_draw_indirect");
563 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
564 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700565 (fDrawIndirectSupport &&
566 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700567 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700568 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800569 } else {
570 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700571 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
572 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
573 fBaseInstanceSupport = fDrawIndirectSupport &&
574 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700575 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800576 }
577
Brian Salomon1edc5b92016-11-29 13:43:46 -0500578 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800579
580 if (contextOptions.fUseShaderSwizzling) {
581 fTextureSwizzleSupport = false;
582 }
583
ethannicholas28ef4452016-03-25 09:26:03 -0700584 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700585 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
586 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700587 fSampleShadingSupport = true;
588 }
589 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
590 fSampleShadingSupport = true;
591 }
592
jvanverth84741b32016-09-30 08:39:02 -0700593 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
594 if (kGL_GrGLStandard == standard) {
595 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
596 fFenceSyncSupport = true;
597 }
598 } else if (version >= GR_GL_VER(3, 0)) {
599 fFenceSyncSupport = true;
600 }
601
brianosman131ff132016-06-07 14:22:44 -0700602 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
603 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
604 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
605 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700606 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700607 (contextOptions.fDoManualMipmapping ||
608 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700609 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
610 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700611 fDoManualMipmapping = true;
612 }
613
brianosman20471892016-12-02 06:43:32 -0800614 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800615 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
616 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800617
bsalomoncdee0092016-01-08 13:20:12 -0800618 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
619 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800620 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700621
622 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500623 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000624}
625
egdaniel472d44e2015-10-22 08:20:00 -0700626const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
627 bool isCoreProfile) {
628 switch (generation) {
629 case k110_GrGLSLGeneration:
630 if (kGLES_GrGLStandard == standard) {
631 // ES2s shader language is based on version 1.20 but is version
632 // 1.00 of the ES language.
633 return "#version 100\n";
634 } else {
635 SkASSERT(kGL_GrGLStandard == standard);
636 return "#version 110\n";
637 }
638 case k130_GrGLSLGeneration:
639 SkASSERT(kGL_GrGLStandard == standard);
640 return "#version 130\n";
641 case k140_GrGLSLGeneration:
642 SkASSERT(kGL_GrGLStandard == standard);
643 return "#version 140\n";
644 case k150_GrGLSLGeneration:
645 SkASSERT(kGL_GrGLStandard == standard);
646 if (isCoreProfile) {
647 return "#version 150\n";
648 } else {
649 return "#version 150 compatibility\n";
650 }
651 case k330_GrGLSLGeneration:
652 if (kGLES_GrGLStandard == standard) {
653 return "#version 300 es\n";
654 } else {
655 SkASSERT(kGL_GrGLStandard == standard);
656 if (isCoreProfile) {
657 return "#version 330\n";
658 } else {
659 return "#version 330 compatibility\n";
660 }
661 }
cdalton33ad7012016-02-22 07:55:44 -0800662 case k400_GrGLSLGeneration:
663 SkASSERT(kGL_GrGLStandard == standard);
664 if (isCoreProfile) {
665 return "#version 400\n";
666 } else {
667 return "#version 400 compatibility\n";
668 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500669 case k420_GrGLSLGeneration:
670 SkASSERT(kGL_GrGLStandard == standard);
671 if (isCoreProfile) {
672 return "#version 420\n";
673 }
674 else {
675 return "#version 420 compatibility\n";
676 }
egdaniel472d44e2015-10-22 08:20:00 -0700677 case k310es_GrGLSLGeneration:
678 SkASSERT(kGLES_GrGLStandard == standard);
679 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800680 case k320es_GrGLSLGeneration:
681 SkASSERT(kGLES_GrGLStandard == standard);
682 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700683 }
684 return "<no version>";
685}
686
egdaniel05ded892015-10-26 07:38:05 -0700687void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700688 GrGLStandard standard = ctxInfo.standard();
689 GrGLVersion version = ctxInfo.version();
690
691 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500692 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700693 **************************************************************************/
694
Brian Salomon1edc5b92016-11-29 13:43:46 -0500695 GrShaderCaps* shaderCaps = fShaderCaps.get();
696 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700697 if (kGLES_GrGLStandard == standard) {
698 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500699 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
700 shaderCaps->fFBFetchSupport = true;
701 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
702 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700703 }
704 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
705 // 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 -0500706 shaderCaps->fFBFetchNeedsCustomOutput = false;
707 shaderCaps->fFBFetchSupport = true;
708 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
709 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700710 }
711 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
712 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500713 shaderCaps->fFBFetchNeedsCustomOutput = false;
714 shaderCaps->fFBFetchSupport = true;
715 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
716 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700717 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500718 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700719 }
720
egdaniel7517e452016-09-20 13:00:26 -0700721 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
722 // Galaxy S7.
723 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
724 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500725 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700726 }
727
Brian Salomon1edc5b92016-11-29 13:43:46 -0500728 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700729
cdaltonc08f1962016-02-12 12:14:06 -0800730 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500731 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800732 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500733 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800734 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
735 }
736
737 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500738 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800739 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
740 } else {
741 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500742 shaderCaps->fNoPerspectiveInterpolationSupport = true;
743 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800744 "GL_NV_shader_noperspective_interpolation";
745 }
746 }
747
cdalton33ad7012016-02-22 07:55:44 -0800748 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500749 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800750 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
751 } else {
752 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500753 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800754 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500755 shaderCaps->fMultisampleInterpolationSupport = true;
756 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800757 "GL_OES_shader_multisample_interpolation";
758 }
759 }
760
761 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500762 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800763 } else {
764 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500765 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800766 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500767 shaderCaps->fSampleVariablesSupport = true;
768 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800769 }
770 }
771
Brian Salomon1edc5b92016-11-29 13:43:46 -0500772 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700773 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
774 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500775 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700776 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
777 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800778 }
779
egdaniel472d44e2015-10-22 08:20:00 -0700780 // 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 -0500781 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700782
783 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
784 // function that may require a gradient calculation inside a conditional block may return
785 // undefined results". This appears to be an issue with the 'any' call since even the simple
786 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
787 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500788 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700789
Brian Salomon1edc5b92016-11-29 13:43:46 -0500790 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
791 shaderCaps->fGLSLGeneration,
792 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800793
Brian Salomon1edc5b92016-11-29 13:43:46 -0500794 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
795 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800796 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800797
798 // Frag Coords Convention support is not part of ES
799 // Known issue on at least some Intel platforms:
800 // http://code.google.com/p/skia/issues/detail?id=946
801 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
802 kGLES_GrGLStandard != standard &&
803 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
804 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500805 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800806 }
807
808 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500809 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800810 }
811
cdalton9c3f1432016-03-11 10:07:37 -0800812 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
813 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500814 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800815 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
816 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
817 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500818 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800819 }
820 }
821
Brian Salomon1edc5b92016-11-29 13:43:46 -0500822 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800823 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500824 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800825 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500826 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800827 }
828 }
829
cdaltonc04ce672016-03-11 14:07:38 -0800830 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500831 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800832 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500833 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700834 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
835 }
836
Brian Salomon1edc5b92016-11-29 13:43:46 -0500837 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700838 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500839 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700840 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
841 } else {
842 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
843 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500844 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700845 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500846 shaderCaps->fTexelBufferSupport = true;
847 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700848 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500849 shaderCaps->fTexelBufferSupport = true;
850 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700851 }
cdaltonc04ce672016-03-11 14:07:38 -0800852 }
853 }
854
egdaniel8dcdedc2015-11-11 06:27:20 -0800855 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
856 // the abs first in a separate expression.
857 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500858 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800859 }
860
bsalomon7ea33f52015-11-22 14:51:00 -0800861 // 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 -0800862 // thus must us -1.0 * %s.x to work correctly
863 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500864 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800865 }
egdaniel138c2632016-08-17 10:59:00 -0700866
867 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
868 // the original dst color when reading the outColor even after being written to. By using a
869 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500870 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
871 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700872 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700873
874#ifdef SK_BUILD_FOR_MAC
875 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
876 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
877 // term plan for this WAR is for it to eventually be baked into SkSL.
878 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
879#endif
egdaniel472d44e2015-10-22 08:20:00 -0700880}
881
kkinnunencfe62e32015-07-01 02:58:50 -0700882bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700883 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
884
885 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700886 return false;
887 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700888
kkinnunencfe62e32015-07-01 02:58:50 -0700889 if (kGL_GrGLStandard == ctxInfo.standard()) {
890 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
891 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
892 return false;
893 }
894 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700895 if (!hasChromiumPathRendering &&
896 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700897 return false;
898 }
899 }
900 // We only support v1.3+ of GL_NV_path_rendering which allows us to
901 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
902 // additions are detected by checking the existence of the function.
903 // We also use *Then* functions that not all drivers might have. Check
904 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800905 if (!gli->fFunctions.fStencilThenCoverFillPath ||
906 !gli->fFunctions.fStencilThenCoverStrokePath ||
907 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
908 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
909 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700910 return false;
911 }
912 return true;
913}
bsalomon1aa20292016-01-22 08:16:09 -0800914
Brian Salomon71d9d842016-11-03 13:42:00 -0400915bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800916 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800917 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800918 std::function<bool ()> bindRenderTarget,
919 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400920 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800921 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400922 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800923 return false;
924 }
bsalomon7928ef62016-01-05 10:26:39 -0800925
Brian Salomonbf7b6202016-11-11 16:08:03 -0500926 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
927 return false;
928 }
929
bsalomon76148af2016-01-12 11:13:47 -0800930 GrGLenum readFormat;
931 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400932 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800933 return false;
934 }
935
bsalomon1aa20292016-01-22 08:16:09 -0800936 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800937 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
938 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
939 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
940 // 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 -0500941 // The manual does not seem to fully match the spec as the spec allows integer formats
942 // when the bound color buffer is an integer buffer. It doesn't specify which integer
943 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500944 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
945 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
946 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800947 return false;
948 }
949 // There is also a set of allowed types, but all the types we use are in the set:
950 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
951 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
952 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
953 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
954 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
955 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
956 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800957 return true;
piotaixre4b23142014-10-02 10:57:53 -0700958 }
bsalomon7928ef62016-01-05 10:26:39 -0800959
bsalomon76148af2016-01-12 11:13:47 -0800960 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500961 switch (fConfigTable[surfaceConfig].fFormatType) {
962 case kNormalizedFixedPoint_FormatType:
963 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
964 return true;
965 }
966 break;
967 case kInteger_FormatType:
968 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
969 return true;
970 }
971 break;
972 case kFloat_FormatType:
973 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
974 return true;
975 }
976 break;
bsalomon7928ef62016-01-05 10:26:39 -0800977 }
978
Brian Salomon71d9d842016-11-03 13:42:00 -0400979 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800980 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400981 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800982 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800983 if (!bindRenderTarget()) {
984 return false;
985 }
986 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
987 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800988 rpFormat->fFormat = format;
989 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800990 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800991 }
992
Brian Salomon71d9d842016-11-03 13:42:00 -0400993 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
994 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700995}
996
robertphillips@google.com6177e692013-02-28 20:16:25 +0000997void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000998 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000999 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1000 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1001 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1002 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1003 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1004 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001005 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001006 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001007 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -04001008 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1009 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001010 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001011 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1012 fMSFBOType = kES_Apple_MSFBOType;
1013 }
bsalomon083617b2016-02-12 12:10:14 -08001014
1015 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1016 // is available.
1017 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001018 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
1019 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001020 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1021 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001022 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1023 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001024 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1025 kResolveMustBeFull_BlitFrambufferFlag |
1026 kNoMSAADst_BlitFramebufferFlag |
1027 kNoFormatConversion_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001028 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001029 } else {
egdanieleed519e2016-01-15 11:36:18 -08001030 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001031 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001032 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001033 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1034 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1035 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001036 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001037 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1038 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001039 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001040 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001041 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001042 }
1043}
1044
cdalton1dd05422015-06-12 09:01:18 -07001045void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001046 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001047
1048 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1049 // for now until its own blacklists can be updated.
1050 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001051 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001052 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001053 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001054 return;
1055 }
1056
1057 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1058 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001059 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001060 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1061 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001062 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001063 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1064 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1065 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1066 return;
1067 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1068 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001069 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001070 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1071 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001072 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001073 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1074 // slow on a particular platform.
1075 } else {
1076 return; // No advanced blend support.
1077 }
1078
1079 SkASSERT(this->advancedBlendEquationSupport());
1080
csmartdalton3b88a032016-08-04 14:43:49 -07001081 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1082 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1083 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001084 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1085 (1 << kColorBurn_GrBlendEquation);
1086 }
joel.liang9764c402015-07-09 19:46:18 -07001087 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1088 // Blacklist color-burn on ARM until the fix is released.
1089 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1090 }
cdalton1dd05422015-06-12 09:01:18 -07001091}
1092
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001093namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001094const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001095}
1096
1097void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1098
1099 // Build up list of legal stencil formats (though perhaps not supported on
1100 // the particular gpu/driver) from most preferred to least.
1101
1102 // these consts are in order of most preferred to least preferred
1103 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1104
1105 static const StencilFormat
1106 // internal Format stencil bits total bits packed?
1107 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1108 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1109 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1110 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001111 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001112 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1113
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001114 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001115 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001116 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001117 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1118 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1119
1120 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1121 // require FBO support we can expect these are legal formats and don't
1122 // check. These also all support the unsized GL_STENCIL_INDEX.
1123 fStencilFormats.push_back() = gS8;
1124 fStencilFormats.push_back() = gS16;
1125 if (supportsPackedDS) {
1126 fStencilFormats.push_back() = gD24S8;
1127 }
1128 fStencilFormats.push_back() = gS4;
1129 if (supportsPackedDS) {
1130 fStencilFormats.push_back() = gDS;
1131 }
1132 } else {
1133 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1134 // for other formats.
1135 // ES doesn't support using the unsized format.
1136
1137 fStencilFormats.push_back() = gS8;
1138 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001139 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1140 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001141 fStencilFormats.push_back() = gD24S8;
1142 }
1143 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1144 fStencilFormats.push_back() = gS4;
1145 }
1146 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001147}
1148
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001149SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001150
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001151 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001152
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001153 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001154 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001155 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001156 i,
1157 fStencilFormats[i].fStencilBits,
1158 fStencilFormats[i].fTotalBits);
1159 }
1160
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001161 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001162 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001163 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001164 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001165 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001166 "IMG MS To Texture",
1167 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001168 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001169 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001170 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001171 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1172 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1173 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1174 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1175 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1176 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001177 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001178
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001179 static const char* kInvalidateFBTypeStr[] = {
1180 "None",
1181 "Discard",
1182 "Invalidate",
1183 };
1184 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1185 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1186 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1187 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001188
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001189 static const char* kMapBufferTypeStr[] = {
1190 "None",
1191 "MapBuffer",
1192 "MapBufferRange",
1193 "Chromium",
1194 };
1195 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1196 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1197 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1198 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1199 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1200
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001201 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001202 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001203 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001204 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001205 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001206 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1207 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1208 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1209 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001210
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001211 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001212 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1213 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001214 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001215 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1216 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001217 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001218 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1219 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1220 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001221 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1222 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001223 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001224 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001225 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001226 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001227 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001228
1229 r.append("Configs\n-------\n");
1230 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1231 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001232 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1233 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001234 i,
1235 fConfigTable[i].fFlags,
1236 fConfigTable[i].fFormats.fBaseInternalFormat,
1237 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001238 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1239 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001240 fConfigTable[i].fFormats.fExternalType,
1241 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001242 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001243 }
1244
jvanverthe9c0fc62015-04-29 11:18:05 -07001245 return r;
1246}
1247
jvanverthe9c0fc62015-04-29 11:18:05 -07001248static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1249 switch (p) {
1250 case kLow_GrSLPrecision:
1251 return GR_GL_LOW_FLOAT;
1252 case kMedium_GrSLPrecision:
1253 return GR_GL_MEDIUM_FLOAT;
1254 case kHigh_GrSLPrecision:
1255 return GR_GL_HIGH_FLOAT;
1256 }
1257 SkFAIL("Unknown precision.");
1258 return -1;
1259}
1260
1261static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1262 switch (type) {
1263 case kVertex_GrShaderType:
1264 return GR_GL_VERTEX_SHADER;
1265 case kGeometry_GrShaderType:
1266 return GR_GL_GEOMETRY_SHADER;
1267 case kFragment_GrShaderType:
1268 return GR_GL_FRAGMENT_SHADER;
1269 }
1270 SkFAIL("Unknown shader type.");
1271 return -1;
1272}
1273
jvanverthcba99b82015-06-24 06:59:57 -07001274void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001275 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001276 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001277 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1278 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1279 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1280 if (kGeometry_GrShaderType != s) {
1281 GrShaderType shaderType = static_cast<GrShaderType>(s);
1282 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001283 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001284 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001285 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1286 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1287 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1288 GrGLint range[2];
1289 GrGLint bits;
1290 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1291 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001292 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1293 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1294 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001295 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001296 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001297 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001298 else if (!shaderCaps->fShaderPrecisionVaries) {
1299 shaderCaps->fShaderPrecisionVaries =
1300 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001301 }
1302 }
1303 }
1304 }
1305 }
1306 }
1307 else {
1308 // 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 -05001309 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001310 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1311 if (kGeometry_GrShaderType != s) {
1312 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001313 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1314 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1315 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001316 }
1317 }
1318 }
1319 }
1320 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1321 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1322 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1323 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001324 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001325 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001326 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1327 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001328 }
1329 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001330 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001331}
1332
bsalomon41e4384e2016-01-08 09:12:44 -08001333bool GrGLCaps::bgraIsInternalFormat() const {
1334 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1335}
1336
bsalomon76148af2016-01-12 11:13:47 -08001337bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1338 GrGLenum* internalFormat, GrGLenum* externalFormat,
1339 GrGLenum* externalType) const {
1340 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1341 externalFormat, externalType)) {
1342 return false;
1343 }
1344 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1345 return true;
1346}
1347
1348bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1349 GrGLenum* internalFormat) const {
1350 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1351 return false;
1352 }
1353 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1354 return true;
1355}
1356
1357bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1358 GrGLenum* externalFormat, GrGLenum* externalType) const {
1359 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1360 externalFormat, externalType)) {
1361 return false;
1362 }
1363 return true;
1364}
1365
1366bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1367 if (GrPixelConfigIsCompressed(config)) {
1368 return false;
1369 }
1370 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1371 return true;
1372}
1373
1374bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1375 ExternalFormatUsage usage, GrGLenum* externalFormat,
1376 GrGLenum* externalType) const {
1377 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001378 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001379 return false;
1380 }
1381
1382 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1383 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1384
1385 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1386 // made to work in many cases using glPixelStore and what not but is not needed currently.
1387 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1388 return false;
1389 }
1390
1391 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1392 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1393
bsalomone9573312016-01-25 14:33:25 -08001394 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1395 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1396 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1397 // texture, not the red component.
1398 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1399 if (this->textureRedSupport()) {
1400 SkASSERT(GR_GL_RED == *externalFormat);
1401 *externalFormat = GR_GL_ALPHA;
1402 }
1403 }
1404
bsalomon76148af2016-01-12 11:13:47 -08001405 return true;
1406}
1407
brianosman20471892016-12-02 06:43:32 -08001408void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1409 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001410 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001411 /*
1412 Comments on renderability of configs on various GL versions.
1413 OpenGL < 3.0:
1414 no built in support for render targets.
1415 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1416 format RGB, RGBA and NV float formats we don't use.
1417 This is the following:
1418 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1419 RGB10_A2, RGBA12,RGBA16
1420 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1421 since they aren't required by later standards and the driver can simply return
1422 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1423 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1424 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1425 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1426 This adds a lot of additional renderable sized formats, including ALPHA8.
1427 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1428 16F, 32I, 32UI, and 32F variants).
1429 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1430
1431 For both the above extensions we limit ourselves to those that are also required by
1432 OpenGL 3.0.
1433
1434 OpenGL 3.0:
1435 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1436 but are not required to be supported as renderable textures/renderbuffer.
1437 Required renderable color formats:
1438 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1439 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1440 RGB10_A2.
1441 - R11F_G11F_B10F.
1442 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1443 and RG8UI.
1444 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1445 - ALPHA8
1446
1447 OpenGL 3.1, 3.2, 3.3
1448 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1449 OpengGL 3.3, 4.0, 4.1
1450 Adds RGB10_A2UI.
1451 OpengGL 4.2
1452 Adds
1453 - RGB5_A1, RGBA4
1454 - RGB565
1455 OpenGL 4.4
1456 Does away with the separate list and adds a column to the sized internal color format
1457 table. However, no new formats become required color renderable.
1458
1459 ES 2.0
1460 color renderable: RGBA4, RGB5_A1, RGB565
1461 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1462 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1463 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1464 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1465 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1466 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1467
1468 ES 3.0
1469 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1470 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1471 RGB5_A1.
1472 - RGB8 and RGB565.
1473 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1474 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1475 ES 3.1
1476 Adds RGB10_A2, RGB10_A2UI,
1477 ES 3.2
1478 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1479 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001480 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1481 ConfigInfo::kFBOColorAttachment_Flag;
1482 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001483 if (kNone_MSFBOType != fMSFBOType) {
1484 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1485 }
bsalomon41e4384e2016-01-08 09:12:44 -08001486 GrGLStandard standard = ctxInfo.standard();
1487 GrGLVersion version = ctxInfo.version();
1488
cblume790d5132016-02-29 11:13:29 -08001489 bool texStorageSupported = false;
1490 if (kGL_GrGLStandard == standard) {
1491 // The EXT version can apply to either GL or GLES.
1492 texStorageSupported = version >= GR_GL_VER(4,2) ||
1493 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1494 ctxInfo.hasExtension("GL_EXT_texture_storage");
1495 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001496 texStorageSupported = version >= GR_GL_VER(3,0) ||
1497 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001498 }
1499
1500 // TODO: remove after command buffer supports full ES 3.0
1501 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1502 kChromium_GrGLDriver == ctxInfo.driver()) {
1503 texStorageSupported = false;
1504 }
1505
cdalton74b8d322016-04-11 14:47:28 -07001506 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1507
bsalomon30447372015-12-21 09:03:05 -08001508 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1509 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001510 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001511 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001512 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001513 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001514
1515 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1516 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001517 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1518 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001519 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001520 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001521 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1522 if (kGL_GrGLStandard == standard) {
1523 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1524 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001525 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001526 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1527 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1528 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1529 }
egdaniel4999df82016-01-07 17:06:04 -08001530 }
cblume790d5132016-02-29 11:13:29 -08001531 if (texStorageSupported) {
1532 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1533 }
cdalton74b8d322016-04-11 14:47:28 -07001534 if (texelBufferSupport) {
1535 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1536 }
bsalomoncdee0092016-01-08 13:20:12 -08001537 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001538
bsalomon76148af2016-01-12 11:13:47 -08001539 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1540 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001541 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001542 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001543 if (kGL_GrGLStandard == standard) {
1544 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1545 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1546 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1547 // Since the internal format is RGBA8, it is also renderable.
1548 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1549 allRenderFlags;
1550 }
1551 } else {
1552 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1553 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1554 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1555 // The APPLE extension doesn't make this renderable.
1556 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1557 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1558 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1559 // Though, that seems to not be the case if the texture storage extension is
1560 // present. The specs don't exactly make that clear.
1561 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1562 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1563 }
1564 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1565 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001566 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001567 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001568 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001569 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1570 ConfigInfo::kRenderableWithMSAA_Flag;
1571 }
1572 }
1573 }
cblume790d5132016-02-29 11:13:29 -08001574 if (texStorageSupported) {
1575 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1576 }
bsalomoncdee0092016-01-08 13:20:12 -08001577 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001578
brianosmana6359362016-03-21 06:55:37 -07001579 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001580 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001581 if (kGL_GrGLStandard == standard) {
1582 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001583 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001584 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1585 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1586 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001587 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001588 }
1589 }
1590 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001591 if (fSRGBSupport) {
1592 fSRGBWriteControl = true;
1593 }
bsalomon41e4384e2016-01-08 09:12:44 -08001594 } else {
brianosman20471892016-12-02 06:43:32 -08001595 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1596#if defined(SK_CPU_X86)
1597 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1598 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1599 // blacklist that device (and any others that might be sharing the same driver).
1600 fSRGBSupport = false;
1601 }
1602#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001603 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1604 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001605 // See https://bug.skia.org/5329 for Adreno4xx issue.
1606 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1607 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001608 }
brianosman20471892016-12-02 06:43:32 -08001609 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1610 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1611 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001612 fSRGBSupport = false;
1613 }
brianosman20471892016-12-02 06:43:32 -08001614
1615 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1616 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1617 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1618 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1619 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1620 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1621 // affects Windows.
1622 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1623 fSRGBSupport = false;
1624 }
1625
bsalomon30447372015-12-21 09:03:05 -08001626 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1627 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1628 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1629 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001630 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1631 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001632 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001633 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001634 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001635 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1636 allRenderFlags;
1637 }
cblume790d5132016-02-29 11:13:29 -08001638 if (texStorageSupported) {
1639 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1640 }
bsalomoncdee0092016-01-08 13:20:12 -08001641 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001642
brianosmana6359362016-03-21 06:55:37 -07001643 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1644 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1645 // is in this format, for example).
1646 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1647 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1648 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1649 // external format is GL_BGRA.
1650 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1651 GR_GL_BGRA;
1652 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1653 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1654 if (fSRGBSupport) {
1655 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1656 allRenderFlags;
1657 }
1658 if (texStorageSupported) {
1659 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1660 }
1661 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1662
Brian Salomonbf7b6202016-11-11 16:08:03 -05001663 bool hasIntegerTextures;
1664 if (standard == kGL_GrGLStandard) {
1665 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1666 ctxInfo.hasExtension("GL_EXT_texture_integer");
1667 } else {
1668 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1669 }
1670 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1671 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1672 hasIntegerTextures = false;
1673 }
1674 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1675 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1676 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1677 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1678 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1679 // We currently only support using integer textures as srcs, not for rendering (even though GL
1680 // allows it).
1681 if (hasIntegerTextures) {
1682 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1683 ConfigInfo::kFBOColorAttachment_Flag;
1684 if (texStorageSupported) {
1685 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1686 ConfigInfo::kCanUseTexStorage_Flag;
1687 }
1688 }
1689
bsalomon30447372015-12-21 09:03:05 -08001690 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1691 if (this->ES2CompatibilitySupport()) {
1692 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1693 } else {
1694 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1695 }
bsalomon76148af2016-01-12 11:13:47 -08001696 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1697 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001698 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001699 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001700 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1701 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001702 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001703 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1704 }
1705 } else {
1706 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1707 }
cblume790d5132016-02-29 11:13:29 -08001708 // 565 is not a sized internal format on desktop GL. So on desktop with
1709 // 565 we always use an unsized internal format to let the system pick
1710 // the best sized format to convert the 565 data to. Since TexStorage
1711 // only allows sized internal formats we disallow it.
1712 //
1713 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1714 // update.
1715 if (texStorageSupported && kGL_GrGLStandard != standard) {
1716 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1717 }
bsalomoncdee0092016-01-08 13:20:12 -08001718 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001719
1720 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1721 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001722 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1723 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001724 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001725 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001726 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1727 if (kGL_GrGLStandard == standard) {
1728 if (version >= GR_GL_VER(4, 2)) {
1729 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1730 }
1731 } else {
1732 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1733 }
cblume790d5132016-02-29 11:13:29 -08001734 if (texStorageSupported) {
1735 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1736 }
bsalomoncdee0092016-01-08 13:20:12 -08001737 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001738
Brian Osmanf4faccd2017-01-10 16:53:58 -05001739 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1740 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1741 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001742 if (this->textureRedSupport()) {
1743 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001745 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1746 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001747 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001748 if (texelBufferSupport) {
1749 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1750 }
bsalomon30447372015-12-21 09:03:05 -08001751 } else {
1752 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1753 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001754 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1755 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001756 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001757 }
bsalomon40170072016-05-05 14:40:03 -07001758 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001759 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1760 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001761 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001762 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1763 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1764 }
cblume790d5132016-02-29 11:13:29 -08001765 if (texStorageSupported) {
1766 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1767 }
bsalomon41e4384e2016-01-08 09:12:44 -08001768
Brian Osmanf4faccd2017-01-10 16:53:58 -05001769 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1770 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1771 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001772 if (this->textureRedSupport()) {
1773 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1775 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1776 GR_GL_RED;
1777 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1778 if (texelBufferSupport) {
1779 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1780 }
1781 } else {
1782 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1783 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1784 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1785 GR_GL_LUMINANCE;
1786 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1787 }
Brian Osman986563b2017-01-10 14:20:02 -05001788#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1789 if (this->textureRedSupport() ||
1790 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1791 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1792 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1793 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1794 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1795 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1796 }
1797#endif
1798 if (texStorageSupported) {
1799 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1800 }
1801
bsalomon41e4384e2016-01-08 09:12:44 -08001802 // Check for [half] floating point texture support
1803 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1804 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1805 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1806 bool hasFPTextures = false;
1807 bool hasHalfFPTextures = false;
1808 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001809 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001810
1811 if (kGL_GrGLStandard == standard) {
1812 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1813 hasFPTextures = true;
1814 hasHalfFPTextures = true;
1815 }
1816 } else {
1817 if (version >= GR_GL_VER(3, 1)) {
1818 hasFPTextures = true;
1819 hasHalfFPTextures = true;
1820 } else {
1821 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1822 ctxInfo.hasExtension("GL_OES_texture_float")) {
1823 hasFPTextures = true;
1824 }
1825 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1826 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1827 hasHalfFPTextures = true;
1828 }
1829 }
1830 }
bsalomon30447372015-12-21 09:03:05 -08001831
csmartdalton6aa0e112017-02-08 16:14:11 -05001832 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1833 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1834 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1835 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1836 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1837 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1838 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1839 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1840 if (hasFPTextures) {
1841 fConfigTable[fpconfig].fFlags = ConfigInfo::kTextureable_Flag;
1842 // For now we only enable rendering to float on desktop, because on ES we'd have to
1843 // solve many precision issues and no clients actually want this yet.
1844 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1845 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1846 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1847 }
bsalomon41e4384e2016-01-08 09:12:44 -08001848 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001849 if (texStorageSupported) {
1850 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1851 }
1852 if (texelBufferSupport) {
1853 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1854 }
1855 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001856 }
bsalomon30447372015-12-21 09:03:05 -08001857
1858 if (this->textureRedSupport()) {
1859 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1860 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001861 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1862 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001863 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001864 if (texelBufferSupport) {
1865 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1866 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1867 }
bsalomon30447372015-12-21 09:03:05 -08001868 } else {
1869 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1870 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001871 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1872 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001873 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001874 }
Brian Osman3a887252016-11-17 13:27:31 -05001875 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1876 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1877 // returned when we query, but that turns into a bigger refactor, so just work around it.
1878 if (kGL_GrGLStandard == ctxInfo.standard() ||
1879 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001880 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1881 } else {
1882 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1883 }
bsalomon7928ef62016-01-05 10:26:39 -08001884 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001885 if (texStorageSupported) {
1886 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1887 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001888 if (hasHalfFPTextures) {
1889 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1890 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1891 // GL_RED internal format.
1892 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1893 (this->textureRedSupport() &&
1894 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1895 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1896 }
1897 }
bsalomon30447372015-12-21 09:03:05 -08001898
1899 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1900 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001901 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1902 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001903 // See comment above, re: ANGLE and ES3.
1904 if (kGL_GrGLStandard == ctxInfo.standard() ||
1905 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001906 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1907 } else {
1908 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1909 }
bsalomon7928ef62016-01-05 10:26:39 -08001910 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001911 if (hasHalfFPTextures) {
1912 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1913 // ES requires 3.2 or EXT_color_buffer_half_float.
1914 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1915 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1916 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1917 }
1918 }
cblume790d5132016-02-29 11:13:29 -08001919 if (texStorageSupported) {
1920 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1921 }
cdalton74b8d322016-04-11 14:47:28 -07001922 if (texelBufferSupport) {
1923 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1924 }
bsalomoncdee0092016-01-08 13:20:12 -08001925 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001926
1927 // Compressed texture support
1928
1929 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1930 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1931
1932 // TODO: Fix command buffer bindings and remove this.
1933 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001934
1935 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001936 // Below we set the external formats and types to 0.
Robert Phillipsb34727f2017-02-10 14:44:58 -05001937 {
1938 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1939 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat =
1940 GR_GL_COMPRESSED_ETC1_RGB8;
1941 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
1942 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
1943 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1944 if (kGL_GrGLStandard == standard) {
1945 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1946 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1947 }
1948 } else {
1949 if (version >= GR_GL_VER(3, 0) ||
1950 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1951 // ETC2 is a superset of ETC1, so we can just check for that, too.
1952 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1953 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1954 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1955 }
bsalomon41e4384e2016-01-08 09:12:44 -08001956 }
Robert Phillipsb34727f2017-02-10 14:44:58 -05001957 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001958 }
bsalomon30447372015-12-21 09:03:05 -08001959
1960 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1961
1962 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001963 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1964 ctxInfo.version() >= GR_GL_VER(3,0));
1965 // All ES versions (thus far) require sized internal formats for render buffers.
1966 // TODO: Always use sized internal format?
1967 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1968
bsalomon30447372015-12-21 09:03:05 -08001969 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001970 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1971 // param to glTex[Sub]Image.
1972 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1973 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1974 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1975 fConfigTable[i].fFormats.fSizedInternalFormat :
1976 fConfigTable[i].fFormats.fBaseInternalFormat;
1977 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001978 fConfigTable[i].fFormats.fSizedInternalFormat :
1979 fConfigTable[i].fFormats.fBaseInternalFormat;
1980 }
1981 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1982 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1983 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1984 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1985 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001986 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001987 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001988
1989 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1990 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1991 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1992 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001993 }
1994
1995 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1996 // as a base format.
1997 // GL_EXT_texture_format_BGRA8888:
1998 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1999 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2000 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002001 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002002 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2003 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2004 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002005 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002006 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2007 }
2008
bsalomoncdee0092016-01-08 13:20:12 -08002009 // If we don't have texture swizzle support then the shader generator must insert the
2010 // swizzle into shader code.
2011 if (!this->textureSwizzleSupport()) {
2012 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002013 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002014 }
2015 }
2016
bsalomon7f9b2e42016-01-12 13:29:26 -08002017 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2018 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2019 // gets written to the single component.
2020 if (this->textureRedSupport()) {
2021 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2022 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2023 if (GrPixelConfigIsAlphaOnly(config) &&
2024 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002025 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002026 }
2027 }
2028 }
2029
Brian Salomonf9f45122016-11-29 11:59:17 -05002030 // We currently only support images on rgba textures formats. We could add additional formats
2031 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2032 // (e.g. where we use GL_RED textures to implement alpha configs).
2033 if (this->shaderCaps()->imageLoadStoreSupport()) {
2034 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2035 ConfigInfo::kCanUseAsImageStorage_Flag;
2036 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2037 // immutable via TexStorage. We create non-integer textures as mutable textures using
2038 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2039 // storage support for non-integer textures.
2040 if (kGL_GrGLStandard == ctxInfo.standard()) {
2041 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2042 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2043 ConfigInfo::kCanUseAsImageStorage_Flag;
2044 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2045 }
2046 }
2047
bsalomon30447372015-12-21 09:03:05 -08002048#ifdef SK_DEBUG
2049 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002050 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002051 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002052 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2053 // renderable.
2054 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2055 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002056 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2057 fConfigTable[i].fFormats.fBaseInternalFormat);
2058 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002059 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002060 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2061 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2062 fConfigTable[i].fFormats.fExternalFormat[j]);
2063 }
2064 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002065 }
2066#endif
2067}
2068
csmartdaltone0d36292016-07-29 08:14:20 -07002069void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2070 if (options.fEnableInstancedRendering) {
2071 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2072#ifndef SK_BUILD_FOR_MAC
2073 // OS X doesn't seem to write correctly to floating point textures when using
2074 // glDraw*Indirect, regardless of the underlying GPU.
2075 fAvoidInstancedDrawsToFPTargets = true;
2076#endif
2077 }
2078}