blob: 4d856ac9320d9b1b58e5a3e9f0d1d8b1eb4583d9 [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"
jvanverthcba99b82015-06-24 06:59:57 -070014#include "glsl/GrGLSLCaps.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;
piotaixre4b23142014-10-02 10:57:53 -070054
bsalomon083617b2016-02-12 12:10:14 -080055 fBlitFramebufferSupport = kNone_BlitFramebufferSupport;
56
halcanary385fe4d2015-08-26 13:07:48 -070057 fShaderCaps.reset(new GrGLSLCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070058
cdalton4cd67132015-06-10 19:23:46 -070059 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000060}
61
cdalton4cd67132015-06-10 19:23:46 -070062void GrGLCaps::init(const GrContextOptions& contextOptions,
63 const GrGLContextInfo& ctxInfo,
64 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000065 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000066 GrGLVersion version = ctxInfo.version();
67
bsalomon@google.combcce8922013-03-25 15:38:39 +000068 /**************************************************************************
69 * Caps specific to GrGLCaps
70 **************************************************************************/
71
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000072 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000073 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
74 &fMaxFragmentUniformVectors);
75 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000076 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000077 GrGLint max;
78 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
79 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000080 if (version >= GR_GL_VER(3, 2)) {
81 GrGLint profileMask;
82 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
83 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
84 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000085 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000086 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000087
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000088 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000089 fUnpackRowLengthSupport = true;
90 fUnpackFlipYSupport = false;
91 fPackRowLengthSupport = true;
92 fPackFlipYSupport = false;
93 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000094 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
95 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000096 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000097 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
98 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000099 fPackFlipYSupport =
100 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
101 }
102
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000103 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000104 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
105
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000106 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700107 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
108 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
109 ctxInfo.hasExtension("GL_NV_texture_barrier");
110 } else {
111 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
112 }
113
cdaltoneb79eea2016-02-26 10:39:34 -0800114 if (kGL_GrGLStandard == standard) {
115 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
116 ctxInfo.hasExtension("GL_ARB_texture_multisample");
117 } else {
118 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
119 }
120
halcanary9d524f22016-03-29 09:03:52 -0700121 // ARB_texture_rg is part of OpenGL 3.0, but mesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800122 // and GL_RG on FBO textures.
cdalton1acea862015-06-02 13:05:52 -0700123 if (kMesa_GrGLDriver != ctxInfo.driver()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800124 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000125 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
126 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800127 } else {
128 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
129 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000130 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000131 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000132 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000133 ctxInfo.hasExtension("GL_ARB_imaging");
134
egdaniel9250d242015-05-18 13:04:26 -0700135 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
136 // Thus we are blacklisting this extension for now on Adreno4xx devices.
137 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
138 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
139 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
140 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000141 fDiscardRenderTargetSupport = true;
142 fInvalidateFBType = kInvalidate_InvalidateFBType;
143 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
144 fDiscardRenderTargetSupport = true;
145 fInvalidateFBType = kDiscard_InvalidateFBType;
146 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000147
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000148 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
149 fFullClearIsFree = true;
150 }
151
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000152 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000153 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800154 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
155 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000156 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000157 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
158 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000159 }
160
cdalton626e1ff2015-06-12 13:56:46 -0700161 if (kGL_GrGLStandard == standard) {
162 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
163 } else {
164 fDirectStateAccessSupport = false;
165 }
166
167 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
168 fDebugSupport = true;
169 } else {
170 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
171 }
172
jvanverth3f801cb2014-12-16 09:49:38 -0800173 if (kGL_GrGLStandard == standard) {
174 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
175 }
176 else {
177 fES2CompatibilitySupport = true;
178 }
179
cdalton0edea2c2015-05-21 08:27:44 -0700180 if (kGL_GrGLStandard == standard) {
181 fMultisampleDisableSupport = true;
182 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700183 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700184 }
185
kkinnunend94708e2015-07-30 22:47:04 -0700186 if (kGL_GrGLStandard == standard) {
187 if (version >= GR_GL_VER(3, 0)) {
188 fBindFragDataLocationSupport = true;
189 }
190 } else {
191 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
192 fBindFragDataLocationSupport = true;
193 }
joshualittc1f56b52015-06-22 12:31:31 -0700194 }
195
joshualitt7bdd70a2015-10-01 06:28:11 -0700196 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
197
kkinnunene06ed252016-02-16 23:15:40 -0800198 if (kGL_GrGLStandard == standard) {
199 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
200 // We also require textureSize() support for rectangle 2D samplers which was added in
201 // GLSL 1.40.
202 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
203 fRectangleTextureSupport = true;
204 }
bsalomone179a912016-01-20 06:18:10 -0800205 }
kkinnunene06ed252016-02-16 23:15:40 -0800206 } else {
207 // Command buffer exposes this in GL ES context for Chromium reasons,
208 // but it should not be used. Also, at the time of writing command buffer
209 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800210 }
211
bsalomoncdee0092016-01-08 13:20:12 -0800212 if (kGL_GrGLStandard == standard) {
213 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
214 fTextureSwizzleSupport = true;
215 }
216 } else {
217 if (version >= GR_GL_VER(3,0)) {
218 fTextureSwizzleSupport = true;
219 }
220 }
221
cblume09bd2c02016-03-01 14:08:28 -0800222 if (kGL_GrGLStandard == standard) {
223 fMipMapLevelAndLodControlSupport = true;
224 } else if (kGLES_GrGLStandard == standard) {
225 if (version >= GR_GL_VER(3,0)) {
226 fMipMapLevelAndLodControlSupport = true;
227 }
228 }
229
bsalomon88c7b982015-07-31 11:20:16 -0700230#ifdef SK_BUILD_FOR_WIN
231 // We're assuming that on Windows Chromium we're using ANGLE.
232 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
233 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700234 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700235 fRGBA8888PixelsOpsAreSlow = isANGLE;
236 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
237 // check DX11 ANGLE.
238 fPartialFBOReadIsSlow = isANGLE;
239#endif
240
ericrkb4ecabd2016-03-11 15:18:20 -0800241 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
242 bool isMAC = false;
243#ifdef SK_BUILD_FOR_MAC
244 isMAC = true;
245#endif
246
247 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
248 // vis-versa.
249 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
250
cdalton4cd67132015-06-10 19:23:46 -0700251 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700252 * GrShaderCaps fields
253 **************************************************************************/
254
egdaniel0a482332015-10-26 08:59:10 -0700255 // This must be called after fCoreProfile is set on the GrGLCaps
256 this->initGLSL(ctxInfo);
257 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
258
egdaniel05ded892015-10-26 07:38:05 -0700259 glslCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
260
261 // For now these two are equivalent but we could have dst read in shader via some other method.
262 // Before setting this, initGLSL() must have been called.
263 glslCaps->fDstReadInShaderSupport = glslCaps->fFBFetchSupport;
264
265 // Enable supported shader-related caps
266 if (kGL_GrGLStandard == standard) {
267 glslCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
268 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
269 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
270 glslCaps->fShaderDerivativeSupport = true;
271 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
272 glslCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
273 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
cdalton793dc262016-02-08 10:11:47 -0800274 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
275 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700276 }
277 else {
278 glslCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
279
280 glslCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
281 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800282
283 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
284 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700285 }
286
ethannicholas22793252016-01-30 09:59:10 -0800287 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
288 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700289 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
ethannicholas22793252016-01-30 09:59:10 -0800290 &glslCaps->fPixelLocalStorageSize);
291 glslCaps->fPLSPathRenderingSupport = glslCaps->fFBFetchSupport;
292 }
293 else {
294 glslCaps->fPixelLocalStorageSize = 0;
295 glslCaps->fPLSPathRenderingSupport = false;
296 }
297
cdalton9c3f1432016-03-11 10:07:37 -0800298 // Protect ourselves against tracking huge amounts of texture state.
299 static const uint8_t kMaxSaneSamplers = 32;
300 GrGLint maxSamplers;
301 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
302 glslCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
303 if (glslCaps->fGeometryShaderSupport) {
304 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
305 glslCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
306 }
307 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
308 glslCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
309 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
310 glslCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
311
egdaniel05ded892015-10-26 07:38:05 -0700312 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700313 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000314 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700315
cdalton63f6c1f2015-11-06 07:09:43 -0800316 // We need dual source blending and the ability to disable multisample in order to support mixed
317 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800318 if (fMultisampleDisableSupport &&
319 glslCaps->dualSourceBlendingSupport() &&
320 fShaderCaps->pathRenderingSupport()) {
321 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800322 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800323 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800324 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
325 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800326 fDiscardRenderTargetSupport = false;
327 fInvalidateFBType = kNone_InvalidateFBType;
328 }
329 }
330
csmartdalton485a1202016-07-13 10:16:32 -0700331 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
332 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
333 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
334 // limit this decision to specific GPU families rather than basing it on the vendor alone.
335 if (!GR_GL_MUST_USE_VBO &&
336 !fIsCoreProfile &&
337 (kARM_GrGLVendor == ctxInfo.vendor() ||
338 kImagination_GrGLVendor == ctxInfo.vendor() ||
339 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
340 fPreferClientSideDynamicBuffers = true;
341 }
342
egdanieleed519e2016-01-15 11:36:18 -0800343 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700344 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700345 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700346 this->initStencilFormats(ctxInfo);
347
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000348 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000349 // we could also look for GL_ATI_separate_stencil extension or
350 // GL_EXT_stencil_two_side but they use different function signatures
351 // than GL2.0+ (and than each other).
352 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
353 // supported on GL 1.4 and higher or by extension
354 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
355 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
356 } else {
357 // ES 2 has two sided stencil and stencil wrap
358 fTwoSidedStencilSupport = true;
359 fStencilWrapOpsSupport = true;
360 }
361
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000362 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000363 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
364 // extension includes glMapBuffer.
365 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
366 fMapBufferFlags |= kSubset_MapFlag;
367 fMapBufferType = kMapBufferRange_MapBufferType;
368 } else {
369 fMapBufferType = kMapBuffer_MapBufferType;
370 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000371 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000372 // Unextended GLES2 doesn't have any buffer mapping.
373 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800374 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800375 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
376 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800377 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
378 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
379 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000380 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
381 fMapBufferFlags = kCanMap_MapFlag;
382 fMapBufferType = kMapBuffer_MapBufferType;
383 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000384 }
385
jvanverthd7a2c1f2015-12-07 07:36:44 -0800386 if (kGL_GrGLStandard == standard) {
387 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
388 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700389 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800390 } else {
391 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
392 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700393 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
394 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800395 }
396 }
397
joshualitte5b74c62015-06-01 14:17:47 -0700398 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
399 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700400 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700401 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
402 // we will use for all GrBatchs. Right now we might wind up mapping a large buffer and using
403 // a small subset.
404#if 0
cdalton397536c2016-03-25 12:15:03 -0700405 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700406#else
cdalton397536c2016-03-25 12:15:03 -0700407 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700408#endif
joshualitte5b74c62015-06-01 14:17:47 -0700409 }
410
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000411 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000412 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
413 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
414 fNPOTTextureTileSupport = true;
415 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000416 } else {
417 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000418 // ES3 has no limitations.
419 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
420 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000421 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
422 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
423 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
424 // to alllow arbitrary wrap modes, however.
425 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000426 }
427
bsalomone72bd022015-10-26 07:33:03 -0700428 // Using MIPs on this GPU seems to be a source of trouble.
429 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
430 fMipMapSupport = false;
431 }
432
bsalomon@google.combcce8922013-03-25 15:38:39 +0000433 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
434 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
435 // Our render targets are always created with textures as the color
436 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000437 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000438
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000439 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
440
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000441 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700442 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000443
robertphillips1b8e1b52015-06-24 06:54:10 -0700444#if 0
445 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
446 kQualcomm_GrGLVendor != ctxInfo.vendor();
447#endif
448
egdaniel05ded892015-10-26 07:38:05 -0700449 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000450 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800451 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000452 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800453 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000454 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800455 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
456 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
457 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
458 // This is to guard against platforms that may not support as many samples for
459 // glRasterSamples as they do for framebuffers.
460 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
461 }
462 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000463
csmartdalton9bc11872016-08-09 12:42:47 -0700464 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
465 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
466 // Protect ourselves against tracking huge amounts of window rectangle state.
467 fMaxWindowRectangles = SkTMin(31, fMaxWindowRectangles);
468 }
469
bsalomon63b21962014-11-05 07:05:34 -0800470 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800471 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800472 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800473 fUseDrawInsteadOfClear = true;
474 }
475
joshualitt83bc2292015-06-18 14:18:02 -0700476 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
477 fUseDrawInsteadOfPartialRenderTargetWrite = true;
478 }
479
bsalomonbabafcc2016-02-16 11:36:47 -0800480 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
481 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
482 fUseDrawInsteadOfPartialRenderTargetWrite = true;
483 fUseDrawInsteadOfAllRenderTargetWrites = true;
484 }
485
robertphillips63926682015-08-20 09:39:02 -0700486#ifdef SK_BUILD_FOR_WIN
487 // On ANGLE deferring flushes can lead to GPU starvation
488 fPreferVRAMUseOverFlushes = !isANGLE;
489#endif
490
bsalomon7dea7b72015-08-19 08:26:51 -0700491 if (kChromium_GrGLDriver == ctxInfo.driver()) {
492 fMustClearUploadedBufferData = true;
493 }
494
bsalomond08ea5f2015-02-20 06:58:13 -0800495 if (kGL_GrGLStandard == standard) {
496 // ARB allows mixed size FBO attachments, EXT does not.
497 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
498 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
499 fOversizedStencilSupport = true;
500 } else {
501 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
502 }
503 } else {
504 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
505 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
506 }
507
joshualitt58001552015-06-26 12:46:36 -0700508 if (kGL_GrGLStandard == standard) {
509 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
510 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700511 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700512 version >= GR_GL_VER(3, 2) ||
513 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
514 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
515 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700516 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700517 version >= GR_GL_VER(3, 0) ||
518 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
519 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
520 }
521
cdalton06604b92016-02-05 10:09:51 -0800522 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700523 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
524 ctxInfo.hasExtension("GL_ARB_draw_indirect");
525 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
526 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700527 (fDrawIndirectSupport &&
528 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700529 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
cdalton06604b92016-02-05 10:09:51 -0800530 } else {
531 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700532 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
533 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
534 fBaseInstanceSupport = fDrawIndirectSupport &&
535 ctxInfo.hasExtension("GL_EXT_base_instance");
cdalton06604b92016-02-05 10:09:51 -0800536 }
537
jvanverthcba99b82015-06-24 06:59:57 -0700538 this->initShaderPrecisionTable(ctxInfo, gli, glslCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800539
540 if (contextOptions.fUseShaderSwizzling) {
541 fTextureSwizzleSupport = false;
542 }
543
ethannicholas28ef4452016-03-25 09:26:03 -0700544 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700545 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
546 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700547 fSampleShadingSupport = true;
548 }
549 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
550 fSampleShadingSupport = true;
551 }
552
brianosman131ff132016-06-07 14:22:44 -0700553 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
554 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
555 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
556 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700557 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700558 (contextOptions.fDoManualMipmapping ||
559 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700560 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
561 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700562 fDoManualMipmapping = true;
563 }
564
bsalomoncdee0092016-01-08 13:20:12 -0800565 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
566 // already been detected.
567 this->initConfigTable(ctxInfo, gli, glslCaps);
cdalton4cd67132015-06-10 19:23:46 -0700568
569 this->applyOptionsOverrides(contextOptions);
570 glslCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000571}
572
egdaniel472d44e2015-10-22 08:20:00 -0700573const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
574 bool isCoreProfile) {
575 switch (generation) {
576 case k110_GrGLSLGeneration:
577 if (kGLES_GrGLStandard == standard) {
578 // ES2s shader language is based on version 1.20 but is version
579 // 1.00 of the ES language.
580 return "#version 100\n";
581 } else {
582 SkASSERT(kGL_GrGLStandard == standard);
583 return "#version 110\n";
584 }
585 case k130_GrGLSLGeneration:
586 SkASSERT(kGL_GrGLStandard == standard);
587 return "#version 130\n";
588 case k140_GrGLSLGeneration:
589 SkASSERT(kGL_GrGLStandard == standard);
590 return "#version 140\n";
591 case k150_GrGLSLGeneration:
592 SkASSERT(kGL_GrGLStandard == standard);
593 if (isCoreProfile) {
594 return "#version 150\n";
595 } else {
596 return "#version 150 compatibility\n";
597 }
598 case k330_GrGLSLGeneration:
599 if (kGLES_GrGLStandard == standard) {
600 return "#version 300 es\n";
601 } else {
602 SkASSERT(kGL_GrGLStandard == standard);
603 if (isCoreProfile) {
604 return "#version 330\n";
605 } else {
606 return "#version 330 compatibility\n";
607 }
608 }
cdalton33ad7012016-02-22 07:55:44 -0800609 case k400_GrGLSLGeneration:
610 SkASSERT(kGL_GrGLStandard == standard);
611 if (isCoreProfile) {
612 return "#version 400\n";
613 } else {
614 return "#version 400 compatibility\n";
615 }
egdaniel472d44e2015-10-22 08:20:00 -0700616 case k310es_GrGLSLGeneration:
617 SkASSERT(kGLES_GrGLStandard == standard);
618 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800619 case k320es_GrGLSLGeneration:
620 SkASSERT(kGLES_GrGLStandard == standard);
621 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700622 }
623 return "<no version>";
624}
625
egdaniel05ded892015-10-26 07:38:05 -0700626void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700627 GrGLStandard standard = ctxInfo.standard();
628 GrGLVersion version = ctxInfo.version();
629
630 /**************************************************************************
631 * Caps specific to GrGLSLCaps
632 **************************************************************************/
633
634 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
635 glslCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700636 if (kGLES_GrGLStandard == standard) {
637 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
638 glslCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
639 glslCaps->fFBFetchSupport = true;
640 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
641 glslCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
642 }
643 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
644 // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know
645 glslCaps->fFBFetchNeedsCustomOutput = false;
646 glslCaps->fFBFetchSupport = true;
647 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
648 glslCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
649 }
650 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
651 // The arm extension also requires an additional flag which we will set onResetContext
652 glslCaps->fFBFetchNeedsCustomOutput = false;
653 glslCaps->fFBFetchSupport = true;
654 glslCaps->fFBFetchColorName = "gl_LastFragColorARM";
655 glslCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
656 }
657 glslCaps->fUsesPrecisionModifiers = true;
658 }
659
660 glslCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
661
cdaltonc08f1962016-02-12 12:14:06 -0800662 if (kGL_GrGLStandard == standard) {
663 glslCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
664 } else {
665 glslCaps->fFlatInterpolationSupport =
666 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
667 }
668
669 if (kGL_GrGLStandard == standard) {
670 glslCaps->fNoPerspectiveInterpolationSupport =
671 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
672 } else {
673 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
674 glslCaps->fNoPerspectiveInterpolationSupport = true;
675 glslCaps->fNoPerspectiveInterpolationExtensionString =
676 "GL_NV_shader_noperspective_interpolation";
677 }
678 }
679
cdalton33ad7012016-02-22 07:55:44 -0800680 if (kGL_GrGLStandard == standard) {
cdalton4a98cdb2016-03-01 12:12:20 -0800681 glslCaps->fMultisampleInterpolationSupport =
682 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
683 } else {
684 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
685 glslCaps->fMultisampleInterpolationSupport = true;
686 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
687 glslCaps->fMultisampleInterpolationSupport = true;
688 glslCaps->fMultisampleInterpolationExtensionString =
689 "GL_OES_shader_multisample_interpolation";
690 }
691 }
692
693 if (kGL_GrGLStandard == standard) {
cdalton33ad7012016-02-22 07:55:44 -0800694 glslCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
695 } else {
696 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
697 glslCaps->fSampleVariablesSupport = true;
698 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
699 glslCaps->fSampleVariablesSupport = true;
700 glslCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
701 }
702 }
703
csmartdaltonf848c9c2016-06-15 12:42:13 -0700704 if (glslCaps->fSampleVariablesSupport &&
705 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
706 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
cdalton33ad7012016-02-22 07:55:44 -0800707 glslCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700708 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
709 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800710 }
711
egdaniel472d44e2015-10-22 08:20:00 -0700712 // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader
713 glslCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
714
715 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
716 // function that may require a gradient calculation inside a conditional block may return
717 // undefined results". This appears to be an issue with the 'any' call since even the simple
718 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
719 // from our GrTextureDomain processor.
720 glslCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
721
egdaniel472d44e2015-10-22 08:20:00 -0700722 glslCaps->fVersionDeclString = get_glsl_version_decl_string(standard, glslCaps->fGLSLGeneration,
723 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800724
725 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == glslCaps->fGLSLGeneration) {
726 glslCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
727 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800728
729 // Frag Coords Convention support is not part of ES
730 // Known issue on at least some Intel platforms:
731 // http://code.google.com/p/skia/issues/detail?id=946
732 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
733 kGLES_GrGLStandard != standard &&
734 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
735 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
736 glslCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
737 }
738
739 if (kGLES_GrGLStandard == standard) {
740 glslCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
741 }
742
cdalton9c3f1432016-03-11 10:07:37 -0800743 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
744 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
745 glslCaps->fExternalTextureSupport = true;
746 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
747 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
748 // At least one driver has been found that has this extension without the "GL_" prefix.
749 glslCaps->fExternalTextureSupport = true;
750 }
751 }
752
753 if (glslCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800754 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
755 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
756 } else {
757 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
758 }
759 }
760
cdaltonc04ce672016-03-11 14:07:38 -0800761 if (kGL_GrGLStandard == standard) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700762 glslCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800763 } else {
cdaltonf8a6ce82016-04-11 13:02:05 -0700764 glslCaps->fTexelFetchSupport =
765 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
766 }
767
768 if (glslCaps->fTexelFetchSupport) {
769 if (kGL_GrGLStandard == standard) {
csmartdalton1897cfd2016-06-03 08:50:54 -0700770 glslCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700771 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
772 } else {
773 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
774 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
775 glslCaps->fTexelBufferSupport = true;
776 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
777 glslCaps->fTexelBufferSupport = true;
778 glslCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
779 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
780 glslCaps->fTexelBufferSupport = true;
781 glslCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
782 }
cdaltonc04ce672016-03-11 14:07:38 -0800783 }
784 }
785
egdaniel8dcdedc2015-11-11 06:27:20 -0800786 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
787 // the abs first in a separate expression.
788 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
789 glslCaps->fCanUseMinAndAbsTogether = false;
790 }
791
bsalomon7ea33f52015-11-22 14:51:00 -0800792 // 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 -0800793 // thus must us -1.0 * %s.x to work correctly
794 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
795 glslCaps->fMustForceNegatedAtanParamToFloat = true;
796 }
egdaniel472d44e2015-10-22 08:20:00 -0700797}
798
kkinnunencfe62e32015-07-01 02:58:50 -0700799bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700800 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
801
802 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700803 return false;
804 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700805
kkinnunencfe62e32015-07-01 02:58:50 -0700806 if (kGL_GrGLStandard == ctxInfo.standard()) {
807 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
808 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
809 return false;
810 }
811 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700812 if (!hasChromiumPathRendering &&
813 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700814 return false;
815 }
816 }
817 // We only support v1.3+ of GL_NV_path_rendering which allows us to
818 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
819 // additions are detected by checking the existence of the function.
820 // We also use *Then* functions that not all drivers might have. Check
821 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800822 if (!gli->fFunctions.fStencilThenCoverFillPath ||
823 !gli->fFunctions.fStencilThenCoverStrokePath ||
824 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
825 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
826 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700827 return false;
828 }
829 return true;
830}
bsalomon1aa20292016-01-22 08:16:09 -0800831
832bool GrGLCaps::readPixelsSupported(GrPixelConfig rtConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800833 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800834 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
835 std::function<bool ()> bindRenderTarget) const {
bsalomone9573312016-01-25 14:33:25 -0800836 // If it's not possible to even have a render target of rtConfig then read pixels is
837 // not supported regardless of readConfig.
838 if (!this->isConfigRenderable(rtConfig, false)) {
839 return false;
840 }
bsalomon7928ef62016-01-05 10:26:39 -0800841
bsalomon76148af2016-01-12 11:13:47 -0800842 GrGLenum readFormat;
843 GrGLenum readType;
bsalomon1aa20292016-01-22 08:16:09 -0800844 if (!this->getReadPixelsFormat(rtConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800845 return false;
846 }
847
bsalomon1aa20292016-01-22 08:16:09 -0800848 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800849 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
850 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
851 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
852 // GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA. We check for the subset that we would use.
853 if (readFormat != GR_GL_RED && readFormat != GR_GL_RGB && readFormat != GR_GL_RGBA &&
854 readFormat != GR_GL_BGRA) {
855 return false;
856 }
857 // There is also a set of allowed types, but all the types we use are in the set:
858 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
859 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
860 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
861 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
862 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
863 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
864 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800865 return true;
piotaixre4b23142014-10-02 10:57:53 -0700866 }
bsalomon7928ef62016-01-05 10:26:39 -0800867
bsalomon76148af2016-01-12 11:13:47 -0800868 // See Section 16.1.2 in the ES 3.2 specification.
bsalomon7928ef62016-01-05 10:26:39 -0800869
bsalomon1aa20292016-01-22 08:16:09 -0800870 if (kNormalizedFixedPoint_FormatType == fConfigTable[rtConfig].fFormatType) {
bsalomon7928ef62016-01-05 10:26:39 -0800871 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
872 return true;
873 }
874 } else {
bsalomon1aa20292016-01-22 08:16:09 -0800875 SkASSERT(kFloat_FormatType == fConfigTable[rtConfig].fFormatType);
bsalomon7928ef62016-01-05 10:26:39 -0800876 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
877 return true;
878 }
879 }
880
bsalomon1aa20292016-01-22 08:16:09 -0800881 if (0 == fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800882 ReadPixelsFormat* rpFormat =
bsalomon1aa20292016-01-22 08:16:09 -0800883 const_cast<ReadPixelsFormat*>(&fConfigTable[rtConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800884 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800885 if (!bindRenderTarget()) {
886 return false;
887 }
888 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
889 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800890 rpFormat->fFormat = format;
891 rpFormat->fType = type;
892 }
893
bsalomon1aa20292016-01-22 08:16:09 -0800894 return fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
895 fConfigTable[rtConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700896}
897
robertphillips@google.com6177e692013-02-28 20:16:25 +0000898void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000899
900 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000901 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000902 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
903 // ES3 driver bugs on at least one device with a tiled GPU (N10).
904 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
905 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
906 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
907 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800908 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700909 fMSFBOType = kMixedSamples_MSFBOType;
commit-bot@chromium.org92b78842014-01-16 20:49:46 +0000910 } else if (ctxInfo.version() >= GR_GL_VER(3,0)) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000911 fMSFBOType = GrGLCaps::kES_3_0_MSFBOType;
912 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
913 // chrome's extension is equivalent to the EXT msaa
914 // and fbo_blit extensions.
915 fMSFBOType = kDesktop_EXT_MSFBOType;
916 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
917 fMSFBOType = kES_Apple_MSFBOType;
918 }
bsalomon083617b2016-02-12 12:10:14 -0800919
920 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
921 // is available.
922 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
923 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
924 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
925 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
926 // limitations.
927 fBlitFramebufferSupport = kNoScalingNoMirroring_BlitFramebufferSupport;
928 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000929 } else {
egdanieleed519e2016-01-15 11:36:18 -0800930 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700931 fMSFBOType = kMixedSamples_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800932 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
vbuzinovdded6962015-06-12 08:59:45 -0700933 } else if ((ctxInfo.version() >= GR_GL_VER(3,0)) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000934 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000935 fMSFBOType = GrGLCaps::kDesktop_ARB_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800936 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000937 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
938 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000939 fMSFBOType = GrGLCaps::kDesktop_EXT_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800940 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000941 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000942 }
943}
944
cdalton1dd05422015-06-12 09:01:18 -0700945void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
946 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
947
948 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
949 // for now until its own blacklists can be updated.
950 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
951 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -0700952 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -0700953 return;
954 }
955
956 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
957 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
958 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
959 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
960 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
961 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
962 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
963 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
964 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
965 return;
966 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
967 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
968 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
969 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
970 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
971 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
972 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
973 // slow on a particular platform.
974 } else {
975 return; // No advanced blend support.
976 }
977
978 SkASSERT(this->advancedBlendEquationSupport());
979
csmartdalton3b88a032016-08-04 14:43:49 -0700980 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
981 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
982 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -0700983 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
984 (1 << kColorBurn_GrBlendEquation);
985 }
joel.liang9764c402015-07-09 19:46:18 -0700986 if (kARM_GrGLVendor == ctxInfo.vendor()) {
987 // Blacklist color-burn on ARM until the fix is released.
988 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
989 }
cdalton1dd05422015-06-12 09:01:18 -0700990}
991
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000992namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700993const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000994}
995
996void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
997
998 // Build up list of legal stencil formats (though perhaps not supported on
999 // the particular gpu/driver) from most preferred to least.
1000
1001 // these consts are in order of most preferred to least preferred
1002 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1003
1004 static const StencilFormat
1005 // internal Format stencil bits total bits packed?
1006 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1007 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1008 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1009 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001010 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001011 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1012
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001013 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001014 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001015 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001016 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1017 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1018
1019 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1020 // require FBO support we can expect these are legal formats and don't
1021 // check. These also all support the unsized GL_STENCIL_INDEX.
1022 fStencilFormats.push_back() = gS8;
1023 fStencilFormats.push_back() = gS16;
1024 if (supportsPackedDS) {
1025 fStencilFormats.push_back() = gD24S8;
1026 }
1027 fStencilFormats.push_back() = gS4;
1028 if (supportsPackedDS) {
1029 fStencilFormats.push_back() = gDS;
1030 }
1031 } else {
1032 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1033 // for other formats.
1034 // ES doesn't support using the unsized format.
1035
1036 fStencilFormats.push_back() = gS8;
1037 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001038 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1039 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001040 fStencilFormats.push_back() = gD24S8;
1041 }
1042 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1043 fStencilFormats.push_back() = gS4;
1044 }
1045 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001046}
1047
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001048SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001049
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001050 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001051
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001052 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001053 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001054 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001055 i,
1056 fStencilFormats[i].fStencilBits,
1057 fStencilFormats[i].fTotalBits);
1058 }
1059
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001060 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001061 "None",
1062 "ARB",
1063 "EXT",
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001064 "ES 3.0",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001065 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001066 "IMG MS To Texture",
1067 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001068 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001069 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001070 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
1071 GR_STATIC_ASSERT(1 == kDesktop_ARB_MSFBOType);
1072 GR_STATIC_ASSERT(2 == kDesktop_EXT_MSFBOType);
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001073 GR_STATIC_ASSERT(3 == kES_3_0_MSFBOType);
1074 GR_STATIC_ASSERT(4 == kES_Apple_MSFBOType);
1075 GR_STATIC_ASSERT(5 == kES_IMG_MsToTexture_MSFBOType);
1076 GR_STATIC_ASSERT(6 == kES_EXT_MsToTexture_MSFBOType);
vbuzinovdded6962015-06-12 08:59:45 -07001077 GR_STATIC_ASSERT(7 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001078 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001079
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001080 static const char* kInvalidateFBTypeStr[] = {
1081 "None",
1082 "Discard",
1083 "Invalidate",
1084 };
1085 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1086 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1087 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1088 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001089
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001090 static const char* kMapBufferTypeStr[] = {
1091 "None",
1092 "MapBuffer",
1093 "MapBufferRange",
1094 "Chromium",
1095 };
1096 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1097 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1098 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1099 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1100 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1101
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001102 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001103 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001104 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001105 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001106 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001107 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1108 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1109 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1110 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001111
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001112 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001113 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1114 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001115 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001116 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1117 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001118 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001119 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1120 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1121 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001122 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1123 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001124 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001125 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001126 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001127 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001128 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001129
1130 r.append("Configs\n-------\n");
1131 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1132 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001133 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1134 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001135 i,
1136 fConfigTable[i].fFlags,
1137 fConfigTable[i].fFormats.fBaseInternalFormat,
1138 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001139 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1140 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001141 fConfigTable[i].fFormats.fExternalType,
1142 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001143 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001144 }
1145
jvanverthe9c0fc62015-04-29 11:18:05 -07001146 return r;
1147}
1148
jvanverthe9c0fc62015-04-29 11:18:05 -07001149static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1150 switch (p) {
1151 case kLow_GrSLPrecision:
1152 return GR_GL_LOW_FLOAT;
1153 case kMedium_GrSLPrecision:
1154 return GR_GL_MEDIUM_FLOAT;
1155 case kHigh_GrSLPrecision:
1156 return GR_GL_HIGH_FLOAT;
1157 }
1158 SkFAIL("Unknown precision.");
1159 return -1;
1160}
1161
1162static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1163 switch (type) {
1164 case kVertex_GrShaderType:
1165 return GR_GL_VERTEX_SHADER;
1166 case kGeometry_GrShaderType:
1167 return GR_GL_GEOMETRY_SHADER;
1168 case kFragment_GrShaderType:
1169 return GR_GL_FRAGMENT_SHADER;
1170 }
1171 SkFAIL("Unknown shader type.");
1172 return -1;
1173}
1174
jvanverthcba99b82015-06-24 06:59:57 -07001175void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001176 const GrGLInterface* intf,
jvanverthcba99b82015-06-24 06:59:57 -07001177 GrGLSLCaps* glslCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001178 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1179 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1180 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1181 if (kGeometry_GrShaderType != s) {
1182 GrShaderType shaderType = static_cast<GrShaderType>(s);
1183 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001184 GrShaderCaps::PrecisionInfo* first = nullptr;
jvanverthcba99b82015-06-24 06:59:57 -07001185 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001186 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1187 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1188 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1189 GrGLint range[2];
1190 GrGLint bits;
1191 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1192 if (bits) {
jvanverthcba99b82015-06-24 06:59:57 -07001193 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1194 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1195 glslCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001196 if (!first) {
jvanverthcba99b82015-06-24 06:59:57 -07001197 first = &glslCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001198 }
jvanverthcba99b82015-06-24 06:59:57 -07001199 else if (!glslCaps->fShaderPrecisionVaries) {
halcanary9d524f22016-03-29 09:03:52 -07001200 glslCaps->fShaderPrecisionVaries =
jvanverthcba99b82015-06-24 06:59:57 -07001201 (*first != glslCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001202 }
1203 }
1204 }
1205 }
1206 }
1207 }
1208 else {
1209 // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float.
jvanverthcba99b82015-06-24 06:59:57 -07001210 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001211 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1212 if (kGeometry_GrShaderType != s) {
1213 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
jvanverthcba99b82015-06-24 06:59:57 -07001214 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1215 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1216 glslCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001217 }
1218 }
1219 }
1220 }
1221 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1222 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1223 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1224 // are recommended against.
jvanverthcba99b82015-06-24 06:59:57 -07001225 if (glslCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001226 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
halcanary9d524f22016-03-29 09:03:52 -07001227 glslCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
jvanverthcba99b82015-06-24 06:59:57 -07001228 glslCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001229 }
1230 }
cdaltona6b92ad2016-04-11 12:03:08 -07001231 glslCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001232}
1233
bsalomon41e4384e2016-01-08 09:12:44 -08001234bool GrGLCaps::bgraIsInternalFormat() const {
1235 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1236}
1237
bsalomon76148af2016-01-12 11:13:47 -08001238bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1239 GrGLenum* internalFormat, GrGLenum* externalFormat,
1240 GrGLenum* externalType) const {
1241 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1242 externalFormat, externalType)) {
1243 return false;
1244 }
1245 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1246 return true;
1247}
1248
1249bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1250 GrGLenum* internalFormat) const {
1251 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1252 return false;
1253 }
1254 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1255 return true;
1256}
1257
1258bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1259 GrGLenum* externalFormat, GrGLenum* externalType) const {
1260 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1261 externalFormat, externalType)) {
1262 return false;
1263 }
1264 return true;
1265}
1266
1267bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1268 if (GrPixelConfigIsCompressed(config)) {
1269 return false;
1270 }
1271 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1272 return true;
1273}
1274
1275bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1276 ExternalFormatUsage usage, GrGLenum* externalFormat,
1277 GrGLenum* externalType) const {
1278 SkASSERT(externalFormat && externalType);
1279 if (GrPixelConfigIsCompressed(memoryConfig) || GrPixelConfigIsCompressed(memoryConfig)) {
1280 return false;
1281 }
1282
1283 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1284 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1285
1286 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1287 // made to work in many cases using glPixelStore and what not but is not needed currently.
1288 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1289 return false;
1290 }
1291
1292 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1293 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1294
bsalomone9573312016-01-25 14:33:25 -08001295 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1296 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1297 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1298 // texture, not the red component.
1299 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1300 if (this->textureRedSupport()) {
1301 SkASSERT(GR_GL_RED == *externalFormat);
1302 *externalFormat = GR_GL_ALPHA;
1303 }
1304 }
1305
bsalomon76148af2016-01-12 11:13:47 -08001306 return true;
1307}
1308
bsalomoncdee0092016-01-08 13:20:12 -08001309void GrGLCaps::initConfigTable(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
1310 GrGLSLCaps* glslCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001311 /*
1312 Comments on renderability of configs on various GL versions.
1313 OpenGL < 3.0:
1314 no built in support for render targets.
1315 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1316 format RGB, RGBA and NV float formats we don't use.
1317 This is the following:
1318 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1319 RGB10_A2, RGBA12,RGBA16
1320 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1321 since they aren't required by later standards and the driver can simply return
1322 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1323 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1324 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1325 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1326 This adds a lot of additional renderable sized formats, including ALPHA8.
1327 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1328 16F, 32I, 32UI, and 32F variants).
1329 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1330
1331 For both the above extensions we limit ourselves to those that are also required by
1332 OpenGL 3.0.
1333
1334 OpenGL 3.0:
1335 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1336 but are not required to be supported as renderable textures/renderbuffer.
1337 Required renderable color formats:
1338 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1339 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1340 RGB10_A2.
1341 - R11F_G11F_B10F.
1342 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1343 and RG8UI.
1344 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1345 - ALPHA8
1346
1347 OpenGL 3.1, 3.2, 3.3
1348 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1349 OpengGL 3.3, 4.0, 4.1
1350 Adds RGB10_A2UI.
1351 OpengGL 4.2
1352 Adds
1353 - RGB5_A1, RGBA4
1354 - RGB565
1355 OpenGL 4.4
1356 Does away with the separate list and adds a column to the sized internal color format
1357 table. However, no new formats become required color renderable.
1358
1359 ES 2.0
1360 color renderable: RGBA4, RGB5_A1, RGB565
1361 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1362 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1363 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1364 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1365 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1366 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1367
1368 ES 3.0
1369 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1370 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1371 RGB5_A1.
1372 - RGB8 and RGB565.
1373 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1374 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1375 ES 3.1
1376 Adds RGB10_A2, RGB10_A2UI,
1377 ES 3.2
1378 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1379 */
1380 uint32_t allRenderFlags = ConfigInfo::kRenderable_Flag;
1381 if (kNone_MSFBOType != fMSFBOType) {
1382 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1383 }
1384
1385 GrGLStandard standard = ctxInfo.standard();
1386 GrGLVersion version = ctxInfo.version();
1387
cblume790d5132016-02-29 11:13:29 -08001388 bool texStorageSupported = false;
1389 if (kGL_GrGLStandard == standard) {
1390 // The EXT version can apply to either GL or GLES.
1391 texStorageSupported = version >= GR_GL_VER(4,2) ||
1392 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1393 ctxInfo.hasExtension("GL_EXT_texture_storage");
1394 } else {
1395 // Qualcomm Adreno drivers appear to have issues with texture storage.
1396 texStorageSupported = (version >= GR_GL_VER(3,0) &&
1397 kQualcomm_GrGLVendor != ctxInfo.vendor()) &&
1398 ctxInfo.hasExtension("GL_EXT_texture_storage");
1399 }
1400
1401 // TODO: remove after command buffer supports full ES 3.0
1402 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1403 kChromium_GrGLDriver == ctxInfo.driver()) {
1404 texStorageSupported = false;
1405 }
1406
cdalton74b8d322016-04-11 14:47:28 -07001407 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1408
bsalomon30447372015-12-21 09:03:05 -08001409 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1410 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001411 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001412 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001413 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001414 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001415
1416 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1417 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001418 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1419 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001420 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001421 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001422 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1423 if (kGL_GrGLStandard == standard) {
1424 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1425 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001426 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001427 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1428 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1429 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1430 }
egdaniel4999df82016-01-07 17:06:04 -08001431 }
cblume790d5132016-02-29 11:13:29 -08001432 if (texStorageSupported) {
1433 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1434 }
cdalton74b8d322016-04-11 14:47:28 -07001435 if (texelBufferSupport) {
1436 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1437 }
bsalomoncdee0092016-01-08 13:20:12 -08001438 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001439
bsalomon76148af2016-01-12 11:13:47 -08001440 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1441 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001442 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001443 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001444 if (kGL_GrGLStandard == standard) {
1445 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1446 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1447 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1448 // Since the internal format is RGBA8, it is also renderable.
1449 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1450 allRenderFlags;
1451 }
1452 } else {
1453 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1454 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1455 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1456 // The APPLE extension doesn't make this renderable.
1457 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1458 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1459 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1460 // Though, that seems to not be the case if the texture storage extension is
1461 // present. The specs don't exactly make that clear.
1462 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1463 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1464 }
1465 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1466 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1467 ConfigInfo::kRenderable_Flag;
1468 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001469 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001470 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1471 ConfigInfo::kRenderableWithMSAA_Flag;
1472 }
1473 }
1474 }
cblume790d5132016-02-29 11:13:29 -08001475 if (texStorageSupported) {
1476 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1477 }
bsalomoncdee0092016-01-08 13:20:12 -08001478 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001479
brianosmana6359362016-03-21 06:55:37 -07001480 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001481 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001482 if (kGL_GrGLStandard == standard) {
1483 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001484 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001485 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1486 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1487 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001488 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001489 }
1490 }
1491 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001492 if (fSRGBSupport) {
1493 fSRGBWriteControl = true;
1494 }
bsalomon41e4384e2016-01-08 09:12:44 -08001495 } else {
1496 // See https://bug.skia.org/4148 for PowerVR issue.
brianosmana6359362016-03-21 06:55:37 -07001497 fSRGBSupport = kPowerVRRogue_GrGLRenderer != ctxInfo.renderer() &&
bsalomon41e4384e2016-01-08 09:12:44 -08001498 (ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB"));
1499 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1500 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001501 // See https://bug.skia.org/5329 for Adreno4xx issue.
1502 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1503 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001504 }
brianosmana6359362016-03-21 06:55:37 -07001505 if (!ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode")) {
1506 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode:
1507 fSRGBSupport = false;
1508 }
bsalomon30447372015-12-21 09:03:05 -08001509 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1510 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1511 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1512 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001513 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1514 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001515 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001516 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001517 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001518 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1519 allRenderFlags;
1520 }
cblume790d5132016-02-29 11:13:29 -08001521 if (texStorageSupported) {
1522 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1523 }
bsalomoncdee0092016-01-08 13:20:12 -08001524 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001525
brianosmana6359362016-03-21 06:55:37 -07001526 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1527 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1528 // is in this format, for example).
1529 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1530 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1531 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1532 // external format is GL_BGRA.
1533 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1534 GR_GL_BGRA;
1535 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1536 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1537 if (fSRGBSupport) {
1538 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1539 allRenderFlags;
1540 }
1541 if (texStorageSupported) {
1542 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1543 }
1544 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1545
bsalomon30447372015-12-21 09:03:05 -08001546 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1547 if (this->ES2CompatibilitySupport()) {
1548 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1549 } else {
1550 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1551 }
bsalomon76148af2016-01-12 11:13:47 -08001552 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1553 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001554 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001555 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001556 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1557 if (kGL_GrGLStandard == standard) {
1558 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ES2_compatibility")) {
1559 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1560 }
1561 } else {
1562 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1563 }
cblume790d5132016-02-29 11:13:29 -08001564 // 565 is not a sized internal format on desktop GL. So on desktop with
1565 // 565 we always use an unsized internal format to let the system pick
1566 // the best sized format to convert the 565 data to. Since TexStorage
1567 // only allows sized internal formats we disallow it.
1568 //
1569 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1570 // update.
1571 if (texStorageSupported && kGL_GrGLStandard != standard) {
1572 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1573 }
bsalomoncdee0092016-01-08 13:20:12 -08001574 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001575
1576 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1577 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001578 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1579 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001580 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001581 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001582 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1583 if (kGL_GrGLStandard == standard) {
1584 if (version >= GR_GL_VER(4, 2)) {
1585 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1586 }
1587 } else {
1588 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1589 }
cblume790d5132016-02-29 11:13:29 -08001590 if (texStorageSupported) {
1591 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1592 }
bsalomoncdee0092016-01-08 13:20:12 -08001593 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001594
1595 if (this->textureRedSupport()) {
1596 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1597 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001598 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1599 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001600 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001601 if (texelBufferSupport) {
1602 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1603 }
bsalomon30447372015-12-21 09:03:05 -08001604 } else {
1605 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1606 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001607 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1608 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001609 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001610 }
1611 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001612 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001613 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon40170072016-05-05 14:40:03 -07001614 if (this->textureRedSupport() ||
1615 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1616 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001617 // desktop ARB extension/3.0+ supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001618 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001619 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1620 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1621 }
cblume790d5132016-02-29 11:13:29 -08001622 if (texStorageSupported) {
1623 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1624 }
bsalomon41e4384e2016-01-08 09:12:44 -08001625
1626 // Check for [half] floating point texture support
1627 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1628 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1629 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1630 bool hasFPTextures = false;
1631 bool hasHalfFPTextures = false;
1632 // for now we don't support floating point MSAA on ES
1633 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ?
1634 allRenderFlags : (uint32_t)ConfigInfo::kRenderable_Flag;
1635
1636 if (kGL_GrGLStandard == standard) {
1637 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1638 hasFPTextures = true;
1639 hasHalfFPTextures = true;
1640 }
1641 } else {
1642 if (version >= GR_GL_VER(3, 1)) {
1643 hasFPTextures = true;
1644 hasHalfFPTextures = true;
1645 } else {
1646 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1647 ctxInfo.hasExtension("GL_OES_texture_float")) {
1648 hasFPTextures = true;
1649 }
1650 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1651 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1652 hasHalfFPTextures = true;
1653 }
1654 }
1655 }
bsalomon30447372015-12-21 09:03:05 -08001656
1657 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1658 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA32F;
bsalomon76148af2016-01-12 11:13:47 -08001659 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1660 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001661 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalType = GR_GL_FLOAT;
bsalomon7928ef62016-01-05 10:26:39 -08001662 fConfigTable[kRGBA_float_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001663 if (hasFPTextures) {
1664 fConfigTable[kRGBA_float_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1665 // For now we only enable rendering to float on desktop, because on ES we'd have to solve
1666 // many precision issues and no clients actually want this yet.
1667 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1668 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1669 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= fpRenderFlags;
1670 }
1671 }
cblume790d5132016-02-29 11:13:29 -08001672 if (texStorageSupported) {
1673 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1674 }
cdalton74b8d322016-04-11 14:47:28 -07001675 if (texelBufferSupport) {
1676 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1677 }
bsalomoncdee0092016-01-08 13:20:12 -08001678 fConfigTable[kRGBA_float_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001679
1680 if (this->textureRedSupport()) {
1681 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1682 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001683 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1684 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001685 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001686 if (texelBufferSupport) {
1687 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1688 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1689 }
bsalomon30447372015-12-21 09:03:05 -08001690 } else {
1691 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1692 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001693 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1694 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001695 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001696 }
1697 if (kGL_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(3, 0)) {
1698 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1699 } else {
1700 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1701 }
bsalomon7928ef62016-01-05 10:26:39 -08001702 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001703 if (hasHalfFPTextures) {
1704 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1705 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1706 // GL_RED internal format.
1707 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1708 (this->textureRedSupport() &&
1709 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1710 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1711 }
1712 }
cblume790d5132016-02-29 11:13:29 -08001713 if (texStorageSupported) {
1714 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1715 }
bsalomon30447372015-12-21 09:03:05 -08001716
1717 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1718 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001719 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1720 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001721 if (kGL_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(3, 0)) {
1722 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1723 } else {
1724 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1725 }
bsalomon7928ef62016-01-05 10:26:39 -08001726 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001727 if (hasHalfFPTextures) {
1728 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1729 // ES requires 3.2 or EXT_color_buffer_half_float.
1730 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1731 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1732 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1733 }
1734 }
cblume790d5132016-02-29 11:13:29 -08001735 if (texStorageSupported) {
1736 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1737 }
cdalton74b8d322016-04-11 14:47:28 -07001738 if (texelBufferSupport) {
1739 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1740 }
bsalomoncdee0092016-01-08 13:20:12 -08001741 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001742
1743 // Compressed texture support
1744
1745 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1746 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1747
1748 // TODO: Fix command buffer bindings and remove this.
1749 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001750
1751 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001752 // Below we set the external formats and types to 0.
bsalomon30447372015-12-21 09:03:05 -08001753
1754 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_PALETTE8_RGBA8;
1755 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001756 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001757 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001758 fConfigTable[kIndex_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001759 // Disable this for now, while we investigate https://bug.skia.org/4333
1760 if (false) {
1761 // Check for 8-bit palette..
1762 GrGLint numFormats;
1763 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
1764 if (numFormats) {
1765 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
1766 GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
1767 for (int i = 0; i < numFormats; ++i) {
1768 if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
1769 fConfigTable[kIndex_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1770 break;
1771 }
1772 }
1773 }
1774 }
bsalomoncdee0092016-01-08 13:20:12 -08001775 fConfigTable[kIndex_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001776
bsalomon41e4384e2016-01-08 09:12:44 -08001777 // May change the internal format based on extensions.
1778 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1779 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1780 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1781 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1782 if (ctxInfo.hasExtension("GL_EXT_texture_compression_latc") ||
1783 ctxInfo.hasExtension("GL_NV_texture_compression_latc")) {
1784 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1785 } else if ((kGL_GrGLStandard == standard && version >= GR_GL_VER(3, 0)) ||
1786 ctxInfo.hasExtension("GL_EXT_texture_compression_rgtc") ||
1787 ctxInfo.hasExtension("GL_ARB_texture_compression_rgtc")) {
1788 // RGTC is identical and available on OpenGL 3.0+ as well as with extensions
1789 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1790 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1791 GR_GL_COMPRESSED_RED_RGTC1;
1792 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1793 GR_GL_COMPRESSED_RED_RGTC1;
1794 } else if (ctxInfo.hasExtension("GL_AMD_compressed_3DC_texture")) {
1795 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1796 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_3DC_X;
1797 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1798 GR_GL_COMPRESSED_3DC_X;
1799
bsalomon30447372015-12-21 09:03:05 -08001800 }
bsalomon76148af2016-01-12 11:13:47 -08001801 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001802 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001803 fConfigTable[kLATC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001804 fConfigTable[kLATC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001805
1806 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1807 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
bsalomon76148af2016-01-12 11:13:47 -08001808 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001809 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001810 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001811 if (kGL_GrGLStandard == standard) {
1812 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1813 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1814 }
1815 } else {
1816 if (version >= GR_GL_VER(3, 0) ||
1817 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1818 // ETC2 is a superset of ETC1, so we can just check for that, too.
1819 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1820 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1821 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1822 }
1823 }
bsalomoncdee0092016-01-08 13:20:12 -08001824 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001825
1826 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_R11_EAC;
1827 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_R11_EAC;
bsalomon76148af2016-01-12 11:13:47 -08001828 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001829 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001830 fConfigTable[kR11_EAC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001831 // Check for R11_EAC. We don't support R11_EAC on desktop, as most cards default to
1832 // decompressing the textures in the driver, and is generally slower.
1833 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) {
1834 fConfigTable[kR11_EAC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1835 }
bsalomoncdee0092016-01-08 13:20:12 -08001836 fConfigTable[kR11_EAC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001837
1838 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fBaseInternalFormat =
1839 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
1840 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fSizedInternalFormat =
1841 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
bsalomon76148af2016-01-12 11:13:47 -08001842 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1843 0;
bsalomon30447372015-12-21 09:03:05 -08001844 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001845 fConfigTable[kASTC_12x12_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001846 if (ctxInfo.hasExtension("GL_KHR_texture_compression_astc_hdr") ||
1847 ctxInfo.hasExtension("GL_KHR_texture_compression_astc_ldr") ||
1848 ctxInfo.hasExtension("GL_OES_texture_compression_astc")) {
1849 fConfigTable[kASTC_12x12_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1850 }
bsalomoncdee0092016-01-08 13:20:12 -08001851 fConfigTable[kASTC_12x12_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001852
1853 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1854
1855 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001856 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1857 ctxInfo.version() >= GR_GL_VER(3,0));
1858 // All ES versions (thus far) require sized internal formats for render buffers.
1859 // TODO: Always use sized internal format?
1860 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1861
bsalomon30447372015-12-21 09:03:05 -08001862 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001863 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1864 // param to glTex[Sub]Image.
1865 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1866 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1867 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1868 fConfigTable[i].fFormats.fSizedInternalFormat :
1869 fConfigTable[i].fFormats.fBaseInternalFormat;
1870 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001871 fConfigTable[i].fFormats.fSizedInternalFormat :
1872 fConfigTable[i].fFormats.fBaseInternalFormat;
1873 }
1874 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1875 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1876 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1877 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1878 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001879 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001880 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001881
1882 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1883 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1884 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1885 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001886 }
1887
1888 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1889 // as a base format.
1890 // GL_EXT_texture_format_BGRA8888:
1891 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1892 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1893 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001894 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001895 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1896 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1897 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001898 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001899 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1900 }
1901
bsalomoncdee0092016-01-08 13:20:12 -08001902 // If we don't have texture swizzle support then the shader generator must insert the
1903 // swizzle into shader code.
1904 if (!this->textureSwizzleSupport()) {
1905 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1906 glslCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
1907 }
1908 }
1909
bsalomon7f9b2e42016-01-12 13:29:26 -08001910 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
1911 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
1912 // gets written to the single component.
1913 if (this->textureRedSupport()) {
1914 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1915 GrPixelConfig config = static_cast<GrPixelConfig>(i);
1916 if (GrPixelConfigIsAlphaOnly(config) &&
1917 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
1918 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
1919 }
1920 }
1921 }
1922
bsalomon30447372015-12-21 09:03:05 -08001923#ifdef SK_DEBUG
1924 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08001925 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08001926 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001927 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
1928 fConfigTable[i].fFormats.fBaseInternalFormat);
1929 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08001930 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08001931 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
1932 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
1933 fConfigTable[i].fFormats.fExternalFormat[j]);
1934 }
1935 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08001936 }
1937#endif
1938}
1939
csmartdaltone0d36292016-07-29 08:14:20 -07001940void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
1941 if (options.fEnableInstancedRendering) {
1942 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
1943#ifndef SK_BUILD_FOR_MAC
1944 // OS X doesn't seem to write correctly to floating point textures when using
1945 // glDraw*Indirect, regardless of the underlying GPU.
1946 fAvoidInstancedDrawsToFPTargets = true;
1947#endif
1948 }
1949}