blob: fa2a9e1f69656b95fb60e2e2ba435bf4b9a0307f [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
halcanary9d524f22016-03-29 09:03:52 -0700123 // ARB_texture_rg is part of OpenGL 3.0, but mesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800124 // and GL_RG on FBO textures.
cdalton1acea862015-06-02 13:05:52 -0700125 if (kMesa_GrGLDriver != ctxInfo.driver()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800126 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000127 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
128 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800129 } else {
130 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
131 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000132 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000133 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000134 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000135 ctxInfo.hasExtension("GL_ARB_imaging");
136
egdaniel9250d242015-05-18 13:04:26 -0700137 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
138 // Thus we are blacklisting this extension for now on Adreno4xx devices.
139 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
140 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
141 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
142 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000143 fDiscardRenderTargetSupport = true;
144 fInvalidateFBType = kInvalidate_InvalidateFBType;
145 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
146 fDiscardRenderTargetSupport = true;
147 fInvalidateFBType = kDiscard_InvalidateFBType;
148 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000149
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000150 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
151 fFullClearIsFree = true;
152 }
153
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000154 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000155 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800156 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
157 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000158 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000159 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
160 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000161 }
162
cdalton626e1ff2015-06-12 13:56:46 -0700163 if (kGL_GrGLStandard == standard) {
164 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
165 } else {
166 fDirectStateAccessSupport = false;
167 }
168
169 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
170 fDebugSupport = true;
171 } else {
172 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
173 }
174
jvanverth3f801cb2014-12-16 09:49:38 -0800175 if (kGL_GrGLStandard == standard) {
176 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
177 }
178 else {
179 fES2CompatibilitySupport = true;
180 }
181
cdalton0edea2c2015-05-21 08:27:44 -0700182 if (kGL_GrGLStandard == standard) {
183 fMultisampleDisableSupport = true;
184 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700185 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700186 }
187
kkinnunend94708e2015-07-30 22:47:04 -0700188 if (kGL_GrGLStandard == standard) {
189 if (version >= GR_GL_VER(3, 0)) {
190 fBindFragDataLocationSupport = true;
191 }
192 } else {
193 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
194 fBindFragDataLocationSupport = true;
195 }
joshualittc1f56b52015-06-22 12:31:31 -0700196 }
197
joshualitt7bdd70a2015-10-01 06:28:11 -0700198 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
199
kkinnunene06ed252016-02-16 23:15:40 -0800200 if (kGL_GrGLStandard == standard) {
201 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
202 // We also require textureSize() support for rectangle 2D samplers which was added in
203 // GLSL 1.40.
204 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
205 fRectangleTextureSupport = true;
206 }
bsalomone179a912016-01-20 06:18:10 -0800207 }
kkinnunene06ed252016-02-16 23:15:40 -0800208 } else {
209 // Command buffer exposes this in GL ES context for Chromium reasons,
210 // but it should not be used. Also, at the time of writing command buffer
211 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800212 }
213
bsalomoncdee0092016-01-08 13:20:12 -0800214 if (kGL_GrGLStandard == standard) {
215 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
216 fTextureSwizzleSupport = true;
217 }
218 } else {
219 if (version >= GR_GL_VER(3,0)) {
220 fTextureSwizzleSupport = true;
221 }
222 }
223
cblume09bd2c02016-03-01 14:08:28 -0800224 if (kGL_GrGLStandard == standard) {
225 fMipMapLevelAndLodControlSupport = true;
226 } else if (kGLES_GrGLStandard == standard) {
227 if (version >= GR_GL_VER(3,0)) {
228 fMipMapLevelAndLodControlSupport = true;
229 }
230 }
231
bsalomon88c7b982015-07-31 11:20:16 -0700232#ifdef SK_BUILD_FOR_WIN
233 // We're assuming that on Windows Chromium we're using ANGLE.
234 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
235 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700236 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700237 fRGBA8888PixelsOpsAreSlow = isANGLE;
238 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
239 // check DX11 ANGLE.
240 fPartialFBOReadIsSlow = isANGLE;
241#endif
242
ericrkb4ecabd2016-03-11 15:18:20 -0800243 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
244 bool isMAC = false;
245#ifdef SK_BUILD_FOR_MAC
246 isMAC = true;
247#endif
248
249 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
250 // vis-versa.
251 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
252
cdalton4cd67132015-06-10 19:23:46 -0700253 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700254 * GrShaderCaps fields
255 **************************************************************************/
256
egdaniel0a482332015-10-26 08:59:10 -0700257 // This must be called after fCoreProfile is set on the GrGLCaps
258 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500259 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700260
Brian Salomon1edc5b92016-11-29 13:43:46 -0500261 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
egdaniel05ded892015-10-26 07:38:05 -0700262
263 // For now these two are equivalent but we could have dst read in shader via some other method.
264 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500265 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700266
267 // Enable supported shader-related caps
268 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500269 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700270 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
271 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500272 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700273 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500274 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700275 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500276 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800277 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700278 }
279 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500280 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700281
Brian Salomon1edc5b92016-11-29 13:43:46 -0500282 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700283 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800284
Brian Salomon1edc5b92016-11-29 13:43:46 -0500285 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800286 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700287 }
288
ethannicholas22793252016-01-30 09:59:10 -0800289 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
290 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700291 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500292 &shaderCaps->fPixelLocalStorageSize);
293 shaderCaps->fPLSPathRenderingSupport = shaderCaps->fFBFetchSupport;
ethannicholas22793252016-01-30 09:59:10 -0800294 }
295 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500296 shaderCaps->fPixelLocalStorageSize = 0;
297 shaderCaps->fPLSPathRenderingSupport = false;
ethannicholas22793252016-01-30 09:59:10 -0800298 }
299
cdalton9c3f1432016-03-11 10:07:37 -0800300 // Protect ourselves against tracking huge amounts of texture state.
301 static const uint8_t kMaxSaneSamplers = 32;
302 GrGLint maxSamplers;
303 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500304 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
305 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800306 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500307 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800308 }
309 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500310 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800311 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500312 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800313
Brian Salomonf26f7a02016-11-15 14:05:01 -0500314 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500315 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
316 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500317 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500318 shaderCaps->fImageLoadStoreSupport = true;
319 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500320 }
321 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500322 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500323 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500324 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500325 // Protect ourselves against tracking huge amounts of image state.
326 static constexpr int kMaxSaneImages = 4;
327 GrGLint maxUnits;
328 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500329 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500330 &shaderCaps->fMaxVertexImageStorages);
331 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500332 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500333 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500334 }
335 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500336 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500337 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500338 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500339 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500340 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
341 maxUnits), kMaxSaneImages);
342 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
343 shaderCaps->fMaxVertexImageStorages);
344 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
345 shaderCaps->fMaxGeometryImageStorages);
346 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
347 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500348 }
349
egdaniel05ded892015-10-26 07:38:05 -0700350 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700351 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000352 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700353
cdalton63f6c1f2015-11-06 07:09:43 -0800354 // We need dual source blending and the ability to disable multisample in order to support mixed
355 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800356 if (fMultisampleDisableSupport &&
Brian Salomon1edc5b92016-11-29 13:43:46 -0500357 shaderCaps->dualSourceBlendingSupport() &&
egdanieleed519e2016-01-15 11:36:18 -0800358 fShaderCaps->pathRenderingSupport()) {
359 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800360 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800361 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800362 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
363 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800364 fDiscardRenderTargetSupport = false;
365 fInvalidateFBType = kNone_InvalidateFBType;
366 }
367 }
368
csmartdalton485a1202016-07-13 10:16:32 -0700369 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
370 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
371 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
372 // limit this decision to specific GPU families rather than basing it on the vendor alone.
373 if (!GR_GL_MUST_USE_VBO &&
374 !fIsCoreProfile &&
375 (kARM_GrGLVendor == ctxInfo.vendor() ||
376 kImagination_GrGLVendor == ctxInfo.vendor() ||
377 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
378 fPreferClientSideDynamicBuffers = true;
379 }
380
egdanieleed519e2016-01-15 11:36:18 -0800381 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700382 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700383 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700384 this->initStencilFormats(ctxInfo);
385
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000386 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000387 // we could also look for GL_ATI_separate_stencil extension or
388 // GL_EXT_stencil_two_side but they use different function signatures
389 // than GL2.0+ (and than each other).
390 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
391 // supported on GL 1.4 and higher or by extension
392 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
393 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
394 } else {
395 // ES 2 has two sided stencil and stencil wrap
396 fTwoSidedStencilSupport = true;
397 fStencilWrapOpsSupport = true;
398 }
399
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000400 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000401 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
402 // extension includes glMapBuffer.
403 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
404 fMapBufferFlags |= kSubset_MapFlag;
405 fMapBufferType = kMapBufferRange_MapBufferType;
406 } else {
407 fMapBufferType = kMapBuffer_MapBufferType;
408 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000409 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000410 // Unextended GLES2 doesn't have any buffer mapping.
411 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800412 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800413 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
414 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800415 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
416 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
417 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000418 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
419 fMapBufferFlags = kCanMap_MapFlag;
420 fMapBufferType = kMapBuffer_MapBufferType;
421 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000422 }
423
jvanverthd7a2c1f2015-12-07 07:36:44 -0800424 if (kGL_GrGLStandard == standard) {
425 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
426 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700427 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800428 } else {
429 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
430 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700431 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
432 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800433 }
434 }
435
joshualitte5b74c62015-06-01 14:17:47 -0700436 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
437 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700438 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700439#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500440 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
441 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
442 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700443 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700444#else
cdalton397536c2016-03-25 12:15:03 -0700445 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700446#endif
joshualitte5b74c62015-06-01 14:17:47 -0700447 }
448
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000449 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000450 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
451 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
452 fNPOTTextureTileSupport = true;
453 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000454 } else {
455 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000456 // ES3 has no limitations.
457 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
458 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000459 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
460 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
461 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
462 // to alllow arbitrary wrap modes, however.
463 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000464 }
465
bsalomone72bd022015-10-26 07:33:03 -0700466 // Using MIPs on this GPU seems to be a source of trouble.
467 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
468 fMipMapSupport = false;
469 }
470
bsalomon@google.combcce8922013-03-25 15:38:39 +0000471 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
472 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
473 // Our render targets are always created with textures as the color
474 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000475 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000476
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000477 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
478
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000479 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700480 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000481
robertphillips1b8e1b52015-06-24 06:54:10 -0700482#if 0
483 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
484 kQualcomm_GrGLVendor != ctxInfo.vendor();
485#endif
486
egdaniel05ded892015-10-26 07:38:05 -0700487 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000488 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800489 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000490 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800491 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000492 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800493 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
494 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
495 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
496 // This is to guard against platforms that may not support as many samples for
497 // glRasterSamples as they do for framebuffers.
498 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
499 }
500 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000501
csmartdalton9bc11872016-08-09 12:42:47 -0700502 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
503 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700504 }
505
bsalomon63b21962014-11-05 07:05:34 -0800506 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800507 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800508 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800509 fUseDrawInsteadOfClear = true;
510 }
511
joshualitt83bc2292015-06-18 14:18:02 -0700512 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
513 fUseDrawInsteadOfPartialRenderTargetWrite = true;
514 }
515
bsalomonbabafcc2016-02-16 11:36:47 -0800516 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
517 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
518 fUseDrawInsteadOfPartialRenderTargetWrite = true;
519 fUseDrawInsteadOfAllRenderTargetWrites = true;
520 }
521
robertphillips63926682015-08-20 09:39:02 -0700522#ifdef SK_BUILD_FOR_WIN
523 // On ANGLE deferring flushes can lead to GPU starvation
524 fPreferVRAMUseOverFlushes = !isANGLE;
525#endif
526
bsalomon7dea7b72015-08-19 08:26:51 -0700527 if (kChromium_GrGLDriver == ctxInfo.driver()) {
528 fMustClearUploadedBufferData = true;
529 }
530
bsalomond08ea5f2015-02-20 06:58:13 -0800531 if (kGL_GrGLStandard == standard) {
532 // ARB allows mixed size FBO attachments, EXT does not.
533 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
534 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
535 fOversizedStencilSupport = true;
536 } else {
537 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
538 }
539 } else {
540 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
541 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
542 }
543
joshualitt58001552015-06-26 12:46:36 -0700544 if (kGL_GrGLStandard == standard) {
545 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
546 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700547 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700548 version >= GR_GL_VER(3, 2) ||
549 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
550 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
551 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700552 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700553 version >= GR_GL_VER(3, 0) ||
554 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
555 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
556 }
557
cdalton06604b92016-02-05 10:09:51 -0800558 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700559 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
560 ctxInfo.hasExtension("GL_ARB_draw_indirect");
561 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
562 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700563 (fDrawIndirectSupport &&
564 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700565 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700566 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800567 } else {
568 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700569 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
570 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
571 fBaseInstanceSupport = fDrawIndirectSupport &&
572 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700573 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800574 }
575
Brian Salomon1edc5b92016-11-29 13:43:46 -0500576 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800577
578 if (contextOptions.fUseShaderSwizzling) {
579 fTextureSwizzleSupport = false;
580 }
581
ethannicholas28ef4452016-03-25 09:26:03 -0700582 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700583 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
584 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700585 fSampleShadingSupport = true;
586 }
587 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
588 fSampleShadingSupport = true;
589 }
590
jvanverth84741b32016-09-30 08:39:02 -0700591 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
592 if (kGL_GrGLStandard == standard) {
593 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
594 fFenceSyncSupport = true;
595 }
596 } else if (version >= GR_GL_VER(3, 0)) {
597 fFenceSyncSupport = true;
598 }
599
brianosman131ff132016-06-07 14:22:44 -0700600 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
601 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
602 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
603 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700604 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700605 (contextOptions.fDoManualMipmapping ||
606 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700607 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
608 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700609 fDoManualMipmapping = true;
610 }
611
brianosman20471892016-12-02 06:43:32 -0800612 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800613 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
614 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800615
bsalomoncdee0092016-01-08 13:20:12 -0800616 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
617 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800618 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700619
620 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500621 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000622}
623
egdaniel472d44e2015-10-22 08:20:00 -0700624const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
625 bool isCoreProfile) {
626 switch (generation) {
627 case k110_GrGLSLGeneration:
628 if (kGLES_GrGLStandard == standard) {
629 // ES2s shader language is based on version 1.20 but is version
630 // 1.00 of the ES language.
631 return "#version 100\n";
632 } else {
633 SkASSERT(kGL_GrGLStandard == standard);
634 return "#version 110\n";
635 }
636 case k130_GrGLSLGeneration:
637 SkASSERT(kGL_GrGLStandard == standard);
638 return "#version 130\n";
639 case k140_GrGLSLGeneration:
640 SkASSERT(kGL_GrGLStandard == standard);
641 return "#version 140\n";
642 case k150_GrGLSLGeneration:
643 SkASSERT(kGL_GrGLStandard == standard);
644 if (isCoreProfile) {
645 return "#version 150\n";
646 } else {
647 return "#version 150 compatibility\n";
648 }
649 case k330_GrGLSLGeneration:
650 if (kGLES_GrGLStandard == standard) {
651 return "#version 300 es\n";
652 } else {
653 SkASSERT(kGL_GrGLStandard == standard);
654 if (isCoreProfile) {
655 return "#version 330\n";
656 } else {
657 return "#version 330 compatibility\n";
658 }
659 }
cdalton33ad7012016-02-22 07:55:44 -0800660 case k400_GrGLSLGeneration:
661 SkASSERT(kGL_GrGLStandard == standard);
662 if (isCoreProfile) {
663 return "#version 400\n";
664 } else {
665 return "#version 400 compatibility\n";
666 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500667 case k420_GrGLSLGeneration:
668 SkASSERT(kGL_GrGLStandard == standard);
669 if (isCoreProfile) {
670 return "#version 420\n";
671 }
672 else {
673 return "#version 420 compatibility\n";
674 }
egdaniel472d44e2015-10-22 08:20:00 -0700675 case k310es_GrGLSLGeneration:
676 SkASSERT(kGLES_GrGLStandard == standard);
677 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800678 case k320es_GrGLSLGeneration:
679 SkASSERT(kGLES_GrGLStandard == standard);
680 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700681 }
682 return "<no version>";
683}
684
egdaniel05ded892015-10-26 07:38:05 -0700685void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700686 GrGLStandard standard = ctxInfo.standard();
687 GrGLVersion version = ctxInfo.version();
688
689 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500690 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700691 **************************************************************************/
692
Brian Salomon1edc5b92016-11-29 13:43:46 -0500693 GrShaderCaps* shaderCaps = fShaderCaps.get();
694 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700695 if (kGLES_GrGLStandard == standard) {
696 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500697 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
698 shaderCaps->fFBFetchSupport = true;
699 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
700 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700701 }
702 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
703 // 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 -0500704 shaderCaps->fFBFetchNeedsCustomOutput = false;
705 shaderCaps->fFBFetchSupport = true;
706 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
707 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700708 }
709 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
710 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500711 shaderCaps->fFBFetchNeedsCustomOutput = false;
712 shaderCaps->fFBFetchSupport = true;
713 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
714 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700715 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500716 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700717 }
718
egdaniel7517e452016-09-20 13:00:26 -0700719 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
720 // Galaxy S7.
721 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
722 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500723 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700724 }
725
Brian Salomon1edc5b92016-11-29 13:43:46 -0500726 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700727
cdaltonc08f1962016-02-12 12:14:06 -0800728 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500729 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800730 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500731 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800732 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
733 }
734
735 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500736 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800737 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
738 } else {
739 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500740 shaderCaps->fNoPerspectiveInterpolationSupport = true;
741 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800742 "GL_NV_shader_noperspective_interpolation";
743 }
744 }
745
cdalton33ad7012016-02-22 07:55:44 -0800746 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500747 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800748 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
749 } else {
750 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500751 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800752 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500753 shaderCaps->fMultisampleInterpolationSupport = true;
754 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800755 "GL_OES_shader_multisample_interpolation";
756 }
757 }
758
759 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500760 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800761 } else {
762 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500763 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800764 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500765 shaderCaps->fSampleVariablesSupport = true;
766 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800767 }
768 }
769
Brian Salomon1edc5b92016-11-29 13:43:46 -0500770 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700771 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
772 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500773 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700774 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
775 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800776 }
777
egdaniel472d44e2015-10-22 08:20:00 -0700778 // 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 -0500779 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700780
781 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
782 // function that may require a gradient calculation inside a conditional block may return
783 // undefined results". This appears to be an issue with the 'any' call since even the simple
784 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
785 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500786 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700787
Brian Salomon1edc5b92016-11-29 13:43:46 -0500788 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
789 shaderCaps->fGLSLGeneration,
790 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800791
Brian Salomon1edc5b92016-11-29 13:43:46 -0500792 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
793 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800794 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800795
796 // Frag Coords Convention support is not part of ES
797 // Known issue on at least some Intel platforms:
798 // http://code.google.com/p/skia/issues/detail?id=946
799 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
800 kGLES_GrGLStandard != standard &&
801 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
802 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500803 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800804 }
805
806 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500807 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800808 }
809
cdalton9c3f1432016-03-11 10:07:37 -0800810 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
811 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500812 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800813 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
814 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
815 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500816 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800817 }
818 }
819
Brian Salomon1edc5b92016-11-29 13:43:46 -0500820 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800821 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500822 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800823 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500824 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800825 }
826 }
827
cdaltonc04ce672016-03-11 14:07:38 -0800828 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500829 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800830 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500831 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700832 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
833 }
834
Brian Salomon1edc5b92016-11-29 13:43:46 -0500835 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700836 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500837 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700838 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
839 } else {
840 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
841 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500842 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700843 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500844 shaderCaps->fTexelBufferSupport = true;
845 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700846 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500847 shaderCaps->fTexelBufferSupport = true;
848 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700849 }
cdaltonc04ce672016-03-11 14:07:38 -0800850 }
851 }
852
egdaniel8dcdedc2015-11-11 06:27:20 -0800853 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
854 // the abs first in a separate expression.
855 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500856 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800857 }
858
bsalomon7ea33f52015-11-22 14:51:00 -0800859 // 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 -0800860 // thus must us -1.0 * %s.x to work correctly
861 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500862 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800863 }
egdaniel138c2632016-08-17 10:59:00 -0700864
865 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
866 // the original dst color when reading the outColor even after being written to. By using a
867 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500868 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
869 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700870 }
egdaniel472d44e2015-10-22 08:20:00 -0700871}
872
kkinnunencfe62e32015-07-01 02:58:50 -0700873bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700874 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
875
876 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700877 return false;
878 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700879
kkinnunencfe62e32015-07-01 02:58:50 -0700880 if (kGL_GrGLStandard == ctxInfo.standard()) {
881 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
882 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
883 return false;
884 }
885 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700886 if (!hasChromiumPathRendering &&
887 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700888 return false;
889 }
890 }
891 // We only support v1.3+ of GL_NV_path_rendering which allows us to
892 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
893 // additions are detected by checking the existence of the function.
894 // We also use *Then* functions that not all drivers might have. Check
895 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800896 if (!gli->fFunctions.fStencilThenCoverFillPath ||
897 !gli->fFunctions.fStencilThenCoverStrokePath ||
898 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
899 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
900 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700901 return false;
902 }
903 return true;
904}
bsalomon1aa20292016-01-22 08:16:09 -0800905
Brian Salomon71d9d842016-11-03 13:42:00 -0400906bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800907 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800908 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800909 std::function<bool ()> bindRenderTarget,
910 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400911 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800912 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400913 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800914 return false;
915 }
bsalomon7928ef62016-01-05 10:26:39 -0800916
Brian Salomonbf7b6202016-11-11 16:08:03 -0500917 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
918 return false;
919 }
920
bsalomon76148af2016-01-12 11:13:47 -0800921 GrGLenum readFormat;
922 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400923 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800924 return false;
925 }
926
bsalomon1aa20292016-01-22 08:16:09 -0800927 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800928 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
929 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
930 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
931 // 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 -0500932 // The manual does not seem to fully match the spec as the spec allows integer formats
933 // when the bound color buffer is an integer buffer. It doesn't specify which integer
934 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
bsalomone9573312016-01-25 14:33:25 -0800935 if (readFormat != GR_GL_RED && readFormat != GR_GL_RGB && readFormat != GR_GL_RGBA &&
Brian Salomonbf7b6202016-11-11 16:08:03 -0500936 readFormat != GR_GL_BGRA && readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800937 return false;
938 }
939 // There is also a set of allowed types, but all the types we use are in the set:
940 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
941 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
942 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
943 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
944 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
945 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
946 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800947 return true;
piotaixre4b23142014-10-02 10:57:53 -0700948 }
bsalomon7928ef62016-01-05 10:26:39 -0800949
bsalomon76148af2016-01-12 11:13:47 -0800950 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500951 switch (fConfigTable[surfaceConfig].fFormatType) {
952 case kNormalizedFixedPoint_FormatType:
953 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
954 return true;
955 }
956 break;
957 case kInteger_FormatType:
958 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
959 return true;
960 }
961 break;
962 case kFloat_FormatType:
963 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
964 return true;
965 }
966 break;
bsalomon7928ef62016-01-05 10:26:39 -0800967 }
968
Brian Salomon71d9d842016-11-03 13:42:00 -0400969 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800970 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400971 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800972 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800973 if (!bindRenderTarget()) {
974 return false;
975 }
976 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
977 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800978 rpFormat->fFormat = format;
979 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800980 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800981 }
982
Brian Salomon71d9d842016-11-03 13:42:00 -0400983 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
984 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700985}
986
robertphillips@google.com6177e692013-02-28 20:16:25 +0000987void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000988 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000989 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
990 // ES3 driver bugs on at least one device with a tiled GPU (N10).
991 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
992 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
993 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
994 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800995 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700996 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -0400997 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -0400998 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
999 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001000 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001001 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1002 fMSFBOType = kES_Apple_MSFBOType;
1003 }
bsalomon083617b2016-02-12 12:10:14 -08001004
1005 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1006 // is available.
1007 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001008 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
1009 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001010 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1011 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001012 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1013 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001014 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1015 kResolveMustBeFull_BlitFrambufferFlag |
1016 kNoMSAADst_BlitFramebufferFlag |
1017 kNoFormatConversion_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001018 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001019 } else {
egdanieleed519e2016-01-15 11:36:18 -08001020 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001021 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001022 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001023 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1024 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1025 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001026 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001027 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1028 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001029 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001030 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001031 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001032 }
1033}
1034
cdalton1dd05422015-06-12 09:01:18 -07001035void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001036 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001037
1038 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1039 // for now until its own blacklists can be updated.
1040 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001041 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001042 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001043 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001044 return;
1045 }
1046
1047 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1048 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001049 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001050 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1051 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001052 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001053 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1054 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1055 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1056 return;
1057 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1058 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001059 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001060 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1061 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001062 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001063 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1064 // slow on a particular platform.
1065 } else {
1066 return; // No advanced blend support.
1067 }
1068
1069 SkASSERT(this->advancedBlendEquationSupport());
1070
csmartdalton3b88a032016-08-04 14:43:49 -07001071 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1072 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1073 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001074 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1075 (1 << kColorBurn_GrBlendEquation);
1076 }
joel.liang9764c402015-07-09 19:46:18 -07001077 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1078 // Blacklist color-burn on ARM until the fix is released.
1079 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1080 }
cdalton1dd05422015-06-12 09:01:18 -07001081}
1082
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001083namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001084const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001085}
1086
1087void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1088
1089 // Build up list of legal stencil formats (though perhaps not supported on
1090 // the particular gpu/driver) from most preferred to least.
1091
1092 // these consts are in order of most preferred to least preferred
1093 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1094
1095 static const StencilFormat
1096 // internal Format stencil bits total bits packed?
1097 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1098 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1099 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1100 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001101 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001102 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1103
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001104 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001105 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001106 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001107 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1108 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1109
1110 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1111 // require FBO support we can expect these are legal formats and don't
1112 // check. These also all support the unsized GL_STENCIL_INDEX.
1113 fStencilFormats.push_back() = gS8;
1114 fStencilFormats.push_back() = gS16;
1115 if (supportsPackedDS) {
1116 fStencilFormats.push_back() = gD24S8;
1117 }
1118 fStencilFormats.push_back() = gS4;
1119 if (supportsPackedDS) {
1120 fStencilFormats.push_back() = gDS;
1121 }
1122 } else {
1123 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1124 // for other formats.
1125 // ES doesn't support using the unsized format.
1126
1127 fStencilFormats.push_back() = gS8;
1128 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001129 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1130 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001131 fStencilFormats.push_back() = gD24S8;
1132 }
1133 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1134 fStencilFormats.push_back() = gS4;
1135 }
1136 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001137}
1138
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001139SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001140
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001141 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001142
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001143 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001144 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001145 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001146 i,
1147 fStencilFormats[i].fStencilBits,
1148 fStencilFormats[i].fTotalBits);
1149 }
1150
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001151 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001152 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001153 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001154 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001155 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001156 "IMG MS To Texture",
1157 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001158 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001159 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001160 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001161 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1162 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1163 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1164 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1165 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1166 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001167 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001168
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001169 static const char* kInvalidateFBTypeStr[] = {
1170 "None",
1171 "Discard",
1172 "Invalidate",
1173 };
1174 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1175 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1176 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1177 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001178
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001179 static const char* kMapBufferTypeStr[] = {
1180 "None",
1181 "MapBuffer",
1182 "MapBufferRange",
1183 "Chromium",
1184 };
1185 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1186 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1187 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1188 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1189 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1190
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001191 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001192 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001193 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001194 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001195 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001196 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1197 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1198 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1199 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001200
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001201 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001202 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1203 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001204 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001205 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1206 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001207 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001208 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1209 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1210 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001211 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1212 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001213 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001214 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001215 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001216 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001217 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001218
1219 r.append("Configs\n-------\n");
1220 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1221 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001222 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1223 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001224 i,
1225 fConfigTable[i].fFlags,
1226 fConfigTable[i].fFormats.fBaseInternalFormat,
1227 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001228 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1229 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001230 fConfigTable[i].fFormats.fExternalType,
1231 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001232 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001233 }
1234
jvanverthe9c0fc62015-04-29 11:18:05 -07001235 return r;
1236}
1237
jvanverthe9c0fc62015-04-29 11:18:05 -07001238static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1239 switch (p) {
1240 case kLow_GrSLPrecision:
1241 return GR_GL_LOW_FLOAT;
1242 case kMedium_GrSLPrecision:
1243 return GR_GL_MEDIUM_FLOAT;
1244 case kHigh_GrSLPrecision:
1245 return GR_GL_HIGH_FLOAT;
1246 }
1247 SkFAIL("Unknown precision.");
1248 return -1;
1249}
1250
1251static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1252 switch (type) {
1253 case kVertex_GrShaderType:
1254 return GR_GL_VERTEX_SHADER;
1255 case kGeometry_GrShaderType:
1256 return GR_GL_GEOMETRY_SHADER;
1257 case kFragment_GrShaderType:
1258 return GR_GL_FRAGMENT_SHADER;
1259 }
1260 SkFAIL("Unknown shader type.");
1261 return -1;
1262}
1263
jvanverthcba99b82015-06-24 06:59:57 -07001264void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001265 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001266 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001267 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1268 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1269 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1270 if (kGeometry_GrShaderType != s) {
1271 GrShaderType shaderType = static_cast<GrShaderType>(s);
1272 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001273 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001274 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001275 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1276 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1277 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1278 GrGLint range[2];
1279 GrGLint bits;
1280 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1281 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001282 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1283 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1284 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001285 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001286 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001287 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001288 else if (!shaderCaps->fShaderPrecisionVaries) {
1289 shaderCaps->fShaderPrecisionVaries =
1290 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001291 }
1292 }
1293 }
1294 }
1295 }
1296 }
1297 else {
1298 // 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 -05001299 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001300 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1301 if (kGeometry_GrShaderType != s) {
1302 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001303 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1304 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1305 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001306 }
1307 }
1308 }
1309 }
1310 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1311 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1312 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1313 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001314 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001315 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001316 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1317 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001318 }
1319 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001320 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001321}
1322
bsalomon41e4384e2016-01-08 09:12:44 -08001323bool GrGLCaps::bgraIsInternalFormat() const {
1324 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1325}
1326
bsalomon76148af2016-01-12 11:13:47 -08001327bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1328 GrGLenum* internalFormat, GrGLenum* externalFormat,
1329 GrGLenum* externalType) const {
1330 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1331 externalFormat, externalType)) {
1332 return false;
1333 }
1334 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1335 return true;
1336}
1337
1338bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1339 GrGLenum* internalFormat) const {
1340 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1341 return false;
1342 }
1343 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1344 return true;
1345}
1346
1347bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1348 GrGLenum* externalFormat, GrGLenum* externalType) const {
1349 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1350 externalFormat, externalType)) {
1351 return false;
1352 }
1353 return true;
1354}
1355
1356bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1357 if (GrPixelConfigIsCompressed(config)) {
1358 return false;
1359 }
1360 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1361 return true;
1362}
1363
1364bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1365 ExternalFormatUsage usage, GrGLenum* externalFormat,
1366 GrGLenum* externalType) const {
1367 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001368 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001369 return false;
1370 }
1371
1372 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1373 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1374
1375 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1376 // made to work in many cases using glPixelStore and what not but is not needed currently.
1377 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1378 return false;
1379 }
1380
1381 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1382 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1383
bsalomone9573312016-01-25 14:33:25 -08001384 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1385 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1386 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1387 // texture, not the red component.
1388 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1389 if (this->textureRedSupport()) {
1390 SkASSERT(GR_GL_RED == *externalFormat);
1391 *externalFormat = GR_GL_ALPHA;
1392 }
1393 }
1394
bsalomon76148af2016-01-12 11:13:47 -08001395 return true;
1396}
1397
brianosman20471892016-12-02 06:43:32 -08001398void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1399 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001400 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001401 /*
1402 Comments on renderability of configs on various GL versions.
1403 OpenGL < 3.0:
1404 no built in support for render targets.
1405 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1406 format RGB, RGBA and NV float formats we don't use.
1407 This is the following:
1408 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1409 RGB10_A2, RGBA12,RGBA16
1410 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1411 since they aren't required by later standards and the driver can simply return
1412 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1413 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1414 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1415 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1416 This adds a lot of additional renderable sized formats, including ALPHA8.
1417 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1418 16F, 32I, 32UI, and 32F variants).
1419 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1420
1421 For both the above extensions we limit ourselves to those that are also required by
1422 OpenGL 3.0.
1423
1424 OpenGL 3.0:
1425 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1426 but are not required to be supported as renderable textures/renderbuffer.
1427 Required renderable color formats:
1428 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1429 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1430 RGB10_A2.
1431 - R11F_G11F_B10F.
1432 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1433 and RG8UI.
1434 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1435 - ALPHA8
1436
1437 OpenGL 3.1, 3.2, 3.3
1438 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1439 OpengGL 3.3, 4.0, 4.1
1440 Adds RGB10_A2UI.
1441 OpengGL 4.2
1442 Adds
1443 - RGB5_A1, RGBA4
1444 - RGB565
1445 OpenGL 4.4
1446 Does away with the separate list and adds a column to the sized internal color format
1447 table. However, no new formats become required color renderable.
1448
1449 ES 2.0
1450 color renderable: RGBA4, RGB5_A1, RGB565
1451 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1452 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1453 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1454 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1455 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1456 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1457
1458 ES 3.0
1459 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1460 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1461 RGB5_A1.
1462 - RGB8 and RGB565.
1463 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1464 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1465 ES 3.1
1466 Adds RGB10_A2, RGB10_A2UI,
1467 ES 3.2
1468 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1469 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001470 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1471 ConfigInfo::kFBOColorAttachment_Flag;
1472 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001473 if (kNone_MSFBOType != fMSFBOType) {
1474 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1475 }
bsalomon41e4384e2016-01-08 09:12:44 -08001476 GrGLStandard standard = ctxInfo.standard();
1477 GrGLVersion version = ctxInfo.version();
1478
cblume790d5132016-02-29 11:13:29 -08001479 bool texStorageSupported = false;
1480 if (kGL_GrGLStandard == standard) {
1481 // The EXT version can apply to either GL or GLES.
1482 texStorageSupported = version >= GR_GL_VER(4,2) ||
1483 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1484 ctxInfo.hasExtension("GL_EXT_texture_storage");
1485 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001486 texStorageSupported = version >= GR_GL_VER(3,0) ||
1487 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001488 }
1489
1490 // TODO: remove after command buffer supports full ES 3.0
1491 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1492 kChromium_GrGLDriver == ctxInfo.driver()) {
1493 texStorageSupported = false;
1494 }
1495
cdalton74b8d322016-04-11 14:47:28 -07001496 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1497
bsalomon30447372015-12-21 09:03:05 -08001498 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1499 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001500 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001501 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001502 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001503 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001504
1505 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1506 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001507 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1508 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001509 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001510 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001511 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1512 if (kGL_GrGLStandard == standard) {
1513 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1514 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001515 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001516 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1517 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1518 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1519 }
egdaniel4999df82016-01-07 17:06:04 -08001520 }
cblume790d5132016-02-29 11:13:29 -08001521 if (texStorageSupported) {
1522 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1523 }
cdalton74b8d322016-04-11 14:47:28 -07001524 if (texelBufferSupport) {
1525 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1526 }
bsalomoncdee0092016-01-08 13:20:12 -08001527 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001528
bsalomon76148af2016-01-12 11:13:47 -08001529 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1530 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001531 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001532 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001533 if (kGL_GrGLStandard == standard) {
1534 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1535 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1536 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1537 // Since the internal format is RGBA8, it is also renderable.
1538 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1539 allRenderFlags;
1540 }
1541 } else {
1542 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1543 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1544 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1545 // The APPLE extension doesn't make this renderable.
1546 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1547 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1548 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1549 // Though, that seems to not be the case if the texture storage extension is
1550 // present. The specs don't exactly make that clear.
1551 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1552 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1553 }
1554 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1555 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001556 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001557 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001558 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001559 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1560 ConfigInfo::kRenderableWithMSAA_Flag;
1561 }
1562 }
1563 }
cblume790d5132016-02-29 11:13:29 -08001564 if (texStorageSupported) {
1565 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1566 }
bsalomoncdee0092016-01-08 13:20:12 -08001567 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001568
brianosmana6359362016-03-21 06:55:37 -07001569 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001570 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001571 if (kGL_GrGLStandard == standard) {
1572 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001573 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001574 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1575 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1576 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001577 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001578 }
1579 }
1580 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001581 if (fSRGBSupport) {
1582 fSRGBWriteControl = true;
1583 }
bsalomon41e4384e2016-01-08 09:12:44 -08001584 } else {
brianosman20471892016-12-02 06:43:32 -08001585 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1586#if defined(SK_CPU_X86)
1587 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1588 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1589 // blacklist that device (and any others that might be sharing the same driver).
1590 fSRGBSupport = false;
1591 }
1592#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001593 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1594 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001595 // See https://bug.skia.org/5329 for Adreno4xx issue.
1596 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1597 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001598 }
brianosman20471892016-12-02 06:43:32 -08001599 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1600 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1601 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001602 fSRGBSupport = false;
1603 }
brianosman20471892016-12-02 06:43:32 -08001604
1605 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1606 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1607 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1608 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1609 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1610 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1611 // affects Windows.
1612 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1613 fSRGBSupport = false;
1614 }
1615
bsalomon30447372015-12-21 09:03:05 -08001616 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1617 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1618 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1619 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001620 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1621 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001622 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001623 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001624 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001625 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1626 allRenderFlags;
1627 }
cblume790d5132016-02-29 11:13:29 -08001628 if (texStorageSupported) {
1629 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1630 }
bsalomoncdee0092016-01-08 13:20:12 -08001631 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001632
brianosmana6359362016-03-21 06:55:37 -07001633 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1634 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1635 // is in this format, for example).
1636 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1637 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1638 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1639 // external format is GL_BGRA.
1640 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1641 GR_GL_BGRA;
1642 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1643 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1644 if (fSRGBSupport) {
1645 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1646 allRenderFlags;
1647 }
1648 if (texStorageSupported) {
1649 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1650 }
1651 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1652
Brian Salomonbf7b6202016-11-11 16:08:03 -05001653 bool hasIntegerTextures;
1654 if (standard == kGL_GrGLStandard) {
1655 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1656 ctxInfo.hasExtension("GL_EXT_texture_integer");
1657 } else {
1658 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1659 }
1660 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1661 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1662 hasIntegerTextures = false;
1663 }
1664 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1665 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1666 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1667 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1668 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1669 // We currently only support using integer textures as srcs, not for rendering (even though GL
1670 // allows it).
1671 if (hasIntegerTextures) {
1672 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1673 ConfigInfo::kFBOColorAttachment_Flag;
1674 if (texStorageSupported) {
1675 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1676 ConfigInfo::kCanUseTexStorage_Flag;
1677 }
1678 }
1679
bsalomon30447372015-12-21 09:03:05 -08001680 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1681 if (this->ES2CompatibilitySupport()) {
1682 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1683 } else {
1684 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1685 }
bsalomon76148af2016-01-12 11:13:47 -08001686 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1687 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001688 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001689 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001690 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1691 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001692 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001693 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1694 }
1695 } else {
1696 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1697 }
cblume790d5132016-02-29 11:13:29 -08001698 // 565 is not a sized internal format on desktop GL. So on desktop with
1699 // 565 we always use an unsized internal format to let the system pick
1700 // the best sized format to convert the 565 data to. Since TexStorage
1701 // only allows sized internal formats we disallow it.
1702 //
1703 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1704 // update.
1705 if (texStorageSupported && kGL_GrGLStandard != standard) {
1706 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1707 }
bsalomoncdee0092016-01-08 13:20:12 -08001708 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001709
1710 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1711 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001712 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1713 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001714 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001715 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001716 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1717 if (kGL_GrGLStandard == standard) {
1718 if (version >= GR_GL_VER(4, 2)) {
1719 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1720 }
1721 } else {
1722 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1723 }
cblume790d5132016-02-29 11:13:29 -08001724 if (texStorageSupported) {
1725 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1726 }
bsalomoncdee0092016-01-08 13:20:12 -08001727 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001728
Brian Osmanf4faccd2017-01-10 16:53:58 -05001729 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1730 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1731 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001732 if (this->textureRedSupport()) {
1733 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1734 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001735 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1736 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001737 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001738 if (texelBufferSupport) {
1739 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1740 }
bsalomon30447372015-12-21 09:03:05 -08001741 } else {
1742 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1743 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1745 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001746 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001747 }
bsalomon40170072016-05-05 14:40:03 -07001748 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001749 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1750 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001751 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001752 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1753 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1754 }
cblume790d5132016-02-29 11:13:29 -08001755 if (texStorageSupported) {
1756 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1757 }
bsalomon41e4384e2016-01-08 09:12:44 -08001758
Brian Osmanf4faccd2017-01-10 16:53:58 -05001759 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1760 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1761 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001762 if (this->textureRedSupport()) {
1763 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1764 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1765 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1766 GR_GL_RED;
1767 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1768 if (texelBufferSupport) {
1769 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1770 }
1771 } else {
1772 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1773 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1775 GR_GL_LUMINANCE;
1776 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1777 }
Brian Osman986563b2017-01-10 14:20:02 -05001778#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1779 if (this->textureRedSupport() ||
1780 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1781 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1782 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1783 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1784 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1785 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1786 }
1787#endif
1788 if (texStorageSupported) {
1789 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1790 }
1791
bsalomon41e4384e2016-01-08 09:12:44 -08001792 // Check for [half] floating point texture support
1793 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1794 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1795 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1796 bool hasFPTextures = false;
1797 bool hasHalfFPTextures = false;
1798 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001799 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001800
1801 if (kGL_GrGLStandard == standard) {
1802 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1803 hasFPTextures = true;
1804 hasHalfFPTextures = true;
1805 }
1806 } else {
1807 if (version >= GR_GL_VER(3, 1)) {
1808 hasFPTextures = true;
1809 hasHalfFPTextures = true;
1810 } else {
1811 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1812 ctxInfo.hasExtension("GL_OES_texture_float")) {
1813 hasFPTextures = true;
1814 }
1815 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1816 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1817 hasHalfFPTextures = true;
1818 }
1819 }
1820 }
bsalomon30447372015-12-21 09:03:05 -08001821
1822 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1823 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA32F;
bsalomon76148af2016-01-12 11:13:47 -08001824 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1825 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001826 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalType = GR_GL_FLOAT;
bsalomon7928ef62016-01-05 10:26:39 -08001827 fConfigTable[kRGBA_float_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001828 if (hasFPTextures) {
1829 fConfigTable[kRGBA_float_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1830 // For now we only enable rendering to float on desktop, because on ES we'd have to solve
1831 // many precision issues and no clients actually want this yet.
1832 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1833 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1834 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= fpRenderFlags;
1835 }
1836 }
cblume790d5132016-02-29 11:13:29 -08001837 if (texStorageSupported) {
1838 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1839 }
cdalton74b8d322016-04-11 14:47:28 -07001840 if (texelBufferSupport) {
1841 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1842 }
bsalomoncdee0092016-01-08 13:20:12 -08001843 fConfigTable[kRGBA_float_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001844
Brian Osmanf4faccd2017-01-10 16:53:58 -05001845 if (hasHalfFPTextures) {
1846 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1847 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1848 // GL_RED internal format.
1849 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1850 (this->textureRedSupport() &&
1851 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1852 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1853 }
1854 }
bsalomon30447372015-12-21 09:03:05 -08001855 if (this->textureRedSupport()) {
1856 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1857 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001858 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1859 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001860 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001861 if (texelBufferSupport) {
1862 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1863 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1864 }
bsalomon30447372015-12-21 09:03:05 -08001865 } else {
1866 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1867 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001868 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1869 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001870 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001871 }
Brian Osman3a887252016-11-17 13:27:31 -05001872 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1873 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1874 // returned when we query, but that turns into a bigger refactor, so just work around it.
1875 if (kGL_GrGLStandard == ctxInfo.standard() ||
1876 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001877 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1878 } else {
1879 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1880 }
bsalomon7928ef62016-01-05 10:26:39 -08001881 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001882 if (texStorageSupported) {
1883 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1884 }
bsalomon30447372015-12-21 09:03:05 -08001885
1886 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1887 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001888 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1889 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001890 // See comment above, re: ANGLE and ES3.
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[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1894 } else {
1895 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1896 }
bsalomon7928ef62016-01-05 10:26:39 -08001897 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001898 if (hasHalfFPTextures) {
1899 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1900 // ES requires 3.2 or EXT_color_buffer_half_float.
1901 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1902 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1903 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1904 }
1905 }
cblume790d5132016-02-29 11:13:29 -08001906 if (texStorageSupported) {
1907 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1908 }
cdalton74b8d322016-04-11 14:47:28 -07001909 if (texelBufferSupport) {
1910 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1911 }
bsalomoncdee0092016-01-08 13:20:12 -08001912 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001913
1914 // Compressed texture support
1915
1916 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1917 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1918
1919 // TODO: Fix command buffer bindings and remove this.
1920 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001921
1922 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001923 // Below we set the external formats and types to 0.
bsalomon30447372015-12-21 09:03:05 -08001924
1925 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_PALETTE8_RGBA8;
1926 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001927 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001928 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001929 fConfigTable[kIndex_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001930 // Disable this for now, while we investigate https://bug.skia.org/4333
Brian Salomoneaabe002016-10-11 14:40:33 -07001931 if ((false)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001932 // Check for 8-bit palette..
1933 GrGLint numFormats;
1934 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
1935 if (numFormats) {
1936 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
1937 GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
1938 for (int i = 0; i < numFormats; ++i) {
1939 if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
1940 fConfigTable[kIndex_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1941 break;
1942 }
1943 }
1944 }
1945 }
bsalomoncdee0092016-01-08 13:20:12 -08001946 fConfigTable[kIndex_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001947
bsalomon41e4384e2016-01-08 09:12:44 -08001948 // May change the internal format based on extensions.
1949 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1950 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1951 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1952 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1953 if (ctxInfo.hasExtension("GL_EXT_texture_compression_latc") ||
1954 ctxInfo.hasExtension("GL_NV_texture_compression_latc")) {
1955 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1956 } else if ((kGL_GrGLStandard == standard && version >= GR_GL_VER(3, 0)) ||
1957 ctxInfo.hasExtension("GL_EXT_texture_compression_rgtc") ||
1958 ctxInfo.hasExtension("GL_ARB_texture_compression_rgtc")) {
1959 // RGTC is identical and available on OpenGL 3.0+ as well as with extensions
1960 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1961 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1962 GR_GL_COMPRESSED_RED_RGTC1;
1963 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1964 GR_GL_COMPRESSED_RED_RGTC1;
1965 } else if (ctxInfo.hasExtension("GL_AMD_compressed_3DC_texture")) {
1966 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1967 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_3DC_X;
1968 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1969 GR_GL_COMPRESSED_3DC_X;
1970
bsalomon30447372015-12-21 09:03:05 -08001971 }
bsalomon76148af2016-01-12 11:13:47 -08001972 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001973 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001974 fConfigTable[kLATC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001975 fConfigTable[kLATC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001976
1977 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1978 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
bsalomon76148af2016-01-12 11:13:47 -08001979 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001980 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001981 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001982 if (kGL_GrGLStandard == standard) {
1983 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1984 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1985 }
1986 } else {
1987 if (version >= GR_GL_VER(3, 0) ||
1988 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1989 // ETC2 is a superset of ETC1, so we can just check for that, too.
1990 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1991 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1992 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1993 }
1994 }
bsalomoncdee0092016-01-08 13:20:12 -08001995 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001996
1997 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_R11_EAC;
1998 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_R11_EAC;
bsalomon76148af2016-01-12 11:13:47 -08001999 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08002000 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08002001 fConfigTable[kR11_EAC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08002002 // Check for R11_EAC. We don't support R11_EAC on desktop, as most cards default to
2003 // decompressing the textures in the driver, and is generally slower.
2004 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) {
2005 fConfigTable[kR11_EAC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
2006 }
bsalomoncdee0092016-01-08 13:20:12 -08002007 fConfigTable[kR11_EAC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08002008
2009 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fBaseInternalFormat =
2010 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
2011 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fSizedInternalFormat =
2012 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
bsalomon76148af2016-01-12 11:13:47 -08002013 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
2014 0;
bsalomon30447372015-12-21 09:03:05 -08002015 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08002016 fConfigTable[kASTC_12x12_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08002017 if (ctxInfo.hasExtension("GL_KHR_texture_compression_astc_hdr") ||
2018 ctxInfo.hasExtension("GL_KHR_texture_compression_astc_ldr") ||
2019 ctxInfo.hasExtension("GL_OES_texture_compression_astc")) {
2020 fConfigTable[kASTC_12x12_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
2021 }
bsalomoncdee0092016-01-08 13:20:12 -08002022 fConfigTable[kASTC_12x12_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08002023
2024 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
2025
2026 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08002027 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
2028 ctxInfo.version() >= GR_GL_VER(3,0));
2029 // All ES versions (thus far) require sized internal formats for render buffers.
2030 // TODO: Always use sized internal format?
2031 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
2032
bsalomon30447372015-12-21 09:03:05 -08002033 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08002034 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
2035 // param to glTex[Sub]Image.
2036 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
2037 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
2038 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
2039 fConfigTable[i].fFormats.fSizedInternalFormat :
2040 fConfigTable[i].fFormats.fBaseInternalFormat;
2041 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08002042 fConfigTable[i].fFormats.fSizedInternalFormat :
2043 fConfigTable[i].fFormats.fBaseInternalFormat;
2044 }
2045 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
2046 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
2047 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
2048 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
2049 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08002050 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08002051 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07002052
2053 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
2054 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
2055 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
2056 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08002057 }
2058
2059 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
2060 // as a base format.
2061 // GL_EXT_texture_format_BGRA8888:
2062 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2063 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2064 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002065 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002066 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2067 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2068 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002069 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002070 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2071 }
2072
bsalomoncdee0092016-01-08 13:20:12 -08002073 // If we don't have texture swizzle support then the shader generator must insert the
2074 // swizzle into shader code.
2075 if (!this->textureSwizzleSupport()) {
2076 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002077 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002078 }
2079 }
2080
bsalomon7f9b2e42016-01-12 13:29:26 -08002081 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2082 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2083 // gets written to the single component.
2084 if (this->textureRedSupport()) {
2085 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2086 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2087 if (GrPixelConfigIsAlphaOnly(config) &&
2088 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002089 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002090 }
2091 }
2092 }
2093
Brian Salomonf9f45122016-11-29 11:59:17 -05002094 // We currently only support images on rgba textures formats. We could add additional formats
2095 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2096 // (e.g. where we use GL_RED textures to implement alpha configs).
2097 if (this->shaderCaps()->imageLoadStoreSupport()) {
2098 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2099 ConfigInfo::kCanUseAsImageStorage_Flag;
2100 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2101 // immutable via TexStorage. We create non-integer textures as mutable textures using
2102 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2103 // storage support for non-integer textures.
2104 if (kGL_GrGLStandard == ctxInfo.standard()) {
2105 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2106 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2107 ConfigInfo::kCanUseAsImageStorage_Flag;
2108 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2109 }
2110 }
2111
bsalomon30447372015-12-21 09:03:05 -08002112#ifdef SK_DEBUG
2113 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002114 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002115 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002116 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2117 // renderable.
2118 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2119 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002120 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2121 fConfigTable[i].fFormats.fBaseInternalFormat);
2122 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002123 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002124 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2125 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2126 fConfigTable[i].fFormats.fExternalFormat[j]);
2127 }
2128 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002129 }
2130#endif
2131}
2132
csmartdaltone0d36292016-07-29 08:14:20 -07002133void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2134 if (options.fEnableInstancedRendering) {
2135 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2136#ifndef SK_BUILD_FOR_MAC
2137 // OS X doesn't seem to write correctly to floating point textures when using
2138 // glDraw*Indirect, regardless of the underlying GPU.
2139 fAvoidInstancedDrawsToFPTargets = true;
2140#endif
2141 }
2142}