blob: 9dd0fbe36edd37b9d80108cf35cc24356a3b6611 [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"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000015#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000016#include "SkTSort.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000017
bsalomon682c2692015-05-22 14:01:46 -070018GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
19 const GrGLContextInfo& ctxInfo,
20 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080021 fStandard = ctxInfo.standard();
22
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000023 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000025 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000026 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080027 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000028 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fUnpackRowLengthSupport = false;
30 fUnpackFlipYSupport = false;
31 fPackRowLengthSupport = false;
32 fPackFlipYSupport = false;
33 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000034 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000035 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000036 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070037 fDirectStateAccessSupport = false;
38 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080039 fES2CompatibilitySupport = false;
cdalton06604b92016-02-05 10:09:51 -080040 fDrawIndirectSupport = false;
41 fMultiDrawIndirectSupport = false;
42 fBaseInstanceSupport = false;
bsalomon@google.com96966a52013-02-21 16:34:21 +000043 fUseNonVBOVertexAndIndexDynamicData = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000044 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070045 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080046 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080047 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070048 fRGBA8888PixelsOpsAreSlow = false;
49 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080050 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080051 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070052 fDoManualMipmapping = false;
piotaixre4b23142014-10-02 10:57:53 -070053
bsalomon083617b2016-02-12 12:10:14 -080054 fBlitFramebufferSupport = kNone_BlitFramebufferSupport;
55
halcanary385fe4d2015-08-26 13:07:48 -070056 fShaderCaps.reset(new GrGLSLCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070057
cdalton4cd67132015-06-10 19:23:46 -070058 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000059}
60
cdalton4cd67132015-06-10 19:23:46 -070061void GrGLCaps::init(const GrContextOptions& contextOptions,
62 const GrGLContextInfo& ctxInfo,
63 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000064 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000065 GrGLVersion version = ctxInfo.version();
66
bsalomon@google.combcce8922013-03-25 15:38:39 +000067 /**************************************************************************
68 * Caps specific to GrGLCaps
69 **************************************************************************/
70
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000071 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000072 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
73 &fMaxFragmentUniformVectors);
74 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000075 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000076 GrGLint max;
77 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
78 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000079 if (version >= GR_GL_VER(3, 2)) {
80 GrGLint profileMask;
81 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
82 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
83 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000084 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000085 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000086
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000087 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000088 fUnpackRowLengthSupport = true;
89 fUnpackFlipYSupport = false;
90 fPackRowLengthSupport = true;
91 fPackFlipYSupport = false;
92 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000093 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
94 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000095 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000096 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
97 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000098 fPackFlipYSupport =
99 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
100 }
101
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000102 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000103 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
104
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000105 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700106 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
107 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
108 ctxInfo.hasExtension("GL_NV_texture_barrier");
109 } else {
110 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
111 }
112
cdaltoneb79eea2016-02-26 10:39:34 -0800113 if (kGL_GrGLStandard == standard) {
114 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
115 ctxInfo.hasExtension("GL_ARB_texture_multisample");
116 } else {
117 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
118 }
119
halcanary9d524f22016-03-29 09:03:52 -0700120 // ARB_texture_rg is part of OpenGL 3.0, but mesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800121 // and GL_RG on FBO textures.
cdalton1acea862015-06-02 13:05:52 -0700122 if (kMesa_GrGLDriver != ctxInfo.driver()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800123 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000124 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
125 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800126 } else {
127 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
128 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000129 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000130 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000131 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000132 ctxInfo.hasExtension("GL_ARB_imaging");
133
bsalomon@google.com3012ded2013-02-22 16:44:04 +0000134 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
135 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
136 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
137 // limit this decision to specific GPU families rather than basing it on the vendor alone.
138 if (!GR_GL_MUST_USE_VBO &&
cdaltone2e71c22016-04-07 18:13:29 -0700139 !fIsCoreProfile &&
bsalomoned82c4e2014-09-02 07:54:47 -0700140 (kARM_GrGLVendor == ctxInfo.vendor() ||
141 kImagination_GrGLVendor == ctxInfo.vendor() ||
142 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
bsalomon@google.com96966a52013-02-21 16:34:21 +0000143 fUseNonVBOVertexAndIndexDynamicData = true;
144 }
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000145
egdaniel9250d242015-05-18 13:04:26 -0700146 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
147 // Thus we are blacklisting this extension for now on Adreno4xx devices.
148 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
149 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
150 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
151 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000152 fDiscardRenderTargetSupport = true;
153 fInvalidateFBType = kInvalidate_InvalidateFBType;
154 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
155 fDiscardRenderTargetSupport = true;
156 fInvalidateFBType = kDiscard_InvalidateFBType;
157 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000158
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000159 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
160 fFullClearIsFree = true;
161 }
162
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000163 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000164 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800165 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
166 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000167 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000168 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
169 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000170 }
171
cdalton626e1ff2015-06-12 13:56:46 -0700172 if (kGL_GrGLStandard == standard) {
173 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
174 } else {
175 fDirectStateAccessSupport = false;
176 }
177
178 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
179 fDebugSupport = true;
180 } else {
181 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
182 }
183
jvanverth3f801cb2014-12-16 09:49:38 -0800184 if (kGL_GrGLStandard == standard) {
185 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
186 }
187 else {
188 fES2CompatibilitySupport = true;
189 }
190
cdalton0edea2c2015-05-21 08:27:44 -0700191 if (kGL_GrGLStandard == standard) {
192 fMultisampleDisableSupport = true;
193 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700194 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700195 }
196
kkinnunend94708e2015-07-30 22:47:04 -0700197 if (kGL_GrGLStandard == standard) {
198 if (version >= GR_GL_VER(3, 0)) {
199 fBindFragDataLocationSupport = true;
200 }
201 } else {
202 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
203 fBindFragDataLocationSupport = true;
204 }
joshualittc1f56b52015-06-22 12:31:31 -0700205 }
206
bsalomonb8909d32016-01-28 07:09:52 -0800207#if 0 // Disabled due to https://bug.skia.org/4454
joshualitt7bdd70a2015-10-01 06:28:11 -0700208 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
bsalomonb8909d32016-01-28 07:09:52 -0800209#else
210 fBindUniformLocationSupport = false;
211#endif
joshualitt7bdd70a2015-10-01 06:28:11 -0700212
kkinnunene06ed252016-02-16 23:15:40 -0800213 if (kGL_GrGLStandard == standard) {
214 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
215 // We also require textureSize() support for rectangle 2D samplers which was added in
216 // GLSL 1.40.
217 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
218 fRectangleTextureSupport = true;
219 }
bsalomone179a912016-01-20 06:18:10 -0800220 }
kkinnunene06ed252016-02-16 23:15:40 -0800221 } else {
222 // Command buffer exposes this in GL ES context for Chromium reasons,
223 // but it should not be used. Also, at the time of writing command buffer
224 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800225 }
226
bsalomoncdee0092016-01-08 13:20:12 -0800227 if (kGL_GrGLStandard == standard) {
228 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
229 fTextureSwizzleSupport = true;
230 }
231 } else {
232 if (version >= GR_GL_VER(3,0)) {
233 fTextureSwizzleSupport = true;
234 }
235 }
236
cblume09bd2c02016-03-01 14:08:28 -0800237 if (kGL_GrGLStandard == standard) {
238 fMipMapLevelAndLodControlSupport = true;
239 } else if (kGLES_GrGLStandard == standard) {
240 if (version >= GR_GL_VER(3,0)) {
241 fMipMapLevelAndLodControlSupport = true;
242 }
243 }
244
bsalomon88c7b982015-07-31 11:20:16 -0700245#ifdef SK_BUILD_FOR_WIN
246 // We're assuming that on Windows Chromium we're using ANGLE.
247 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
248 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700249 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700250 fRGBA8888PixelsOpsAreSlow = isANGLE;
251 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
252 // check DX11 ANGLE.
253 fPartialFBOReadIsSlow = isANGLE;
254#endif
255
ericrkb4ecabd2016-03-11 15:18:20 -0800256 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
257 bool isMAC = false;
258#ifdef SK_BUILD_FOR_MAC
259 isMAC = true;
260#endif
261
262 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
263 // vis-versa.
264 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
265
cdalton4cd67132015-06-10 19:23:46 -0700266 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700267 * GrShaderCaps fields
268 **************************************************************************/
269
egdaniel0a482332015-10-26 08:59:10 -0700270 // This must be called after fCoreProfile is set on the GrGLCaps
271 this->initGLSL(ctxInfo);
272 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
273
egdaniel05ded892015-10-26 07:38:05 -0700274 glslCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
275
276 // For now these two are equivalent but we could have dst read in shader via some other method.
277 // Before setting this, initGLSL() must have been called.
278 glslCaps->fDstReadInShaderSupport = glslCaps->fFBFetchSupport;
279
280 // Enable supported shader-related caps
281 if (kGL_GrGLStandard == standard) {
282 glslCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
283 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
284 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
285 glslCaps->fShaderDerivativeSupport = true;
286 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
287 glslCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
288 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
cdalton793dc262016-02-08 10:11:47 -0800289 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
290 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700291 }
292 else {
293 glslCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
294
295 glslCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
296 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800297
298 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
299 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700300 }
301
ethannicholas22793252016-01-30 09:59:10 -0800302 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
303 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700304 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
ethannicholas22793252016-01-30 09:59:10 -0800305 &glslCaps->fPixelLocalStorageSize);
306 glslCaps->fPLSPathRenderingSupport = glslCaps->fFBFetchSupport;
307 }
308 else {
309 glslCaps->fPixelLocalStorageSize = 0;
310 glslCaps->fPLSPathRenderingSupport = false;
311 }
312
cdalton9c3f1432016-03-11 10:07:37 -0800313 // Protect ourselves against tracking huge amounts of texture state.
314 static const uint8_t kMaxSaneSamplers = 32;
315 GrGLint maxSamplers;
316 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
317 glslCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
318 if (glslCaps->fGeometryShaderSupport) {
319 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
320 glslCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
321 }
322 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
323 glslCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
324 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
325 glslCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
326
egdaniel05ded892015-10-26 07:38:05 -0700327 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700328 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000329 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700330
cdalton63f6c1f2015-11-06 07:09:43 -0800331 // We need dual source blending and the ability to disable multisample in order to support mixed
332 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800333 if (fMultisampleDisableSupport &&
334 glslCaps->dualSourceBlendingSupport() &&
335 fShaderCaps->pathRenderingSupport()) {
336 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800337 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800338 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800339 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
340 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800341 fDiscardRenderTargetSupport = false;
342 fInvalidateFBType = kNone_InvalidateFBType;
343 }
344 }
345
egdanieleed519e2016-01-15 11:36:18 -0800346 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700347 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700348 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700349 this->initStencilFormats(ctxInfo);
350
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000351 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000352 // we could also look for GL_ATI_separate_stencil extension or
353 // GL_EXT_stencil_two_side but they use different function signatures
354 // than GL2.0+ (and than each other).
355 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
356 // supported on GL 1.4 and higher or by extension
357 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
358 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
359 } else {
360 // ES 2 has two sided stencil and stencil wrap
361 fTwoSidedStencilSupport = true;
362 fStencilWrapOpsSupport = true;
363 }
364
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000365 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000366 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
367 // extension includes glMapBuffer.
368 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
369 fMapBufferFlags |= kSubset_MapFlag;
370 fMapBufferType = kMapBufferRange_MapBufferType;
371 } else {
372 fMapBufferType = kMapBuffer_MapBufferType;
373 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000374 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000375 // Unextended GLES2 doesn't have any buffer mapping.
376 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800377 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800378 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
379 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800380 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
381 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
382 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000383 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
384 fMapBufferFlags = kCanMap_MapFlag;
385 fMapBufferType = kMapBuffer_MapBufferType;
386 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000387 }
388
jvanverthd7a2c1f2015-12-07 07:36:44 -0800389 if (kGL_GrGLStandard == standard) {
390 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
391 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700392 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800393 } else {
394 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
395 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700396 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
397 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800398 }
399 }
400
joshualitte5b74c62015-06-01 14:17:47 -0700401 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
402 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700403 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700404 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
405 // we will use for all GrBatchs. Right now we might wind up mapping a large buffer and using
406 // a small subset.
407#if 0
cdalton397536c2016-03-25 12:15:03 -0700408 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700409#else
cdalton397536c2016-03-25 12:15:03 -0700410 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700411#endif
joshualitte5b74c62015-06-01 14:17:47 -0700412 }
413
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000414 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000415 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
416 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
417 fNPOTTextureTileSupport = true;
418 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000419 } else {
420 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000421 // ES3 has no limitations.
422 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
423 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000424 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
425 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
426 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
427 // to alllow arbitrary wrap modes, however.
428 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000429 }
430
bsalomone72bd022015-10-26 07:33:03 -0700431 // Using MIPs on this GPU seems to be a source of trouble.
432 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
433 fMipMapSupport = false;
434 }
435
bsalomon@google.combcce8922013-03-25 15:38:39 +0000436 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
437 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
438 // Our render targets are always created with textures as the color
439 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000440 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000441
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000442 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
443
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000444 // Disable scratch texture reuse on Mali and Adreno devices
445 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor() &&
446 kQualcomm_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000447
robertphillips1b8e1b52015-06-24 06:54:10 -0700448#if 0
449 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
450 kQualcomm_GrGLVendor != ctxInfo.vendor();
451#endif
452
egdaniel05ded892015-10-26 07:38:05 -0700453 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000454 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800455 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000456 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800457 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000458 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800459 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
460 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
461 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
462 // This is to guard against platforms that may not support as many samples for
463 // glRasterSamples as they do for framebuffers.
464 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
465 }
466 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000467
bsalomon63b21962014-11-05 07:05:34 -0800468 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800469 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800470 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800471 fUseDrawInsteadOfClear = true;
472 }
473
joshualitt83bc2292015-06-18 14:18:02 -0700474 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
475 fUseDrawInsteadOfPartialRenderTargetWrite = true;
476 }
477
bsalomonbabafcc2016-02-16 11:36:47 -0800478 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
479 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
480 fUseDrawInsteadOfPartialRenderTargetWrite = true;
481 fUseDrawInsteadOfAllRenderTargetWrites = true;
482 }
483
robertphillips63926682015-08-20 09:39:02 -0700484#ifdef SK_BUILD_FOR_WIN
485 // On ANGLE deferring flushes can lead to GPU starvation
486 fPreferVRAMUseOverFlushes = !isANGLE;
487#endif
488
bsalomon7dea7b72015-08-19 08:26:51 -0700489 if (kChromium_GrGLDriver == ctxInfo.driver()) {
490 fMustClearUploadedBufferData = true;
491 }
492
bsalomond08ea5f2015-02-20 06:58:13 -0800493 if (kGL_GrGLStandard == standard) {
494 // ARB allows mixed size FBO attachments, EXT does not.
495 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
496 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
497 fOversizedStencilSupport = true;
498 } else {
499 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
500 }
501 } else {
502 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
503 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
504 }
505
joshualitt58001552015-06-26 12:46:36 -0700506 if (kGL_GrGLStandard == standard) {
507 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
508 // instanced arrays, but we could make this more granular if we wanted
509 fSupportsInstancedDraws =
510 version >= GR_GL_VER(3, 2) ||
511 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
512 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
513 } else {
514 fSupportsInstancedDraws =
515 version >= GR_GL_VER(3, 0) ||
516 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
517 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
518 }
519
cdalton06604b92016-02-05 10:09:51 -0800520 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700521 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
522 ctxInfo.hasExtension("GL_ARB_draw_indirect");
523 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
524 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
525 (!fBaseInstanceSupport && // The ARB extension has no base inst.
526 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
cdalton06604b92016-02-05 10:09:51 -0800527 } else {
528 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
529 fMultiDrawIndirectSupport = ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
530 fBaseInstanceSupport = ctxInfo.hasExtension("GL_EXT_base_instance");
531 }
532
jvanverthcba99b82015-06-24 06:59:57 -0700533 this->initShaderPrecisionTable(ctxInfo, gli, glslCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800534
535 if (contextOptions.fUseShaderSwizzling) {
536 fTextureSwizzleSupport = false;
537 }
538
ethannicholas28ef4452016-03-25 09:26:03 -0700539 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700540 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
541 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700542 fSampleShadingSupport = true;
543 }
544 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
545 fSampleShadingSupport = true;
546 }
547
brianosman131ff132016-06-07 14:22:44 -0700548 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
549 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
550 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
551 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700552 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700553 (contextOptions.fDoManualMipmapping ||
554 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700555 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
556 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700557 fDoManualMipmapping = true;
558 }
559
bsalomoncdee0092016-01-08 13:20:12 -0800560 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
561 // already been detected.
562 this->initConfigTable(ctxInfo, gli, glslCaps);
cdalton4cd67132015-06-10 19:23:46 -0700563
564 this->applyOptionsOverrides(contextOptions);
565 glslCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000566}
567
egdaniel472d44e2015-10-22 08:20:00 -0700568const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
569 bool isCoreProfile) {
570 switch (generation) {
571 case k110_GrGLSLGeneration:
572 if (kGLES_GrGLStandard == standard) {
573 // ES2s shader language is based on version 1.20 but is version
574 // 1.00 of the ES language.
575 return "#version 100\n";
576 } else {
577 SkASSERT(kGL_GrGLStandard == standard);
578 return "#version 110\n";
579 }
580 case k130_GrGLSLGeneration:
581 SkASSERT(kGL_GrGLStandard == standard);
582 return "#version 130\n";
583 case k140_GrGLSLGeneration:
584 SkASSERT(kGL_GrGLStandard == standard);
585 return "#version 140\n";
586 case k150_GrGLSLGeneration:
587 SkASSERT(kGL_GrGLStandard == standard);
588 if (isCoreProfile) {
589 return "#version 150\n";
590 } else {
591 return "#version 150 compatibility\n";
592 }
593 case k330_GrGLSLGeneration:
594 if (kGLES_GrGLStandard == standard) {
595 return "#version 300 es\n";
596 } else {
597 SkASSERT(kGL_GrGLStandard == standard);
598 if (isCoreProfile) {
599 return "#version 330\n";
600 } else {
601 return "#version 330 compatibility\n";
602 }
603 }
cdalton33ad7012016-02-22 07:55:44 -0800604 case k400_GrGLSLGeneration:
605 SkASSERT(kGL_GrGLStandard == standard);
606 if (isCoreProfile) {
607 return "#version 400\n";
608 } else {
609 return "#version 400 compatibility\n";
610 }
egdaniel472d44e2015-10-22 08:20:00 -0700611 case k310es_GrGLSLGeneration:
612 SkASSERT(kGLES_GrGLStandard == standard);
613 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800614 case k320es_GrGLSLGeneration:
615 SkASSERT(kGLES_GrGLStandard == standard);
616 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700617 }
618 return "<no version>";
619}
620
egdaniel05ded892015-10-26 07:38:05 -0700621void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700622 GrGLStandard standard = ctxInfo.standard();
623 GrGLVersion version = ctxInfo.version();
624
625 /**************************************************************************
626 * Caps specific to GrGLSLCaps
627 **************************************************************************/
628
629 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
630 glslCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700631 if (kGLES_GrGLStandard == standard) {
632 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
633 glslCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
634 glslCaps->fFBFetchSupport = true;
635 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
636 glslCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
637 }
638 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
639 // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know
640 glslCaps->fFBFetchNeedsCustomOutput = false;
641 glslCaps->fFBFetchSupport = true;
642 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
643 glslCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
644 }
645 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
646 // The arm extension also requires an additional flag which we will set onResetContext
647 glslCaps->fFBFetchNeedsCustomOutput = false;
648 glslCaps->fFBFetchSupport = true;
649 glslCaps->fFBFetchColorName = "gl_LastFragColorARM";
650 glslCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
651 }
652 glslCaps->fUsesPrecisionModifiers = true;
653 }
654
655 glslCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
656
cdaltonc08f1962016-02-12 12:14:06 -0800657 if (kGL_GrGLStandard == standard) {
658 glslCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
659 } else {
660 glslCaps->fFlatInterpolationSupport =
661 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
662 }
663
664 if (kGL_GrGLStandard == standard) {
665 glslCaps->fNoPerspectiveInterpolationSupport =
666 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
667 } else {
668 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
669 glslCaps->fNoPerspectiveInterpolationSupport = true;
670 glslCaps->fNoPerspectiveInterpolationExtensionString =
671 "GL_NV_shader_noperspective_interpolation";
672 }
673 }
674
cdalton33ad7012016-02-22 07:55:44 -0800675 if (kGL_GrGLStandard == standard) {
cdalton4a98cdb2016-03-01 12:12:20 -0800676 glslCaps->fMultisampleInterpolationSupport =
677 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
678 } else {
679 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
680 glslCaps->fMultisampleInterpolationSupport = true;
681 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
682 glslCaps->fMultisampleInterpolationSupport = true;
683 glslCaps->fMultisampleInterpolationExtensionString =
684 "GL_OES_shader_multisample_interpolation";
685 }
686 }
687
688 if (kGL_GrGLStandard == standard) {
cdalton33ad7012016-02-22 07:55:44 -0800689 glslCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
690 } else {
691 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
692 glslCaps->fSampleVariablesSupport = true;
693 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
694 glslCaps->fSampleVariablesSupport = true;
695 glslCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
696 }
697 }
698
csmartdaltonf848c9c2016-06-15 12:42:13 -0700699 if (glslCaps->fSampleVariablesSupport &&
700 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
701 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
cdalton33ad7012016-02-22 07:55:44 -0800702 glslCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700703 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
704 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800705 }
706
egdaniel472d44e2015-10-22 08:20:00 -0700707 // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader
708 glslCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
709
710 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
711 // function that may require a gradient calculation inside a conditional block may return
712 // undefined results". This appears to be an issue with the 'any' call since even the simple
713 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
714 // from our GrTextureDomain processor.
715 glslCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
716
egdaniel472d44e2015-10-22 08:20:00 -0700717 glslCaps->fVersionDeclString = get_glsl_version_decl_string(standard, glslCaps->fGLSLGeneration,
718 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800719
720 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == glslCaps->fGLSLGeneration) {
721 glslCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
722 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800723
724 // Frag Coords Convention support is not part of ES
725 // Known issue on at least some Intel platforms:
726 // http://code.google.com/p/skia/issues/detail?id=946
727 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
728 kGLES_GrGLStandard != standard &&
729 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
730 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
731 glslCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
732 }
733
734 if (kGLES_GrGLStandard == standard) {
735 glslCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
736 }
737
cdalton9c3f1432016-03-11 10:07:37 -0800738 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
739 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
740 glslCaps->fExternalTextureSupport = true;
741 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
742 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
743 // At least one driver has been found that has this extension without the "GL_" prefix.
744 glslCaps->fExternalTextureSupport = true;
745 }
746 }
747
748 if (glslCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800749 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
750 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
751 } else {
752 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
753 }
754 }
755
cdaltonc04ce672016-03-11 14:07:38 -0800756 if (kGL_GrGLStandard == standard) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700757 glslCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800758 } else {
cdaltonf8a6ce82016-04-11 13:02:05 -0700759 glslCaps->fTexelFetchSupport =
760 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
761 }
762
763 if (glslCaps->fTexelFetchSupport) {
764 if (kGL_GrGLStandard == standard) {
csmartdalton1897cfd2016-06-03 08:50:54 -0700765 glslCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700766 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
767 } else {
768 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
769 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
770 glslCaps->fTexelBufferSupport = true;
771 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
772 glslCaps->fTexelBufferSupport = true;
773 glslCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
774 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
775 glslCaps->fTexelBufferSupport = true;
776 glslCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
777 }
cdaltonc04ce672016-03-11 14:07:38 -0800778 }
779 }
780
egdaniel8dcdedc2015-11-11 06:27:20 -0800781 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
782 // the abs first in a separate expression.
783 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
784 glslCaps->fCanUseMinAndAbsTogether = false;
785 }
786
bsalomon7ea33f52015-11-22 14:51:00 -0800787 // 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 -0800788 // thus must us -1.0 * %s.x to work correctly
789 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
790 glslCaps->fMustForceNegatedAtanParamToFloat = true;
791 }
egdaniel472d44e2015-10-22 08:20:00 -0700792}
793
kkinnunencfe62e32015-07-01 02:58:50 -0700794bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700795 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
796
797 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700798 return false;
799 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700800
kkinnunencfe62e32015-07-01 02:58:50 -0700801 if (kGL_GrGLStandard == ctxInfo.standard()) {
802 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
803 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
804 return false;
805 }
806 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700807 if (!hasChromiumPathRendering &&
808 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700809 return false;
810 }
811 }
812 // We only support v1.3+ of GL_NV_path_rendering which allows us to
813 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
814 // additions are detected by checking the existence of the function.
815 // We also use *Then* functions that not all drivers might have. Check
816 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800817 if (!gli->fFunctions.fStencilThenCoverFillPath ||
818 !gli->fFunctions.fStencilThenCoverStrokePath ||
819 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
820 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
821 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700822 return false;
823 }
824 return true;
825}
bsalomon1aa20292016-01-22 08:16:09 -0800826
827bool GrGLCaps::readPixelsSupported(GrPixelConfig rtConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800828 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800829 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
830 std::function<bool ()> bindRenderTarget) const {
bsalomone9573312016-01-25 14:33:25 -0800831 // If it's not possible to even have a render target of rtConfig then read pixels is
832 // not supported regardless of readConfig.
833 if (!this->isConfigRenderable(rtConfig, false)) {
834 return false;
835 }
bsalomon7928ef62016-01-05 10:26:39 -0800836
bsalomon76148af2016-01-12 11:13:47 -0800837 GrGLenum readFormat;
838 GrGLenum readType;
bsalomon1aa20292016-01-22 08:16:09 -0800839 if (!this->getReadPixelsFormat(rtConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800840 return false;
841 }
842
bsalomon1aa20292016-01-22 08:16:09 -0800843 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800844 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
845 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
846 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
847 // GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA. We check for the subset that we would use.
848 if (readFormat != GR_GL_RED && readFormat != GR_GL_RGB && readFormat != GR_GL_RGBA &&
849 readFormat != GR_GL_BGRA) {
850 return false;
851 }
852 // There is also a set of allowed types, but all the types we use are in the set:
853 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
854 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
855 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
856 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
857 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
858 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
859 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800860 return true;
piotaixre4b23142014-10-02 10:57:53 -0700861 }
bsalomon7928ef62016-01-05 10:26:39 -0800862
bsalomon76148af2016-01-12 11:13:47 -0800863 // See Section 16.1.2 in the ES 3.2 specification.
bsalomon7928ef62016-01-05 10:26:39 -0800864
bsalomon1aa20292016-01-22 08:16:09 -0800865 if (kNormalizedFixedPoint_FormatType == fConfigTable[rtConfig].fFormatType) {
bsalomon7928ef62016-01-05 10:26:39 -0800866 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
867 return true;
868 }
869 } else {
bsalomon1aa20292016-01-22 08:16:09 -0800870 SkASSERT(kFloat_FormatType == fConfigTable[rtConfig].fFormatType);
bsalomon7928ef62016-01-05 10:26:39 -0800871 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
872 return true;
873 }
874 }
875
bsalomon1aa20292016-01-22 08:16:09 -0800876 if (0 == fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800877 ReadPixelsFormat* rpFormat =
bsalomon1aa20292016-01-22 08:16:09 -0800878 const_cast<ReadPixelsFormat*>(&fConfigTable[rtConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800879 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800880 if (!bindRenderTarget()) {
881 return false;
882 }
883 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
884 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800885 rpFormat->fFormat = format;
886 rpFormat->fType = type;
887 }
888
bsalomon1aa20292016-01-22 08:16:09 -0800889 return fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
890 fConfigTable[rtConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700891}
892
robertphillips@google.com6177e692013-02-28 20:16:25 +0000893void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000894
895 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000896 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000897 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
898 // ES3 driver bugs on at least one device with a tiled GPU (N10).
899 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
900 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
901 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
902 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800903 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700904 fMSFBOType = kMixedSamples_MSFBOType;
commit-bot@chromium.org92b78842014-01-16 20:49:46 +0000905 } else if (ctxInfo.version() >= GR_GL_VER(3,0)) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000906 fMSFBOType = GrGLCaps::kES_3_0_MSFBOType;
907 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
908 // chrome's extension is equivalent to the EXT msaa
909 // and fbo_blit extensions.
910 fMSFBOType = kDesktop_EXT_MSFBOType;
911 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
912 fMSFBOType = kES_Apple_MSFBOType;
913 }
bsalomon083617b2016-02-12 12:10:14 -0800914
915 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
916 // is available.
917 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
918 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
919 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
920 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
921 // limitations.
922 fBlitFramebufferSupport = kNoScalingNoMirroring_BlitFramebufferSupport;
923 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000924 } else {
egdanieleed519e2016-01-15 11:36:18 -0800925 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700926 fMSFBOType = kMixedSamples_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800927 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
vbuzinovdded6962015-06-12 08:59:45 -0700928 } else if ((ctxInfo.version() >= GR_GL_VER(3,0)) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000929 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000930 fMSFBOType = GrGLCaps::kDesktop_ARB_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800931 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000932 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
933 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000934 fMSFBOType = GrGLCaps::kDesktop_EXT_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800935 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000936 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000937 }
938}
939
cdalton1dd05422015-06-12 09:01:18 -0700940void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
941 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
942
943 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
944 // for now until its own blacklists can be updated.
945 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
946 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -0700947 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -0700948 return;
949 }
950
951 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
952 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
953 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
954 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
955 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
956 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
957 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
958 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
959 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
960 return;
961 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
962 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
963 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
964 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
965 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
966 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
967 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
968 // slow on a particular platform.
969 } else {
970 return; // No advanced blend support.
971 }
972
973 SkASSERT(this->advancedBlendEquationSupport());
974
975 if (kNVIDIA_GrGLDriver == ctxInfo.driver()) {
976 // Blacklist color-dodge and color-burn on NVIDIA until the fix is released.
977 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
978 (1 << kColorBurn_GrBlendEquation);
979 }
joel.liang9764c402015-07-09 19:46:18 -0700980 if (kARM_GrGLVendor == ctxInfo.vendor()) {
981 // Blacklist color-burn on ARM until the fix is released.
982 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
983 }
cdalton1dd05422015-06-12 09:01:18 -0700984}
985
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000986namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700987const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000988}
989
990void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
991
992 // Build up list of legal stencil formats (though perhaps not supported on
993 // the particular gpu/driver) from most preferred to least.
994
995 // these consts are in order of most preferred to least preferred
996 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
997
998 static const StencilFormat
999 // internal Format stencil bits total bits packed?
1000 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1001 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1002 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1003 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001004 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001005 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1006
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001007 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001008 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001009 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001010 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1011 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1012
1013 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1014 // require FBO support we can expect these are legal formats and don't
1015 // check. These also all support the unsized GL_STENCIL_INDEX.
1016 fStencilFormats.push_back() = gS8;
1017 fStencilFormats.push_back() = gS16;
1018 if (supportsPackedDS) {
1019 fStencilFormats.push_back() = gD24S8;
1020 }
1021 fStencilFormats.push_back() = gS4;
1022 if (supportsPackedDS) {
1023 fStencilFormats.push_back() = gDS;
1024 }
1025 } else {
1026 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1027 // for other formats.
1028 // ES doesn't support using the unsized format.
1029
1030 fStencilFormats.push_back() = gS8;
1031 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001032 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1033 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001034 fStencilFormats.push_back() = gD24S8;
1035 }
1036 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1037 fStencilFormats.push_back() = gS4;
1038 }
1039 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001040}
1041
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001042SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001043
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001044 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001045
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001046 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001047 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001048 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001049 i,
1050 fStencilFormats[i].fStencilBits,
1051 fStencilFormats[i].fTotalBits);
1052 }
1053
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001054 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001055 "None",
1056 "ARB",
1057 "EXT",
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001058 "ES 3.0",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001059 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001060 "IMG MS To Texture",
1061 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001062 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001063 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001064 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
1065 GR_STATIC_ASSERT(1 == kDesktop_ARB_MSFBOType);
1066 GR_STATIC_ASSERT(2 == kDesktop_EXT_MSFBOType);
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001067 GR_STATIC_ASSERT(3 == kES_3_0_MSFBOType);
1068 GR_STATIC_ASSERT(4 == kES_Apple_MSFBOType);
1069 GR_STATIC_ASSERT(5 == kES_IMG_MsToTexture_MSFBOType);
1070 GR_STATIC_ASSERT(6 == kES_EXT_MsToTexture_MSFBOType);
vbuzinovdded6962015-06-12 08:59:45 -07001071 GR_STATIC_ASSERT(7 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001072 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001073
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001074 static const char* kInvalidateFBTypeStr[] = {
1075 "None",
1076 "Discard",
1077 "Invalidate",
1078 };
1079 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1080 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1081 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1082 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001083
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001084 static const char* kMapBufferTypeStr[] = {
1085 "None",
1086 "MapBuffer",
1087 "MapBufferRange",
1088 "Chromium",
1089 };
1090 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1091 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1092 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1093 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1094 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1095
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001096 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001097 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001098 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001099 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001100 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001101 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1102 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1103 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1104 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001105
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001106 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001107 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1108 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001109 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001110 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1111 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
cdalton06604b92016-02-05 10:09:51 -08001112 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1113 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1114 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001115 r.appendf("Use non-VBO for dynamic data: %s\n",
bsalomon@google.combcce8922013-03-25 15:38:39 +00001116 (fUseNonVBOVertexAndIndexDynamicData ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001117 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1118 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001119 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001120 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001121 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001122 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001123 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001124
1125 r.append("Configs\n-------\n");
1126 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1127 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001128 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1129 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001130 i,
1131 fConfigTable[i].fFlags,
1132 fConfigTable[i].fFormats.fBaseInternalFormat,
1133 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001134 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1135 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001136 fConfigTable[i].fFormats.fExternalType,
1137 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001138 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001139 }
1140
jvanverthe9c0fc62015-04-29 11:18:05 -07001141 return r;
1142}
1143
jvanverthe9c0fc62015-04-29 11:18:05 -07001144static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1145 switch (p) {
1146 case kLow_GrSLPrecision:
1147 return GR_GL_LOW_FLOAT;
1148 case kMedium_GrSLPrecision:
1149 return GR_GL_MEDIUM_FLOAT;
1150 case kHigh_GrSLPrecision:
1151 return GR_GL_HIGH_FLOAT;
1152 }
1153 SkFAIL("Unknown precision.");
1154 return -1;
1155}
1156
1157static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1158 switch (type) {
1159 case kVertex_GrShaderType:
1160 return GR_GL_VERTEX_SHADER;
1161 case kGeometry_GrShaderType:
1162 return GR_GL_GEOMETRY_SHADER;
1163 case kFragment_GrShaderType:
1164 return GR_GL_FRAGMENT_SHADER;
1165 }
1166 SkFAIL("Unknown shader type.");
1167 return -1;
1168}
1169
jvanverthcba99b82015-06-24 06:59:57 -07001170void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001171 const GrGLInterface* intf,
jvanverthcba99b82015-06-24 06:59:57 -07001172 GrGLSLCaps* glslCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001173 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1174 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1175 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1176 if (kGeometry_GrShaderType != s) {
1177 GrShaderType shaderType = static_cast<GrShaderType>(s);
1178 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001179 GrShaderCaps::PrecisionInfo* first = nullptr;
jvanverthcba99b82015-06-24 06:59:57 -07001180 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001181 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1182 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1183 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1184 GrGLint range[2];
1185 GrGLint bits;
1186 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1187 if (bits) {
jvanverthcba99b82015-06-24 06:59:57 -07001188 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1189 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1190 glslCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001191 if (!first) {
jvanverthcba99b82015-06-24 06:59:57 -07001192 first = &glslCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001193 }
jvanverthcba99b82015-06-24 06:59:57 -07001194 else if (!glslCaps->fShaderPrecisionVaries) {
halcanary9d524f22016-03-29 09:03:52 -07001195 glslCaps->fShaderPrecisionVaries =
jvanverthcba99b82015-06-24 06:59:57 -07001196 (*first != glslCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001197 }
1198 }
1199 }
1200 }
1201 }
1202 }
1203 else {
1204 // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float.
jvanverthcba99b82015-06-24 06:59:57 -07001205 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001206 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1207 if (kGeometry_GrShaderType != s) {
1208 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
jvanverthcba99b82015-06-24 06:59:57 -07001209 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1210 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1211 glslCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001212 }
1213 }
1214 }
1215 }
1216 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1217 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1218 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1219 // are recommended against.
jvanverthcba99b82015-06-24 06:59:57 -07001220 if (glslCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001221 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
halcanary9d524f22016-03-29 09:03:52 -07001222 glslCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
jvanverthcba99b82015-06-24 06:59:57 -07001223 glslCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001224 }
1225 }
cdaltona6b92ad2016-04-11 12:03:08 -07001226 glslCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001227}
1228
bsalomon41e4384e2016-01-08 09:12:44 -08001229bool GrGLCaps::bgraIsInternalFormat() const {
1230 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1231}
1232
bsalomon76148af2016-01-12 11:13:47 -08001233bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1234 GrGLenum* internalFormat, GrGLenum* externalFormat,
1235 GrGLenum* externalType) const {
1236 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1237 externalFormat, externalType)) {
1238 return false;
1239 }
1240 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1241 return true;
1242}
1243
1244bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1245 GrGLenum* internalFormat) const {
1246 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1247 return false;
1248 }
1249 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1250 return true;
1251}
1252
1253bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1254 GrGLenum* externalFormat, GrGLenum* externalType) const {
1255 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1256 externalFormat, externalType)) {
1257 return false;
1258 }
1259 return true;
1260}
1261
1262bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1263 if (GrPixelConfigIsCompressed(config)) {
1264 return false;
1265 }
1266 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1267 return true;
1268}
1269
1270bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1271 ExternalFormatUsage usage, GrGLenum* externalFormat,
1272 GrGLenum* externalType) const {
1273 SkASSERT(externalFormat && externalType);
1274 if (GrPixelConfigIsCompressed(memoryConfig) || GrPixelConfigIsCompressed(memoryConfig)) {
1275 return false;
1276 }
1277
1278 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1279 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1280
1281 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1282 // made to work in many cases using glPixelStore and what not but is not needed currently.
1283 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1284 return false;
1285 }
1286
1287 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1288 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1289
bsalomone9573312016-01-25 14:33:25 -08001290 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1291 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1292 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1293 // texture, not the red component.
1294 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1295 if (this->textureRedSupport()) {
1296 SkASSERT(GR_GL_RED == *externalFormat);
1297 *externalFormat = GR_GL_ALPHA;
1298 }
1299 }
1300
bsalomon76148af2016-01-12 11:13:47 -08001301 return true;
1302}
1303
bsalomoncdee0092016-01-08 13:20:12 -08001304void GrGLCaps::initConfigTable(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
1305 GrGLSLCaps* glslCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001306 /*
1307 Comments on renderability of configs on various GL versions.
1308 OpenGL < 3.0:
1309 no built in support for render targets.
1310 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1311 format RGB, RGBA and NV float formats we don't use.
1312 This is the following:
1313 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1314 RGB10_A2, RGBA12,RGBA16
1315 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1316 since they aren't required by later standards and the driver can simply return
1317 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1318 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1319 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1320 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1321 This adds a lot of additional renderable sized formats, including ALPHA8.
1322 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1323 16F, 32I, 32UI, and 32F variants).
1324 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1325
1326 For both the above extensions we limit ourselves to those that are also required by
1327 OpenGL 3.0.
1328
1329 OpenGL 3.0:
1330 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1331 but are not required to be supported as renderable textures/renderbuffer.
1332 Required renderable color formats:
1333 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1334 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1335 RGB10_A2.
1336 - R11F_G11F_B10F.
1337 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1338 and RG8UI.
1339 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1340 - ALPHA8
1341
1342 OpenGL 3.1, 3.2, 3.3
1343 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1344 OpengGL 3.3, 4.0, 4.1
1345 Adds RGB10_A2UI.
1346 OpengGL 4.2
1347 Adds
1348 - RGB5_A1, RGBA4
1349 - RGB565
1350 OpenGL 4.4
1351 Does away with the separate list and adds a column to the sized internal color format
1352 table. However, no new formats become required color renderable.
1353
1354 ES 2.0
1355 color renderable: RGBA4, RGB5_A1, RGB565
1356 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1357 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1358 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1359 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1360 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1361 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1362
1363 ES 3.0
1364 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1365 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1366 RGB5_A1.
1367 - RGB8 and RGB565.
1368 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1369 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1370 ES 3.1
1371 Adds RGB10_A2, RGB10_A2UI,
1372 ES 3.2
1373 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1374 */
1375 uint32_t allRenderFlags = ConfigInfo::kRenderable_Flag;
1376 if (kNone_MSFBOType != fMSFBOType) {
1377 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1378 }
1379
1380 GrGLStandard standard = ctxInfo.standard();
1381 GrGLVersion version = ctxInfo.version();
1382
cblume790d5132016-02-29 11:13:29 -08001383 bool texStorageSupported = false;
1384 if (kGL_GrGLStandard == standard) {
1385 // The EXT version can apply to either GL or GLES.
1386 texStorageSupported = version >= GR_GL_VER(4,2) ||
1387 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1388 ctxInfo.hasExtension("GL_EXT_texture_storage");
1389 } else {
1390 // Qualcomm Adreno drivers appear to have issues with texture storage.
1391 texStorageSupported = (version >= GR_GL_VER(3,0) &&
1392 kQualcomm_GrGLVendor != ctxInfo.vendor()) &&
1393 ctxInfo.hasExtension("GL_EXT_texture_storage");
1394 }
1395
1396 // TODO: remove after command buffer supports full ES 3.0
1397 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1398 kChromium_GrGLDriver == ctxInfo.driver()) {
1399 texStorageSupported = false;
1400 }
1401
cdalton74b8d322016-04-11 14:47:28 -07001402 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1403
bsalomon30447372015-12-21 09:03:05 -08001404 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1405 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001406 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001407 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001408 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001409 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001410
1411 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1412 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001413 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1414 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001415 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001416 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001417 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1418 if (kGL_GrGLStandard == standard) {
1419 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1420 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001421 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001422 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1423 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1424 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1425 }
egdaniel4999df82016-01-07 17:06:04 -08001426 }
cblume790d5132016-02-29 11:13:29 -08001427 if (texStorageSupported) {
1428 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1429 }
cdalton74b8d322016-04-11 14:47:28 -07001430 if (texelBufferSupport) {
1431 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1432 }
bsalomoncdee0092016-01-08 13:20:12 -08001433 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001434
bsalomon76148af2016-01-12 11:13:47 -08001435 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1436 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001437 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001438 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001439 if (kGL_GrGLStandard == standard) {
1440 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1441 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1442 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1443 // Since the internal format is RGBA8, it is also renderable.
1444 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1445 allRenderFlags;
1446 }
1447 } else {
1448 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1449 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1450 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1451 // The APPLE extension doesn't make this renderable.
1452 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1453 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1454 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1455 // Though, that seems to not be the case if the texture storage extension is
1456 // present. The specs don't exactly make that clear.
1457 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1458 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1459 }
1460 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1461 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1462 ConfigInfo::kRenderable_Flag;
1463 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001464 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001465 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1466 ConfigInfo::kRenderableWithMSAA_Flag;
1467 }
1468 }
1469 }
cblume790d5132016-02-29 11:13:29 -08001470 if (texStorageSupported) {
1471 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1472 }
bsalomoncdee0092016-01-08 13:20:12 -08001473 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001474
brianosmana6359362016-03-21 06:55:37 -07001475 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001476 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001477 if (kGL_GrGLStandard == standard) {
1478 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001479 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001480 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1481 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1482 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001483 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001484 }
1485 }
1486 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001487 if (fSRGBSupport) {
1488 fSRGBWriteControl = true;
1489 }
bsalomon41e4384e2016-01-08 09:12:44 -08001490 } else {
1491 // See https://bug.skia.org/4148 for PowerVR issue.
brianosmana6359362016-03-21 06:55:37 -07001492 fSRGBSupport = kPowerVRRogue_GrGLRenderer != ctxInfo.renderer() &&
bsalomon41e4384e2016-01-08 09:12:44 -08001493 (ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB"));
1494 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1495 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001496 // See https://bug.skia.org/5329 for Adreno4xx issue.
1497 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1498 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001499 }
brianosmana6359362016-03-21 06:55:37 -07001500 if (!ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode")) {
1501 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode:
1502 fSRGBSupport = false;
1503 }
bsalomon30447372015-12-21 09:03:05 -08001504 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1505 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1506 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1507 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001508 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1509 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001510 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001511 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001512 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001513 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1514 allRenderFlags;
1515 }
cblume790d5132016-02-29 11:13:29 -08001516 if (texStorageSupported) {
1517 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1518 }
bsalomoncdee0092016-01-08 13:20:12 -08001519 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001520
brianosmana6359362016-03-21 06:55:37 -07001521 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1522 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1523 // is in this format, for example).
1524 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1525 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1526 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1527 // external format is GL_BGRA.
1528 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1529 GR_GL_BGRA;
1530 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1531 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1532 if (fSRGBSupport) {
1533 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1534 allRenderFlags;
1535 }
1536 if (texStorageSupported) {
1537 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1538 }
1539 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1540
bsalomon30447372015-12-21 09:03:05 -08001541 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1542 if (this->ES2CompatibilitySupport()) {
1543 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1544 } else {
1545 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1546 }
bsalomon76148af2016-01-12 11:13:47 -08001547 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1548 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001549 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001550 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001551 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1552 if (kGL_GrGLStandard == standard) {
1553 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ES2_compatibility")) {
1554 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1555 }
1556 } else {
1557 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1558 }
cblume790d5132016-02-29 11:13:29 -08001559 // 565 is not a sized internal format on desktop GL. So on desktop with
1560 // 565 we always use an unsized internal format to let the system pick
1561 // the best sized format to convert the 565 data to. Since TexStorage
1562 // only allows sized internal formats we disallow it.
1563 //
1564 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1565 // update.
1566 if (texStorageSupported && kGL_GrGLStandard != standard) {
1567 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1568 }
bsalomoncdee0092016-01-08 13:20:12 -08001569 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001570
1571 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1572 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001573 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1574 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001575 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001576 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001577 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1578 if (kGL_GrGLStandard == standard) {
1579 if (version >= GR_GL_VER(4, 2)) {
1580 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1581 }
1582 } else {
1583 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1584 }
cblume790d5132016-02-29 11:13:29 -08001585 if (texStorageSupported) {
1586 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1587 }
bsalomoncdee0092016-01-08 13:20:12 -08001588 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001589
1590 if (this->textureRedSupport()) {
1591 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1592 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001593 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1594 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001595 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001596 if (texelBufferSupport) {
1597 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1598 }
bsalomon30447372015-12-21 09:03:05 -08001599 } else {
1600 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1601 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001602 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1603 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001604 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001605 }
1606 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001607 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001608 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon40170072016-05-05 14:40:03 -07001609 if (this->textureRedSupport() ||
1610 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1611 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001612 // desktop ARB extension/3.0+ supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001613 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001614 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1615 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1616 }
cblume790d5132016-02-29 11:13:29 -08001617 if (texStorageSupported) {
1618 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1619 }
bsalomon41e4384e2016-01-08 09:12:44 -08001620
1621 // Check for [half] floating point texture support
1622 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1623 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1624 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1625 bool hasFPTextures = false;
1626 bool hasHalfFPTextures = false;
1627 // for now we don't support floating point MSAA on ES
1628 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ?
1629 allRenderFlags : (uint32_t)ConfigInfo::kRenderable_Flag;
1630
1631 if (kGL_GrGLStandard == standard) {
1632 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1633 hasFPTextures = true;
1634 hasHalfFPTextures = true;
1635 }
1636 } else {
1637 if (version >= GR_GL_VER(3, 1)) {
1638 hasFPTextures = true;
1639 hasHalfFPTextures = true;
1640 } else {
1641 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1642 ctxInfo.hasExtension("GL_OES_texture_float")) {
1643 hasFPTextures = true;
1644 }
1645 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1646 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1647 hasHalfFPTextures = true;
1648 }
1649 }
1650 }
bsalomon30447372015-12-21 09:03:05 -08001651
1652 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1653 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA32F;
bsalomon76148af2016-01-12 11:13:47 -08001654 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1655 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001656 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalType = GR_GL_FLOAT;
bsalomon7928ef62016-01-05 10:26:39 -08001657 fConfigTable[kRGBA_float_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001658 if (hasFPTextures) {
1659 fConfigTable[kRGBA_float_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1660 // For now we only enable rendering to float on desktop, because on ES we'd have to solve
1661 // many precision issues and no clients actually want this yet.
1662 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1663 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1664 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= fpRenderFlags;
1665 }
1666 }
cblume790d5132016-02-29 11:13:29 -08001667 if (texStorageSupported) {
1668 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1669 }
cdalton74b8d322016-04-11 14:47:28 -07001670 if (texelBufferSupport) {
1671 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1672 }
bsalomoncdee0092016-01-08 13:20:12 -08001673 fConfigTable[kRGBA_float_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001674
1675 if (this->textureRedSupport()) {
1676 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1677 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001678 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1679 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001680 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001681 if (texelBufferSupport) {
1682 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1683 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1684 }
bsalomon30447372015-12-21 09:03:05 -08001685 } else {
1686 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1687 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001688 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1689 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001690 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001691 }
1692 if (kGL_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(3, 0)) {
1693 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1694 } else {
1695 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1696 }
bsalomon7928ef62016-01-05 10:26:39 -08001697 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001698 if (hasHalfFPTextures) {
1699 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1700 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1701 // GL_RED internal format.
1702 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1703 (this->textureRedSupport() &&
1704 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1705 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1706 }
1707 }
cblume790d5132016-02-29 11:13:29 -08001708 if (texStorageSupported) {
1709 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1710 }
bsalomon30447372015-12-21 09:03:05 -08001711
1712 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1713 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001714 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1715 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001716 if (kGL_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(3, 0)) {
1717 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1718 } else {
1719 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1720 }
bsalomon7928ef62016-01-05 10:26:39 -08001721 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001722 if (hasHalfFPTextures) {
1723 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1724 // ES requires 3.2 or EXT_color_buffer_half_float.
1725 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1726 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1727 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1728 }
1729 }
cblume790d5132016-02-29 11:13:29 -08001730 if (texStorageSupported) {
1731 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1732 }
cdalton74b8d322016-04-11 14:47:28 -07001733 if (texelBufferSupport) {
1734 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1735 }
bsalomoncdee0092016-01-08 13:20:12 -08001736 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001737
1738 // Compressed texture support
1739
1740 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1741 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1742
1743 // TODO: Fix command buffer bindings and remove this.
1744 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001745
1746 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001747 // Below we set the external formats and types to 0.
bsalomon30447372015-12-21 09:03:05 -08001748
1749 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_PALETTE8_RGBA8;
1750 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001751 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001752 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001753 fConfigTable[kIndex_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001754 // Disable this for now, while we investigate https://bug.skia.org/4333
1755 if (false) {
1756 // Check for 8-bit palette..
1757 GrGLint numFormats;
1758 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
1759 if (numFormats) {
1760 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
1761 GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
1762 for (int i = 0; i < numFormats; ++i) {
1763 if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
1764 fConfigTable[kIndex_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1765 break;
1766 }
1767 }
1768 }
1769 }
bsalomoncdee0092016-01-08 13:20:12 -08001770 fConfigTable[kIndex_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001771
bsalomon41e4384e2016-01-08 09:12:44 -08001772 // May change the internal format based on extensions.
1773 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1774 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1775 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1776 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1777 if (ctxInfo.hasExtension("GL_EXT_texture_compression_latc") ||
1778 ctxInfo.hasExtension("GL_NV_texture_compression_latc")) {
1779 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1780 } else if ((kGL_GrGLStandard == standard && version >= GR_GL_VER(3, 0)) ||
1781 ctxInfo.hasExtension("GL_EXT_texture_compression_rgtc") ||
1782 ctxInfo.hasExtension("GL_ARB_texture_compression_rgtc")) {
1783 // RGTC is identical and available on OpenGL 3.0+ as well as with extensions
1784 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1785 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1786 GR_GL_COMPRESSED_RED_RGTC1;
1787 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1788 GR_GL_COMPRESSED_RED_RGTC1;
1789 } else if (ctxInfo.hasExtension("GL_AMD_compressed_3DC_texture")) {
1790 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1791 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_3DC_X;
1792 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1793 GR_GL_COMPRESSED_3DC_X;
1794
bsalomon30447372015-12-21 09:03:05 -08001795 }
bsalomon76148af2016-01-12 11:13:47 -08001796 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001797 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001798 fConfigTable[kLATC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001799 fConfigTable[kLATC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001800
1801 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1802 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
bsalomon76148af2016-01-12 11:13:47 -08001803 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001804 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001805 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001806 if (kGL_GrGLStandard == standard) {
1807 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1808 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1809 }
1810 } else {
1811 if (version >= GR_GL_VER(3, 0) ||
1812 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1813 // ETC2 is a superset of ETC1, so we can just check for that, too.
1814 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1815 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1816 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1817 }
1818 }
bsalomoncdee0092016-01-08 13:20:12 -08001819 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001820
1821 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_R11_EAC;
1822 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_R11_EAC;
bsalomon76148af2016-01-12 11:13:47 -08001823 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001824 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001825 fConfigTable[kR11_EAC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001826 // Check for R11_EAC. We don't support R11_EAC on desktop, as most cards default to
1827 // decompressing the textures in the driver, and is generally slower.
1828 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) {
1829 fConfigTable[kR11_EAC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1830 }
bsalomoncdee0092016-01-08 13:20:12 -08001831 fConfigTable[kR11_EAC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001832
1833 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fBaseInternalFormat =
1834 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
1835 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fSizedInternalFormat =
1836 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
bsalomon76148af2016-01-12 11:13:47 -08001837 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1838 0;
bsalomon30447372015-12-21 09:03:05 -08001839 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001840 fConfigTable[kASTC_12x12_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001841 if (ctxInfo.hasExtension("GL_KHR_texture_compression_astc_hdr") ||
1842 ctxInfo.hasExtension("GL_KHR_texture_compression_astc_ldr") ||
1843 ctxInfo.hasExtension("GL_OES_texture_compression_astc")) {
1844 fConfigTable[kASTC_12x12_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1845 }
bsalomoncdee0092016-01-08 13:20:12 -08001846 fConfigTable[kASTC_12x12_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001847
1848 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1849
1850 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001851 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1852 ctxInfo.version() >= GR_GL_VER(3,0));
1853 // All ES versions (thus far) require sized internal formats for render buffers.
1854 // TODO: Always use sized internal format?
1855 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1856
bsalomon30447372015-12-21 09:03:05 -08001857 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001858 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1859 // param to glTex[Sub]Image.
1860 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1861 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1862 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1863 fConfigTable[i].fFormats.fSizedInternalFormat :
1864 fConfigTable[i].fFormats.fBaseInternalFormat;
1865 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001866 fConfigTable[i].fFormats.fSizedInternalFormat :
1867 fConfigTable[i].fFormats.fBaseInternalFormat;
1868 }
1869 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1870 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1871 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1872 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1873 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001874 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001875 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001876
1877 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1878 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1879 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1880 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001881 }
1882
1883 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1884 // as a base format.
1885 // GL_EXT_texture_format_BGRA8888:
1886 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1887 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1888 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001889 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001890 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1891 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1892 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001893 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001894 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1895 }
1896
bsalomoncdee0092016-01-08 13:20:12 -08001897 // If we don't have texture swizzle support then the shader generator must insert the
1898 // swizzle into shader code.
1899 if (!this->textureSwizzleSupport()) {
1900 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1901 glslCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
1902 }
1903 }
1904
bsalomon7f9b2e42016-01-12 13:29:26 -08001905 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
1906 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
1907 // gets written to the single component.
1908 if (this->textureRedSupport()) {
1909 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1910 GrPixelConfig config = static_cast<GrPixelConfig>(i);
1911 if (GrPixelConfigIsAlphaOnly(config) &&
1912 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
1913 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
1914 }
1915 }
1916 }
1917
bsalomon30447372015-12-21 09:03:05 -08001918#ifdef SK_DEBUG
1919 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08001920 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08001921 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001922 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
1923 fConfigTable[i].fFormats.fBaseInternalFormat);
1924 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08001925 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08001926 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
1927 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
1928 fConfigTable[i].fFormats.fExternalFormat[j]);
1929 }
1930 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08001931 }
1932#endif
1933}
1934
egdanielb7e7d572015-11-04 04:23:53 -08001935void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {}