blob: 0bcb7e817b25fb1b55bce78740295c8ce8310da0 [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
csmartdalton008b9d82017-02-22 12:00:42 -0700261 if (!contextOptions.fSuppressPathRendering) {
262 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
263 }
egdaniel05ded892015-10-26 07:38:05 -0700264
265 // For now these two are equivalent but we could have dst read in shader via some other method.
266 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500267 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700268
269 // Enable supported shader-related caps
270 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500271 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700272 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
273 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500274 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700275 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500276 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700277 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500278 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800279 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700280 }
281 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500282 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700283
Brian Salomon1edc5b92016-11-29 13:43:46 -0500284 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700285 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800286
csmartdalton1d2aed02017-02-15 21:43:20 -0700287 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
288
Brian Salomon1edc5b92016-11-29 13:43:46 -0500289 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800290 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700291 }
292
ethannicholas22793252016-01-30 09:59:10 -0800293 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
294 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700295 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500296 &shaderCaps->fPixelLocalStorageSize);
297 shaderCaps->fPLSPathRenderingSupport = shaderCaps->fFBFetchSupport;
ethannicholas22793252016-01-30 09:59:10 -0800298 }
299 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500300 shaderCaps->fPixelLocalStorageSize = 0;
301 shaderCaps->fPLSPathRenderingSupport = false;
ethannicholas22793252016-01-30 09:59:10 -0800302 }
303
cdalton9c3f1432016-03-11 10:07:37 -0800304 // Protect ourselves against tracking huge amounts of texture state.
305 static const uint8_t kMaxSaneSamplers = 32;
306 GrGLint maxSamplers;
307 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500308 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
309 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800310 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500311 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800312 }
313 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500314 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800315 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500316 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800317
Brian Salomonf26f7a02016-11-15 14:05:01 -0500318 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500319 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
320 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500321 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500322 shaderCaps->fImageLoadStoreSupport = true;
323 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500324 }
325 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500326 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500327 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500328 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500329 // Protect ourselves against tracking huge amounts of image state.
330 static constexpr int kMaxSaneImages = 4;
331 GrGLint maxUnits;
332 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500333 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500334 &shaderCaps->fMaxVertexImageStorages);
335 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500336 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500337 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500338 }
339 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500340 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500341 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500342 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500343 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500344 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
345 maxUnits), kMaxSaneImages);
346 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
347 shaderCaps->fMaxVertexImageStorages);
348 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
349 shaderCaps->fMaxGeometryImageStorages);
350 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
351 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500352 }
353
egdaniel05ded892015-10-26 07:38:05 -0700354 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700355 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000356 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700357
cdalton63f6c1f2015-11-06 07:09:43 -0800358 // We need dual source blending and the ability to disable multisample in order to support mixed
csmartdalton372953b2017-02-22 23:16:23 -0700359 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
360 // renderer is available and enabled; no other path renderers support this feature.
egdanieleed519e2016-01-15 11:36:18 -0800361 if (fMultisampleDisableSupport &&
Brian Salomon1edc5b92016-11-29 13:43:46 -0500362 shaderCaps->dualSourceBlendingSupport() &&
csmartdalton372953b2017-02-22 23:16:23 -0700363 fShaderCaps->pathRenderingSupport() &&
364 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
egdanieleed519e2016-01-15 11:36:18 -0800365 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800366 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800367 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800368 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
369 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800370 fDiscardRenderTargetSupport = false;
371 fInvalidateFBType = kNone_InvalidateFBType;
372 }
373 }
374
csmartdalton485a1202016-07-13 10:16:32 -0700375 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
376 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
377 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
378 // limit this decision to specific GPU families rather than basing it on the vendor alone.
379 if (!GR_GL_MUST_USE_VBO &&
380 !fIsCoreProfile &&
381 (kARM_GrGLVendor == ctxInfo.vendor() ||
382 kImagination_GrGLVendor == ctxInfo.vendor() ||
383 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
384 fPreferClientSideDynamicBuffers = true;
385 }
386
egdanieleed519e2016-01-15 11:36:18 -0800387 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700388 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700389 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700390 this->initStencilFormats(ctxInfo);
391
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000392 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000393 // we could also look for GL_ATI_separate_stencil extension or
394 // GL_EXT_stencil_two_side but they use different function signatures
395 // than GL2.0+ (and than each other).
396 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
397 // supported on GL 1.4 and higher or by extension
398 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
399 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
400 } else {
401 // ES 2 has two sided stencil and stencil wrap
402 fTwoSidedStencilSupport = true;
403 fStencilWrapOpsSupport = true;
404 }
405
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000406 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000407 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
408 // extension includes glMapBuffer.
409 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
410 fMapBufferFlags |= kSubset_MapFlag;
411 fMapBufferType = kMapBufferRange_MapBufferType;
412 } else {
413 fMapBufferType = kMapBuffer_MapBufferType;
414 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000415 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000416 // Unextended GLES2 doesn't have any buffer mapping.
417 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800418 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800419 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
420 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800421 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
422 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
423 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000424 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
425 fMapBufferFlags = kCanMap_MapFlag;
426 fMapBufferType = kMapBuffer_MapBufferType;
427 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000428 }
429
jvanverthd7a2c1f2015-12-07 07:36:44 -0800430 if (kGL_GrGLStandard == standard) {
431 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
432 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700433 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800434 } else {
435 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
436 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700437 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
438 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800439 }
440 }
441
joshualitte5b74c62015-06-01 14:17:47 -0700442 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
443 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700444 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700445#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500446 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
447 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
448 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700449 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700450#else
cdalton397536c2016-03-25 12:15:03 -0700451 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700452#endif
joshualitte5b74c62015-06-01 14:17:47 -0700453 }
454
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000455 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000456 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
457 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
458 fNPOTTextureTileSupport = true;
459 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000460 } else {
461 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000462 // ES3 has no limitations.
463 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
464 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000465 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
466 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
467 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
468 // to alllow arbitrary wrap modes, however.
469 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000470 }
471
bsalomone72bd022015-10-26 07:33:03 -0700472 // Using MIPs on this GPU seems to be a source of trouble.
473 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
474 fMipMapSupport = false;
475 }
476
bsalomon@google.combcce8922013-03-25 15:38:39 +0000477 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
478 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
479 // Our render targets are always created with textures as the color
480 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000481 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000482
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000483 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
484
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000485 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700486 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000487
robertphillips1b8e1b52015-06-24 06:54:10 -0700488#if 0
489 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
490 kQualcomm_GrGLVendor != ctxInfo.vendor();
491#endif
492
egdaniel05ded892015-10-26 07:38:05 -0700493 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000494 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800495 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000496 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800497 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000498 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800499 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
500 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
501 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
502 // This is to guard against platforms that may not support as many samples for
503 // glRasterSamples as they do for framebuffers.
504 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
505 }
506 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000507
csmartdalton9bc11872016-08-09 12:42:47 -0700508 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
509 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700510 }
511
bsalomon63b21962014-11-05 07:05:34 -0800512 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800513 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800514 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800515 fUseDrawInsteadOfClear = true;
516 }
517
joshualitt83bc2292015-06-18 14:18:02 -0700518 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
519 fUseDrawInsteadOfPartialRenderTargetWrite = true;
520 }
521
bsalomonbabafcc2016-02-16 11:36:47 -0800522 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
523 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
524 fUseDrawInsteadOfPartialRenderTargetWrite = true;
525 fUseDrawInsteadOfAllRenderTargetWrites = true;
526 }
527
robertphillips63926682015-08-20 09:39:02 -0700528#ifdef SK_BUILD_FOR_WIN
529 // On ANGLE deferring flushes can lead to GPU starvation
530 fPreferVRAMUseOverFlushes = !isANGLE;
531#endif
532
bsalomon7dea7b72015-08-19 08:26:51 -0700533 if (kChromium_GrGLDriver == ctxInfo.driver()) {
534 fMustClearUploadedBufferData = true;
535 }
536
bsalomond08ea5f2015-02-20 06:58:13 -0800537 if (kGL_GrGLStandard == standard) {
538 // ARB allows mixed size FBO attachments, EXT does not.
539 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
540 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
541 fOversizedStencilSupport = true;
542 } else {
543 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
544 }
545 } else {
546 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
547 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
548 }
549
joshualitt58001552015-06-26 12:46:36 -0700550 if (kGL_GrGLStandard == standard) {
551 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
552 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700553 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700554 version >= GR_GL_VER(3, 2) ||
555 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
556 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
557 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700558 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700559 version >= GR_GL_VER(3, 0) ||
560 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
561 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
562 }
563
cdalton06604b92016-02-05 10:09:51 -0800564 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700565 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
566 ctxInfo.hasExtension("GL_ARB_draw_indirect");
567 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
568 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700569 (fDrawIndirectSupport &&
570 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700571 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700572 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800573 } else {
574 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700575 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
576 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
577 fBaseInstanceSupport = fDrawIndirectSupport &&
578 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700579 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800580 }
581
Brian Salomon1edc5b92016-11-29 13:43:46 -0500582 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800583
584 if (contextOptions.fUseShaderSwizzling) {
585 fTextureSwizzleSupport = false;
586 }
587
ethannicholas28ef4452016-03-25 09:26:03 -0700588 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700589 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
590 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700591 fSampleShadingSupport = true;
592 }
593 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
594 fSampleShadingSupport = true;
595 }
596
jvanverth84741b32016-09-30 08:39:02 -0700597 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
598 if (kGL_GrGLStandard == standard) {
599 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
600 fFenceSyncSupport = true;
601 }
602 } else if (version >= GR_GL_VER(3, 0)) {
603 fFenceSyncSupport = true;
604 }
605
Brian Osman2c2bc112017-02-28 10:02:49 -0500606 // Safely moving textures between contexts requires fences. The Windows Intel driver has a
607 // bug with deleting and reusing texture IDs across contexts, so disallow this feature.
608 fCrossContextTextureSupport = fFenceSyncSupport;
609#ifdef SK_BUILD_FOR_WIN
610 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
611 fCrossContextTextureSupport = false;
612 }
613#endif
614
brianosman131ff132016-06-07 14:22:44 -0700615 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
616 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
617 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
618 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700619 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700620 (contextOptions.fDoManualMipmapping ||
621 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700622 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
623 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700624 fDoManualMipmapping = true;
625 }
626
brianosman20471892016-12-02 06:43:32 -0800627 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800628 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
629 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800630
bsalomoncdee0092016-01-08 13:20:12 -0800631 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
632 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800633 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700634
635 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500636 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000637}
638
egdaniel472d44e2015-10-22 08:20:00 -0700639const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
640 bool isCoreProfile) {
641 switch (generation) {
642 case k110_GrGLSLGeneration:
643 if (kGLES_GrGLStandard == standard) {
644 // ES2s shader language is based on version 1.20 but is version
645 // 1.00 of the ES language.
646 return "#version 100\n";
647 } else {
648 SkASSERT(kGL_GrGLStandard == standard);
649 return "#version 110\n";
650 }
651 case k130_GrGLSLGeneration:
652 SkASSERT(kGL_GrGLStandard == standard);
653 return "#version 130\n";
654 case k140_GrGLSLGeneration:
655 SkASSERT(kGL_GrGLStandard == standard);
656 return "#version 140\n";
657 case k150_GrGLSLGeneration:
658 SkASSERT(kGL_GrGLStandard == standard);
659 if (isCoreProfile) {
660 return "#version 150\n";
661 } else {
662 return "#version 150 compatibility\n";
663 }
664 case k330_GrGLSLGeneration:
665 if (kGLES_GrGLStandard == standard) {
666 return "#version 300 es\n";
667 } else {
668 SkASSERT(kGL_GrGLStandard == standard);
669 if (isCoreProfile) {
670 return "#version 330\n";
671 } else {
672 return "#version 330 compatibility\n";
673 }
674 }
cdalton33ad7012016-02-22 07:55:44 -0800675 case k400_GrGLSLGeneration:
676 SkASSERT(kGL_GrGLStandard == standard);
677 if (isCoreProfile) {
678 return "#version 400\n";
679 } else {
680 return "#version 400 compatibility\n";
681 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500682 case k420_GrGLSLGeneration:
683 SkASSERT(kGL_GrGLStandard == standard);
684 if (isCoreProfile) {
685 return "#version 420\n";
686 }
687 else {
688 return "#version 420 compatibility\n";
689 }
egdaniel472d44e2015-10-22 08:20:00 -0700690 case k310es_GrGLSLGeneration:
691 SkASSERT(kGLES_GrGLStandard == standard);
692 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800693 case k320es_GrGLSLGeneration:
694 SkASSERT(kGLES_GrGLStandard == standard);
695 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700696 }
697 return "<no version>";
698}
699
egdaniel05ded892015-10-26 07:38:05 -0700700void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700701 GrGLStandard standard = ctxInfo.standard();
702 GrGLVersion version = ctxInfo.version();
703
704 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500705 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700706 **************************************************************************/
707
Brian Salomon1edc5b92016-11-29 13:43:46 -0500708 GrShaderCaps* shaderCaps = fShaderCaps.get();
709 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700710 if (kGLES_GrGLStandard == standard) {
711 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500712 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
713 shaderCaps->fFBFetchSupport = true;
714 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
715 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700716 }
717 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
718 // 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 -0500719 shaderCaps->fFBFetchNeedsCustomOutput = false;
720 shaderCaps->fFBFetchSupport = true;
721 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
722 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700723 }
724 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
725 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500726 shaderCaps->fFBFetchNeedsCustomOutput = false;
727 shaderCaps->fFBFetchSupport = true;
728 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
729 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700730 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500731 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700732 }
733
egdaniel7517e452016-09-20 13:00:26 -0700734 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
735 // Galaxy S7.
736 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
737 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500738 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700739 }
740
Brian Salomon1edc5b92016-11-29 13:43:46 -0500741 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700742
cdaltonc08f1962016-02-12 12:14:06 -0800743 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500744 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800745 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500746 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800747 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
748 }
749
750 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500751 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800752 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
753 } else {
754 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500755 shaderCaps->fNoPerspectiveInterpolationSupport = true;
756 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800757 "GL_NV_shader_noperspective_interpolation";
758 }
759 }
760
cdalton33ad7012016-02-22 07:55:44 -0800761 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500762 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800763 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
764 } else {
765 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500766 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800767 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500768 shaderCaps->fMultisampleInterpolationSupport = true;
769 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800770 "GL_OES_shader_multisample_interpolation";
771 }
772 }
773
774 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500775 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800776 } else {
777 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500778 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800779 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500780 shaderCaps->fSampleVariablesSupport = true;
781 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800782 }
783 }
784
Brian Salomon1edc5b92016-11-29 13:43:46 -0500785 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700786 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
787 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500788 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700789 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
790 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800791 }
792
egdaniel472d44e2015-10-22 08:20:00 -0700793 // 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 -0500794 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700795
796 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
797 // function that may require a gradient calculation inside a conditional block may return
798 // undefined results". This appears to be an issue with the 'any' call since even the simple
799 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
800 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500801 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700802
Brian Salomon1edc5b92016-11-29 13:43:46 -0500803 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
804 shaderCaps->fGLSLGeneration,
805 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800806
Brian Salomon1edc5b92016-11-29 13:43:46 -0500807 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
808 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800809 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800810
811 // Frag Coords Convention support is not part of ES
812 // Known issue on at least some Intel platforms:
813 // http://code.google.com/p/skia/issues/detail?id=946
814 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
815 kGLES_GrGLStandard != standard &&
816 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
817 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500818 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800819 }
820
821 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500822 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800823 }
824
cdalton9c3f1432016-03-11 10:07:37 -0800825 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
826 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500827 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800828 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
829 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
830 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500831 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800832 }
833 }
834
Brian Salomon1edc5b92016-11-29 13:43:46 -0500835 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800836 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500837 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800838 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500839 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800840 }
841 }
842
cdaltonc04ce672016-03-11 14:07:38 -0800843 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500844 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800845 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500846 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700847 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
848 }
849
Brian Salomon1edc5b92016-11-29 13:43:46 -0500850 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700851 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500852 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700853 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
854 } else {
855 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
856 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500857 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700858 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500859 shaderCaps->fTexelBufferSupport = true;
860 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700861 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500862 shaderCaps->fTexelBufferSupport = true;
863 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700864 }
cdaltonc04ce672016-03-11 14:07:38 -0800865 }
866 }
867
egdaniel8dcdedc2015-11-11 06:27:20 -0800868 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
869 // the abs first in a separate expression.
870 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500871 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800872 }
873
bsalomon7ea33f52015-11-22 14:51:00 -0800874 // 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 -0800875 // thus must us -1.0 * %s.x to work correctly
876 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500877 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800878 }
egdaniel138c2632016-08-17 10:59:00 -0700879
880 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
881 // the original dst color when reading the outColor even after being written to. By using a
882 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500883 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
884 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700885 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700886
887#ifdef SK_BUILD_FOR_MAC
888 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
889 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
890 // term plan for this WAR is for it to eventually be baked into SkSL.
891 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
892#endif
egdaniel472d44e2015-10-22 08:20:00 -0700893}
894
kkinnunencfe62e32015-07-01 02:58:50 -0700895bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700896 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
897
898 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700899 return false;
900 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700901
kkinnunencfe62e32015-07-01 02:58:50 -0700902 if (kGL_GrGLStandard == ctxInfo.standard()) {
903 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
904 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
905 return false;
906 }
907 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700908 if (!hasChromiumPathRendering &&
909 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700910 return false;
911 }
912 }
913 // We only support v1.3+ of GL_NV_path_rendering which allows us to
914 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
915 // additions are detected by checking the existence of the function.
916 // We also use *Then* functions that not all drivers might have. Check
917 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800918 if (!gli->fFunctions.fStencilThenCoverFillPath ||
919 !gli->fFunctions.fStencilThenCoverStrokePath ||
920 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
921 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
922 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700923 return false;
924 }
925 return true;
926}
bsalomon1aa20292016-01-22 08:16:09 -0800927
Brian Salomon71d9d842016-11-03 13:42:00 -0400928bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800929 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800930 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800931 std::function<bool ()> bindRenderTarget,
932 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400933 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800934 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400935 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800936 return false;
937 }
bsalomon7928ef62016-01-05 10:26:39 -0800938
Brian Salomonbf7b6202016-11-11 16:08:03 -0500939 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
940 return false;
941 }
942
bsalomon76148af2016-01-12 11:13:47 -0800943 GrGLenum readFormat;
944 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400945 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800946 return false;
947 }
948
bsalomon1aa20292016-01-22 08:16:09 -0800949 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800950 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
951 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
952 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
953 // 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 -0500954 // The manual does not seem to fully match the spec as the spec allows integer formats
955 // when the bound color buffer is an integer buffer. It doesn't specify which integer
956 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500957 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
958 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
959 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800960 return false;
961 }
962 // There is also a set of allowed types, but all the types we use are in the set:
963 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
964 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
965 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
966 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
967 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
968 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
969 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800970 return true;
piotaixre4b23142014-10-02 10:57:53 -0700971 }
bsalomon7928ef62016-01-05 10:26:39 -0800972
bsalomon76148af2016-01-12 11:13:47 -0800973 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500974 switch (fConfigTable[surfaceConfig].fFormatType) {
975 case kNormalizedFixedPoint_FormatType:
976 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
977 return true;
978 }
979 break;
980 case kInteger_FormatType:
981 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
982 return true;
983 }
984 break;
985 case kFloat_FormatType:
986 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
987 return true;
988 }
989 break;
bsalomon7928ef62016-01-05 10:26:39 -0800990 }
991
Brian Salomon71d9d842016-11-03 13:42:00 -0400992 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800993 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400994 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800995 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800996 if (!bindRenderTarget()) {
997 return false;
998 }
999 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
1000 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -08001001 rpFormat->fFormat = format;
1002 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -08001003 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -08001004 }
1005
Brian Salomon71d9d842016-11-03 13:42:00 -04001006 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
1007 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -07001008}
1009
robertphillips@google.com6177e692013-02-28 20:16:25 +00001010void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001011 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001012 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1013 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1014 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1015 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1016 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1017 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001018 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001019 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001020 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -04001021 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1022 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001023 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001024 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1025 fMSFBOType = kES_Apple_MSFBOType;
1026 }
bsalomon083617b2016-02-12 12:10:14 -08001027
1028 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1029 // is available.
1030 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001031 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
1032 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001033 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1034 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001035 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1036 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001037 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1038 kResolveMustBeFull_BlitFrambufferFlag |
1039 kNoMSAADst_BlitFramebufferFlag |
1040 kNoFormatConversion_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001041 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001042 } else {
egdanieleed519e2016-01-15 11:36:18 -08001043 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001044 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001045 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001046 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1047 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1048 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001049 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001050 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1051 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001052 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001053 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001054 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001055 }
1056}
1057
cdalton1dd05422015-06-12 09:01:18 -07001058void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001059 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001060
1061 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1062 // for now until its own blacklists can be updated.
1063 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001064 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001065 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001066 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001067 return;
1068 }
1069
1070 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1071 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001072 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001073 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1074 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001075 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001076 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1077 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1078 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1079 return;
1080 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1081 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001082 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001083 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1084 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001085 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001086 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1087 // slow on a particular platform.
1088 } else {
1089 return; // No advanced blend support.
1090 }
1091
1092 SkASSERT(this->advancedBlendEquationSupport());
1093
csmartdalton3b88a032016-08-04 14:43:49 -07001094 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1095 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1096 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001097 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1098 (1 << kColorBurn_GrBlendEquation);
1099 }
joel.liang9764c402015-07-09 19:46:18 -07001100 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1101 // Blacklist color-burn on ARM until the fix is released.
1102 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1103 }
cdalton1dd05422015-06-12 09:01:18 -07001104}
1105
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001106namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001107const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001108}
1109
1110void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1111
1112 // Build up list of legal stencil formats (though perhaps not supported on
1113 // the particular gpu/driver) from most preferred to least.
1114
1115 // these consts are in order of most preferred to least preferred
1116 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1117
1118 static const StencilFormat
1119 // internal Format stencil bits total bits packed?
1120 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1121 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1122 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1123 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001124 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001125 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1126
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001127 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001128 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001129 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001130 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1131 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1132
1133 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1134 // require FBO support we can expect these are legal formats and don't
1135 // check. These also all support the unsized GL_STENCIL_INDEX.
1136 fStencilFormats.push_back() = gS8;
1137 fStencilFormats.push_back() = gS16;
1138 if (supportsPackedDS) {
1139 fStencilFormats.push_back() = gD24S8;
1140 }
1141 fStencilFormats.push_back() = gS4;
1142 if (supportsPackedDS) {
1143 fStencilFormats.push_back() = gDS;
1144 }
1145 } else {
1146 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1147 // for other formats.
1148 // ES doesn't support using the unsized format.
1149
1150 fStencilFormats.push_back() = gS8;
1151 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001152 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1153 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001154 fStencilFormats.push_back() = gD24S8;
1155 }
1156 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1157 fStencilFormats.push_back() = gS4;
1158 }
1159 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001160}
1161
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001162SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001163
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001164 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001165
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001166 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001167 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001168 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001169 i,
1170 fStencilFormats[i].fStencilBits,
1171 fStencilFormats[i].fTotalBits);
1172 }
1173
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001174 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001175 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001176 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001177 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001178 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001179 "IMG MS To Texture",
1180 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001181 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001182 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001183 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001184 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1185 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1186 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1187 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1188 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1189 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001190 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001191
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001192 static const char* kInvalidateFBTypeStr[] = {
1193 "None",
1194 "Discard",
1195 "Invalidate",
1196 };
1197 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1198 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1199 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1200 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001201
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001202 static const char* kMapBufferTypeStr[] = {
1203 "None",
1204 "MapBuffer",
1205 "MapBufferRange",
1206 "Chromium",
1207 };
1208 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1209 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1210 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1211 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1212 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1213
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001214 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001215 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001216 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001217 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001218 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001219 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1220 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1221 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1222 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001223
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001224 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001225 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1226 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001227 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001228 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1229 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001230 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001231 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1232 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1233 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001234 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1235 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001236 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001237 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001238 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001239 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001240 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001241
1242 r.append("Configs\n-------\n");
1243 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1244 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001245 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1246 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001247 i,
1248 fConfigTable[i].fFlags,
1249 fConfigTable[i].fFormats.fBaseInternalFormat,
1250 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001251 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1252 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001253 fConfigTable[i].fFormats.fExternalType,
1254 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001255 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001256 }
1257
jvanverthe9c0fc62015-04-29 11:18:05 -07001258 return r;
1259}
1260
jvanverthe9c0fc62015-04-29 11:18:05 -07001261static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1262 switch (p) {
1263 case kLow_GrSLPrecision:
1264 return GR_GL_LOW_FLOAT;
1265 case kMedium_GrSLPrecision:
1266 return GR_GL_MEDIUM_FLOAT;
1267 case kHigh_GrSLPrecision:
1268 return GR_GL_HIGH_FLOAT;
1269 }
1270 SkFAIL("Unknown precision.");
1271 return -1;
1272}
1273
1274static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1275 switch (type) {
1276 case kVertex_GrShaderType:
1277 return GR_GL_VERTEX_SHADER;
1278 case kGeometry_GrShaderType:
1279 return GR_GL_GEOMETRY_SHADER;
1280 case kFragment_GrShaderType:
1281 return GR_GL_FRAGMENT_SHADER;
1282 }
1283 SkFAIL("Unknown shader type.");
1284 return -1;
1285}
1286
jvanverthcba99b82015-06-24 06:59:57 -07001287void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001288 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001289 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001290 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1291 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1292 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1293 if (kGeometry_GrShaderType != s) {
1294 GrShaderType shaderType = static_cast<GrShaderType>(s);
1295 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001296 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001297 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001298 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1299 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1300 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1301 GrGLint range[2];
1302 GrGLint bits;
1303 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1304 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001305 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1306 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1307 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001308 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001309 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001310 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001311 else if (!shaderCaps->fShaderPrecisionVaries) {
1312 shaderCaps->fShaderPrecisionVaries =
1313 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001314 }
1315 }
1316 }
1317 }
1318 }
1319 }
1320 else {
1321 // 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 -05001322 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001323 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1324 if (kGeometry_GrShaderType != s) {
1325 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001326 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1327 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1328 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001329 }
1330 }
1331 }
1332 }
1333 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1334 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1335 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1336 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001337 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001338 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001339 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1340 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001341 }
1342 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001343 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001344}
1345
bsalomon41e4384e2016-01-08 09:12:44 -08001346bool GrGLCaps::bgraIsInternalFormat() const {
1347 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1348}
1349
bsalomon76148af2016-01-12 11:13:47 -08001350bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1351 GrGLenum* internalFormat, GrGLenum* externalFormat,
1352 GrGLenum* externalType) const {
1353 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1354 externalFormat, externalType)) {
1355 return false;
1356 }
1357 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1358 return true;
1359}
1360
1361bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1362 GrGLenum* internalFormat) const {
1363 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1364 return false;
1365 }
1366 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1367 return true;
1368}
1369
1370bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1371 GrGLenum* externalFormat, GrGLenum* externalType) const {
1372 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1373 externalFormat, externalType)) {
1374 return false;
1375 }
1376 return true;
1377}
1378
1379bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1380 if (GrPixelConfigIsCompressed(config)) {
1381 return false;
1382 }
1383 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1384 return true;
1385}
1386
1387bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1388 ExternalFormatUsage usage, GrGLenum* externalFormat,
1389 GrGLenum* externalType) const {
1390 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001391 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001392 return false;
1393 }
1394
1395 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1396 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1397
1398 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1399 // made to work in many cases using glPixelStore and what not but is not needed currently.
1400 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1401 return false;
1402 }
1403
1404 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1405 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1406
bsalomone9573312016-01-25 14:33:25 -08001407 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1408 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1409 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1410 // texture, not the red component.
1411 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1412 if (this->textureRedSupport()) {
1413 SkASSERT(GR_GL_RED == *externalFormat);
1414 *externalFormat = GR_GL_ALPHA;
1415 }
1416 }
1417
bsalomon76148af2016-01-12 11:13:47 -08001418 return true;
1419}
1420
brianosman20471892016-12-02 06:43:32 -08001421void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1422 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001423 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001424 /*
1425 Comments on renderability of configs on various GL versions.
1426 OpenGL < 3.0:
1427 no built in support for render targets.
1428 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1429 format RGB, RGBA and NV float formats we don't use.
1430 This is the following:
1431 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1432 RGB10_A2, RGBA12,RGBA16
1433 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1434 since they aren't required by later standards and the driver can simply return
1435 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1436 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1437 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1438 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1439 This adds a lot of additional renderable sized formats, including ALPHA8.
1440 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1441 16F, 32I, 32UI, and 32F variants).
1442 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1443
1444 For both the above extensions we limit ourselves to those that are also required by
1445 OpenGL 3.0.
1446
1447 OpenGL 3.0:
1448 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1449 but are not required to be supported as renderable textures/renderbuffer.
1450 Required renderable color formats:
1451 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1452 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1453 RGB10_A2.
1454 - R11F_G11F_B10F.
1455 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1456 and RG8UI.
1457 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1458 - ALPHA8
1459
1460 OpenGL 3.1, 3.2, 3.3
1461 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1462 OpengGL 3.3, 4.0, 4.1
1463 Adds RGB10_A2UI.
1464 OpengGL 4.2
1465 Adds
1466 - RGB5_A1, RGBA4
1467 - RGB565
1468 OpenGL 4.4
1469 Does away with the separate list and adds a column to the sized internal color format
1470 table. However, no new formats become required color renderable.
1471
1472 ES 2.0
1473 color renderable: RGBA4, RGB5_A1, RGB565
1474 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1475 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1476 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1477 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1478 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1479 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1480
1481 ES 3.0
1482 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1483 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1484 RGB5_A1.
1485 - RGB8 and RGB565.
1486 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1487 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1488 ES 3.1
1489 Adds RGB10_A2, RGB10_A2UI,
1490 ES 3.2
1491 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1492 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001493 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1494 ConfigInfo::kFBOColorAttachment_Flag;
1495 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001496 if (kNone_MSFBOType != fMSFBOType) {
1497 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1498 }
bsalomon41e4384e2016-01-08 09:12:44 -08001499 GrGLStandard standard = ctxInfo.standard();
1500 GrGLVersion version = ctxInfo.version();
1501
cblume790d5132016-02-29 11:13:29 -08001502 bool texStorageSupported = false;
1503 if (kGL_GrGLStandard == standard) {
1504 // The EXT version can apply to either GL or GLES.
1505 texStorageSupported = version >= GR_GL_VER(4,2) ||
1506 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1507 ctxInfo.hasExtension("GL_EXT_texture_storage");
1508 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001509 texStorageSupported = version >= GR_GL_VER(3,0) ||
1510 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001511 }
1512
1513 // TODO: remove after command buffer supports full ES 3.0
1514 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1515 kChromium_GrGLDriver == ctxInfo.driver()) {
1516 texStorageSupported = false;
1517 }
1518
cdalton74b8d322016-04-11 14:47:28 -07001519 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1520
bsalomon30447372015-12-21 09:03:05 -08001521 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1522 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001523 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001524 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001525 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001526 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001527
1528 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1529 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001530 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1531 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001532 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001533 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001534 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1535 if (kGL_GrGLStandard == standard) {
1536 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1537 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001538 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001539 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1540 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1541 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1542 }
egdaniel4999df82016-01-07 17:06:04 -08001543 }
cblume790d5132016-02-29 11:13:29 -08001544 if (texStorageSupported) {
1545 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1546 }
cdalton74b8d322016-04-11 14:47:28 -07001547 if (texelBufferSupport) {
1548 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1549 }
bsalomoncdee0092016-01-08 13:20:12 -08001550 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001551
bsalomon76148af2016-01-12 11:13:47 -08001552 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1553 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001554 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001555 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001556 if (kGL_GrGLStandard == standard) {
1557 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1558 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1559 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1560 // Since the internal format is RGBA8, it is also renderable.
1561 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1562 allRenderFlags;
1563 }
1564 } else {
1565 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1566 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1567 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1568 // The APPLE extension doesn't make this renderable.
1569 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1570 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1571 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1572 // Though, that seems to not be the case if the texture storage extension is
1573 // present. The specs don't exactly make that clear.
1574 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1575 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1576 }
1577 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1578 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001579 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001580 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001581 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001582 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1583 ConfigInfo::kRenderableWithMSAA_Flag;
1584 }
1585 }
1586 }
cblume790d5132016-02-29 11:13:29 -08001587 if (texStorageSupported) {
1588 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1589 }
bsalomoncdee0092016-01-08 13:20:12 -08001590 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001591
brianosmana6359362016-03-21 06:55:37 -07001592 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001593 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001594 if (kGL_GrGLStandard == standard) {
1595 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001596 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001597 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1598 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1599 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001600 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001601 }
1602 }
1603 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001604 if (fSRGBSupport) {
1605 fSRGBWriteControl = true;
1606 }
bsalomon41e4384e2016-01-08 09:12:44 -08001607 } else {
brianosman20471892016-12-02 06:43:32 -08001608 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1609#if defined(SK_CPU_X86)
1610 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1611 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1612 // blacklist that device (and any others that might be sharing the same driver).
1613 fSRGBSupport = false;
1614 }
1615#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001616 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1617 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001618 // See https://bug.skia.org/5329 for Adreno4xx issue.
1619 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1620 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001621 }
brianosman20471892016-12-02 06:43:32 -08001622 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1623 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1624 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001625 fSRGBSupport = false;
1626 }
brianosman20471892016-12-02 06:43:32 -08001627
1628 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1629 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1630 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1631 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1632 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1633 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1634 // affects Windows.
1635 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1636 fSRGBSupport = false;
1637 }
1638
bsalomon30447372015-12-21 09:03:05 -08001639 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1640 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1641 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1642 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001643 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1644 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001645 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001646 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001647 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001648 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1649 allRenderFlags;
1650 }
cblume790d5132016-02-29 11:13:29 -08001651 if (texStorageSupported) {
1652 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1653 }
bsalomoncdee0092016-01-08 13:20:12 -08001654 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001655
brianosmana6359362016-03-21 06:55:37 -07001656 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1657 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1658 // is in this format, for example).
1659 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1660 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1661 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1662 // external format is GL_BGRA.
1663 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1664 GR_GL_BGRA;
1665 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1666 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1667 if (fSRGBSupport) {
1668 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1669 allRenderFlags;
1670 }
1671 if (texStorageSupported) {
1672 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1673 }
1674 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1675
Brian Salomonbf7b6202016-11-11 16:08:03 -05001676 bool hasIntegerTextures;
1677 if (standard == kGL_GrGLStandard) {
1678 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1679 ctxInfo.hasExtension("GL_EXT_texture_integer");
1680 } else {
1681 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1682 }
1683 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1684 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1685 hasIntegerTextures = false;
1686 }
1687 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1688 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1689 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1690 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1691 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1692 // We currently only support using integer textures as srcs, not for rendering (even though GL
1693 // allows it).
1694 if (hasIntegerTextures) {
1695 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1696 ConfigInfo::kFBOColorAttachment_Flag;
1697 if (texStorageSupported) {
1698 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1699 ConfigInfo::kCanUseTexStorage_Flag;
1700 }
1701 }
1702
bsalomon30447372015-12-21 09:03:05 -08001703 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1704 if (this->ES2CompatibilitySupport()) {
1705 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1706 } else {
1707 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1708 }
bsalomon76148af2016-01-12 11:13:47 -08001709 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1710 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001711 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001712 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001713 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1714 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001715 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001716 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1717 }
1718 } else {
1719 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1720 }
cblume790d5132016-02-29 11:13:29 -08001721 // 565 is not a sized internal format on desktop GL. So on desktop with
1722 // 565 we always use an unsized internal format to let the system pick
1723 // the best sized format to convert the 565 data to. Since TexStorage
1724 // only allows sized internal formats we disallow it.
1725 //
1726 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1727 // update.
1728 if (texStorageSupported && kGL_GrGLStandard != standard) {
1729 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1730 }
bsalomoncdee0092016-01-08 13:20:12 -08001731 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001732
1733 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1734 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001735 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1736 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001737 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001738 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001739 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1740 if (kGL_GrGLStandard == standard) {
1741 if (version >= GR_GL_VER(4, 2)) {
1742 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1743 }
1744 } else {
1745 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1746 }
cblume790d5132016-02-29 11:13:29 -08001747 if (texStorageSupported) {
1748 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1749 }
bsalomoncdee0092016-01-08 13:20:12 -08001750 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001751
Brian Osmanf4faccd2017-01-10 16:53:58 -05001752 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1753 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1754 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001755 if (this->textureRedSupport()) {
1756 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1757 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001758 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1759 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001760 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001761 if (texelBufferSupport) {
1762 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1763 }
bsalomon30447372015-12-21 09:03:05 -08001764 } else {
1765 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1766 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001767 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1768 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001769 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001770 }
bsalomon40170072016-05-05 14:40:03 -07001771 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001772 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1773 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001774 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001775 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1776 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1777 }
cblume790d5132016-02-29 11:13:29 -08001778 if (texStorageSupported) {
1779 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1780 }
bsalomon41e4384e2016-01-08 09:12:44 -08001781
Brian Osmanf4faccd2017-01-10 16:53:58 -05001782 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1783 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1784 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001785 if (this->textureRedSupport()) {
1786 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1787 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1788 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1789 GR_GL_RED;
1790 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1791 if (texelBufferSupport) {
1792 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1793 }
1794 } else {
1795 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1796 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1797 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1798 GR_GL_LUMINANCE;
1799 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1800 }
Brian Osman986563b2017-01-10 14:20:02 -05001801#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1802 if (this->textureRedSupport() ||
1803 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1804 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1805 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1806 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1807 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1808 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1809 }
1810#endif
1811 if (texStorageSupported) {
1812 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1813 }
1814
bsalomon41e4384e2016-01-08 09:12:44 -08001815 // Check for [half] floating point texture support
1816 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1817 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1818 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1819 bool hasFPTextures = false;
1820 bool hasHalfFPTextures = false;
1821 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001822 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001823
1824 if (kGL_GrGLStandard == standard) {
1825 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1826 hasFPTextures = true;
1827 hasHalfFPTextures = true;
1828 }
1829 } else {
1830 if (version >= GR_GL_VER(3, 1)) {
1831 hasFPTextures = true;
1832 hasHalfFPTextures = true;
1833 } else {
1834 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1835 ctxInfo.hasExtension("GL_OES_texture_float")) {
1836 hasFPTextures = true;
1837 }
1838 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1839 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1840 hasHalfFPTextures = true;
1841 }
1842 }
1843 }
bsalomon30447372015-12-21 09:03:05 -08001844
csmartdalton6aa0e112017-02-08 16:14:11 -05001845 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1846 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1847 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1848 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1849 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1850 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1851 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1852 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1853 if (hasFPTextures) {
1854 fConfigTable[fpconfig].fFlags = ConfigInfo::kTextureable_Flag;
1855 // For now we only enable rendering to float on desktop, because on ES we'd have to
1856 // solve many precision issues and no clients actually want this yet.
1857 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1858 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1859 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1860 }
bsalomon41e4384e2016-01-08 09:12:44 -08001861 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001862 if (texStorageSupported) {
1863 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1864 }
1865 if (texelBufferSupport) {
1866 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1867 }
1868 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001869 }
bsalomon30447372015-12-21 09:03:05 -08001870
1871 if (this->textureRedSupport()) {
1872 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1873 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001874 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1875 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001876 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001877 if (texelBufferSupport) {
1878 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1879 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1880 }
bsalomon30447372015-12-21 09:03:05 -08001881 } else {
1882 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1883 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001884 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1885 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001886 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001887 }
Brian Osman3a887252016-11-17 13:27:31 -05001888 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1889 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1890 // returned when we query, but that turns into a bigger refactor, so just work around it.
1891 if (kGL_GrGLStandard == ctxInfo.standard() ||
1892 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001893 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1894 } else {
1895 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1896 }
bsalomon7928ef62016-01-05 10:26:39 -08001897 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001898 if (texStorageSupported) {
1899 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1900 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001901 if (hasHalfFPTextures) {
1902 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1903 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1904 // GL_RED internal format.
1905 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1906 (this->textureRedSupport() &&
1907 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1908 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1909 }
1910 }
bsalomon30447372015-12-21 09:03:05 -08001911
1912 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1913 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001914 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1915 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001916 // See comment above, re: ANGLE and ES3.
1917 if (kGL_GrGLStandard == ctxInfo.standard() ||
1918 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001919 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1920 } else {
1921 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1922 }
bsalomon7928ef62016-01-05 10:26:39 -08001923 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001924 if (hasHalfFPTextures) {
1925 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1926 // ES requires 3.2 or EXT_color_buffer_half_float.
1927 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1928 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1929 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1930 }
1931 }
cblume790d5132016-02-29 11:13:29 -08001932 if (texStorageSupported) {
1933 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1934 }
cdalton74b8d322016-04-11 14:47:28 -07001935 if (texelBufferSupport) {
1936 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1937 }
bsalomoncdee0092016-01-08 13:20:12 -08001938 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001939
1940 // Compressed texture support
1941
1942 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1943 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1944
1945 // TODO: Fix command buffer bindings and remove this.
1946 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001947
1948 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001949 // Below we set the external formats and types to 0.
Robert Phillipsb34727f2017-02-10 14:44:58 -05001950 {
1951 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1952 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat =
1953 GR_GL_COMPRESSED_ETC1_RGB8;
1954 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
1955 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
1956 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1957 if (kGL_GrGLStandard == standard) {
1958 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1959 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1960 }
1961 } else {
1962 if (version >= GR_GL_VER(3, 0) ||
1963 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1964 // ETC2 is a superset of ETC1, so we can just check for that, too.
1965 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1966 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1967 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1968 }
bsalomon41e4384e2016-01-08 09:12:44 -08001969 }
Robert Phillipsb34727f2017-02-10 14:44:58 -05001970 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001971 }
bsalomon30447372015-12-21 09:03:05 -08001972
1973 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1974
1975 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001976 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1977 ctxInfo.version() >= GR_GL_VER(3,0));
1978 // All ES versions (thus far) require sized internal formats for render buffers.
1979 // TODO: Always use sized internal format?
1980 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1981
bsalomon30447372015-12-21 09:03:05 -08001982 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001983 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1984 // param to glTex[Sub]Image.
1985 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1986 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1987 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1988 fConfigTable[i].fFormats.fSizedInternalFormat :
1989 fConfigTable[i].fFormats.fBaseInternalFormat;
1990 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001991 fConfigTable[i].fFormats.fSizedInternalFormat :
1992 fConfigTable[i].fFormats.fBaseInternalFormat;
1993 }
1994 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1995 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1996 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1997 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1998 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001999 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08002000 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07002001
2002 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
2003 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
2004 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
2005 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08002006 }
2007
2008 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
2009 // as a base format.
2010 // GL_EXT_texture_format_BGRA8888:
2011 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2012 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2013 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002014 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002015 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2016 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2017 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002018 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002019 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2020 }
2021
bsalomoncdee0092016-01-08 13:20:12 -08002022 // If we don't have texture swizzle support then the shader generator must insert the
2023 // swizzle into shader code.
2024 if (!this->textureSwizzleSupport()) {
2025 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002026 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002027 }
2028 }
2029
bsalomon7f9b2e42016-01-12 13:29:26 -08002030 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2031 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2032 // gets written to the single component.
2033 if (this->textureRedSupport()) {
2034 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2035 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2036 if (GrPixelConfigIsAlphaOnly(config) &&
2037 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002038 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002039 }
2040 }
2041 }
2042
Brian Salomonf9f45122016-11-29 11:59:17 -05002043 // We currently only support images on rgba textures formats. We could add additional formats
2044 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2045 // (e.g. where we use GL_RED textures to implement alpha configs).
2046 if (this->shaderCaps()->imageLoadStoreSupport()) {
2047 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2048 ConfigInfo::kCanUseAsImageStorage_Flag;
2049 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2050 // immutable via TexStorage. We create non-integer textures as mutable textures using
2051 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2052 // storage support for non-integer textures.
2053 if (kGL_GrGLStandard == ctxInfo.standard()) {
2054 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2055 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2056 ConfigInfo::kCanUseAsImageStorage_Flag;
2057 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2058 }
2059 }
2060
bsalomon30447372015-12-21 09:03:05 -08002061#ifdef SK_DEBUG
2062 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002063 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002064 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002065 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2066 // renderable.
2067 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2068 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002069 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2070 fConfigTable[i].fFormats.fBaseInternalFormat);
2071 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002072 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002073 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2074 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2075 fConfigTable[i].fFormats.fExternalFormat[j]);
2076 }
2077 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002078 }
2079#endif
2080}
2081
csmartdaltone0d36292016-07-29 08:14:20 -07002082void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2083 if (options.fEnableInstancedRendering) {
2084 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2085#ifndef SK_BUILD_FOR_MAC
2086 // OS X doesn't seem to write correctly to floating point textures when using
2087 // glDraw*Indirect, regardless of the underlying GPU.
2088 fAvoidInstancedDrawsToFPTargets = true;
2089#endif
2090 }
2091}