blob: 14c03d70a7de45742a1ec68fc6f1d3686225e9e5 [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;
cdaltond4727922015-11-10 12:49:06 -080040 fMultisampleDisableSupport = false;
cdalton06604b92016-02-05 10:09:51 -080041 fDrawIndirectSupport = false;
42 fMultiDrawIndirectSupport = false;
43 fBaseInstanceSupport = false;
bsalomon@google.com96966a52013-02-21 16:34:21 +000044 fUseNonVBOVertexAndIndexDynamicData = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
piotaixre4b23142014-10-02 10:57:53 -070054
bsalomon083617b2016-02-12 12:10:14 -080055 fBlitFramebufferSupport = kNone_BlitFramebufferSupport;
56
halcanary385fe4d2015-08-26 13:07:48 -070057 fShaderCaps.reset(new GrGLSLCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070058
cdalton4cd67132015-06-10 19:23:46 -070059 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000060}
61
cdalton4cd67132015-06-10 19:23:46 -070062void GrGLCaps::init(const GrContextOptions& contextOptions,
63 const GrGLContextInfo& ctxInfo,
64 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000065 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000066 GrGLVersion version = ctxInfo.version();
67
bsalomon@google.combcce8922013-03-25 15:38:39 +000068 /**************************************************************************
69 * Caps specific to GrGLCaps
70 **************************************************************************/
71
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000072 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000073 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
74 &fMaxFragmentUniformVectors);
75 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000076 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000077 GrGLint max;
78 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
79 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000080 if (version >= GR_GL_VER(3, 2)) {
81 GrGLint profileMask;
82 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
83 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
84 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000085 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000086 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000087
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000088 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000089 fUnpackRowLengthSupport = true;
90 fUnpackFlipYSupport = false;
91 fPackRowLengthSupport = true;
92 fPackFlipYSupport = false;
93 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000094 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
95 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000096 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000097 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
98 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000099 fPackFlipYSupport =
100 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
101 }
102
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000103 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000104 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
105
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000106 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700107 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
108 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
109 ctxInfo.hasExtension("GL_NV_texture_barrier");
110 } else {
111 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
112 }
113
cdaltoneb79eea2016-02-26 10:39:34 -0800114 if (kGL_GrGLStandard == standard) {
115 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
116 ctxInfo.hasExtension("GL_ARB_texture_multisample");
117 } else {
118 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
119 }
120
halcanary9d524f22016-03-29 09:03:52 -0700121 // ARB_texture_rg is part of OpenGL 3.0, but mesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800122 // and GL_RG on FBO textures.
cdalton1acea862015-06-02 13:05:52 -0700123 if (kMesa_GrGLDriver != ctxInfo.driver()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800124 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000125 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
126 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800127 } else {
128 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
129 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000130 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000131 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000132 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000133 ctxInfo.hasExtension("GL_ARB_imaging");
134
bsalomon@google.com3012ded2013-02-22 16:44:04 +0000135 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
136 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
137 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
138 // limit this decision to specific GPU families rather than basing it on the vendor alone.
139 if (!GR_GL_MUST_USE_VBO &&
cdaltone2e71c22016-04-07 18:13:29 -0700140 !fIsCoreProfile &&
bsalomoned82c4e2014-09-02 07:54:47 -0700141 (kARM_GrGLVendor == ctxInfo.vendor() ||
142 kImagination_GrGLVendor == ctxInfo.vendor() ||
143 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
bsalomon@google.com96966a52013-02-21 16:34:21 +0000144 fUseNonVBOVertexAndIndexDynamicData = true;
145 }
skia.committer@gmail.com631cdcb2013-03-01 12:12:55 +0000146
egdaniel9250d242015-05-18 13:04:26 -0700147 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
148 // Thus we are blacklisting this extension for now on Adreno4xx devices.
149 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
150 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
151 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
152 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000153 fDiscardRenderTargetSupport = true;
154 fInvalidateFBType = kInvalidate_InvalidateFBType;
155 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
156 fDiscardRenderTargetSupport = true;
157 fInvalidateFBType = kDiscard_InvalidateFBType;
158 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000159
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000160 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
161 fFullClearIsFree = true;
162 }
163
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000164 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000165 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800166 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
167 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000168 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000169 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
170 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000171 }
172
cdalton626e1ff2015-06-12 13:56:46 -0700173 if (kGL_GrGLStandard == standard) {
174 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
175 } else {
176 fDirectStateAccessSupport = false;
177 }
178
179 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
180 fDebugSupport = true;
181 } else {
182 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
183 }
184
jvanverth3f801cb2014-12-16 09:49:38 -0800185 if (kGL_GrGLStandard == standard) {
186 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
187 }
188 else {
189 fES2CompatibilitySupport = true;
190 }
191
cdalton0edea2c2015-05-21 08:27:44 -0700192 if (kGL_GrGLStandard == standard) {
193 fMultisampleDisableSupport = true;
194 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700195 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700196 }
197
kkinnunend94708e2015-07-30 22:47:04 -0700198 if (kGL_GrGLStandard == standard) {
199 if (version >= GR_GL_VER(3, 0)) {
200 fBindFragDataLocationSupport = true;
201 }
202 } else {
203 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
204 fBindFragDataLocationSupport = true;
205 }
joshualittc1f56b52015-06-22 12:31:31 -0700206 }
207
bsalomonb8909d32016-01-28 07:09:52 -0800208#if 0 // Disabled due to https://bug.skia.org/4454
joshualitt7bdd70a2015-10-01 06:28:11 -0700209 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
bsalomonb8909d32016-01-28 07:09:52 -0800210#else
211 fBindUniformLocationSupport = false;
212#endif
joshualitt7bdd70a2015-10-01 06:28:11 -0700213
kkinnunene06ed252016-02-16 23:15:40 -0800214 if (kGL_GrGLStandard == standard) {
215 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
216 // We also require textureSize() support for rectangle 2D samplers which was added in
217 // GLSL 1.40.
218 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
219 fRectangleTextureSupport = true;
220 }
bsalomone179a912016-01-20 06:18:10 -0800221 }
kkinnunene06ed252016-02-16 23:15:40 -0800222 } else {
223 // Command buffer exposes this in GL ES context for Chromium reasons,
224 // but it should not be used. Also, at the time of writing command buffer
225 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800226 }
227
bsalomoncdee0092016-01-08 13:20:12 -0800228 if (kGL_GrGLStandard == standard) {
229 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
230 fTextureSwizzleSupport = true;
231 }
232 } else {
233 if (version >= GR_GL_VER(3,0)) {
234 fTextureSwizzleSupport = true;
235 }
236 }
237
cblume09bd2c02016-03-01 14:08:28 -0800238 if (kGL_GrGLStandard == standard) {
239 fMipMapLevelAndLodControlSupport = true;
240 } else if (kGLES_GrGLStandard == standard) {
241 if (version >= GR_GL_VER(3,0)) {
242 fMipMapLevelAndLodControlSupport = true;
243 }
244 }
245
bsalomon88c7b982015-07-31 11:20:16 -0700246#ifdef SK_BUILD_FOR_WIN
247 // We're assuming that on Windows Chromium we're using ANGLE.
248 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
249 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700250 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700251 fRGBA8888PixelsOpsAreSlow = isANGLE;
252 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
253 // check DX11 ANGLE.
254 fPartialFBOReadIsSlow = isANGLE;
255#endif
256
ericrkb4ecabd2016-03-11 15:18:20 -0800257 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
258 bool isMAC = false;
259#ifdef SK_BUILD_FOR_MAC
260 isMAC = true;
261#endif
262
263 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
264 // vis-versa.
265 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
266
cdalton4cd67132015-06-10 19:23:46 -0700267 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700268 * GrShaderCaps fields
269 **************************************************************************/
270
egdaniel0a482332015-10-26 08:59:10 -0700271 // This must be called after fCoreProfile is set on the GrGLCaps
272 this->initGLSL(ctxInfo);
273 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
274
egdaniel05ded892015-10-26 07:38:05 -0700275 glslCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
276
277 // For now these two are equivalent but we could have dst read in shader via some other method.
278 // Before setting this, initGLSL() must have been called.
279 glslCaps->fDstReadInShaderSupport = glslCaps->fFBFetchSupport;
280
281 // Enable supported shader-related caps
282 if (kGL_GrGLStandard == standard) {
283 glslCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
284 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
285 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
286 glslCaps->fShaderDerivativeSupport = true;
287 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
288 glslCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
289 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
cdalton793dc262016-02-08 10:11:47 -0800290 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
291 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700292 }
293 else {
294 glslCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
295
296 glslCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
297 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800298
299 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
300 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700301 }
302
ethannicholas22793252016-01-30 09:59:10 -0800303 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
304 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700305 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
ethannicholas22793252016-01-30 09:59:10 -0800306 &glslCaps->fPixelLocalStorageSize);
307 glslCaps->fPLSPathRenderingSupport = glslCaps->fFBFetchSupport;
308 }
309 else {
310 glslCaps->fPixelLocalStorageSize = 0;
311 glslCaps->fPLSPathRenderingSupport = false;
312 }
313
cdalton9c3f1432016-03-11 10:07:37 -0800314 // Protect ourselves against tracking huge amounts of texture state.
315 static const uint8_t kMaxSaneSamplers = 32;
316 GrGLint maxSamplers;
317 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
318 glslCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
319 if (glslCaps->fGeometryShaderSupport) {
320 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
321 glslCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
322 }
323 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
324 glslCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
325 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
326 glslCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
327
egdaniel05ded892015-10-26 07:38:05 -0700328 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700329 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000330 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700331
cdalton63f6c1f2015-11-06 07:09:43 -0800332 // We need dual source blending and the ability to disable multisample in order to support mixed
333 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800334 if (fMultisampleDisableSupport &&
335 glslCaps->dualSourceBlendingSupport() &&
336 fShaderCaps->pathRenderingSupport()) {
337 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800338 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800339 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800340 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
341 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800342 fDiscardRenderTargetSupport = false;
343 fInvalidateFBType = kNone_InvalidateFBType;
344 }
345 }
346
egdanieleed519e2016-01-15 11:36:18 -0800347 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700348 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700349 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700350 this->initStencilFormats(ctxInfo);
351
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000352 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000353 // we could also look for GL_ATI_separate_stencil extension or
354 // GL_EXT_stencil_two_side but they use different function signatures
355 // than GL2.0+ (and than each other).
356 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
357 // supported on GL 1.4 and higher or by extension
358 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
359 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
360 } else {
361 // ES 2 has two sided stencil and stencil wrap
362 fTwoSidedStencilSupport = true;
363 fStencilWrapOpsSupport = true;
364 }
365
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000366 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000367 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
368 // extension includes glMapBuffer.
369 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
370 fMapBufferFlags |= kSubset_MapFlag;
371 fMapBufferType = kMapBufferRange_MapBufferType;
372 } else {
373 fMapBufferType = kMapBuffer_MapBufferType;
374 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000375 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000376 // Unextended GLES2 doesn't have any buffer mapping.
377 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800378 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800379 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
380 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800381 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
382 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
383 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000384 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
385 fMapBufferFlags = kCanMap_MapFlag;
386 fMapBufferType = kMapBuffer_MapBufferType;
387 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000388 }
389
jvanverthd7a2c1f2015-12-07 07:36:44 -0800390 if (kGL_GrGLStandard == standard) {
391 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
392 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700393 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800394 } else {
395 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
396 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700397 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
398 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800399 }
400 }
401
joshualitte5b74c62015-06-01 14:17:47 -0700402 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
403 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700404 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700405 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
406 // we will use for all GrBatchs. Right now we might wind up mapping a large buffer and using
407 // a small subset.
408#if 0
cdalton397536c2016-03-25 12:15:03 -0700409 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700410#else
cdalton397536c2016-03-25 12:15:03 -0700411 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700412#endif
joshualitte5b74c62015-06-01 14:17:47 -0700413 }
414
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000415 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000416 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
417 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
418 fNPOTTextureTileSupport = true;
419 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000420 } else {
421 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000422 // ES3 has no limitations.
423 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
424 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000425 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
426 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
427 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
428 // to alllow arbitrary wrap modes, however.
429 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000430 }
431
bsalomone72bd022015-10-26 07:33:03 -0700432 // Using MIPs on this GPU seems to be a source of trouble.
433 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
434 fMipMapSupport = false;
435 }
436
bsalomon@google.combcce8922013-03-25 15:38:39 +0000437 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
438 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
439 // Our render targets are always created with textures as the color
440 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000441 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000442
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000443 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
444
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000445 // Disable scratch texture reuse on Mali and Adreno devices
446 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor() &&
447 kQualcomm_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000448
robertphillips1b8e1b52015-06-24 06:54:10 -0700449#if 0
450 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
451 kQualcomm_GrGLVendor != ctxInfo.vendor();
452#endif
453
egdaniel05ded892015-10-26 07:38:05 -0700454 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000455 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800456 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000457 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800458 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000459 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800460 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
461 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
462 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
463 // This is to guard against platforms that may not support as many samples for
464 // glRasterSamples as they do for framebuffers.
465 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
466 }
467 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000468
bsalomon63b21962014-11-05 07:05:34 -0800469 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800470 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800471 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800472 fUseDrawInsteadOfClear = true;
473 }
474
joshualitt83bc2292015-06-18 14:18:02 -0700475 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
476 fUseDrawInsteadOfPartialRenderTargetWrite = true;
477 }
478
bsalomonbabafcc2016-02-16 11:36:47 -0800479 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
480 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
481 fUseDrawInsteadOfPartialRenderTargetWrite = true;
482 fUseDrawInsteadOfAllRenderTargetWrites = true;
483 }
484
robertphillips63926682015-08-20 09:39:02 -0700485#ifdef SK_BUILD_FOR_WIN
486 // On ANGLE deferring flushes can lead to GPU starvation
487 fPreferVRAMUseOverFlushes = !isANGLE;
488#endif
489
bsalomon7dea7b72015-08-19 08:26:51 -0700490 if (kChromium_GrGLDriver == ctxInfo.driver()) {
491 fMustClearUploadedBufferData = true;
492 }
493
bsalomond08ea5f2015-02-20 06:58:13 -0800494 if (kGL_GrGLStandard == standard) {
495 // ARB allows mixed size FBO attachments, EXT does not.
496 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
497 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
498 fOversizedStencilSupport = true;
499 } else {
500 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
501 }
502 } else {
503 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
504 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
505 }
506
joshualitt58001552015-06-26 12:46:36 -0700507 if (kGL_GrGLStandard == standard) {
508 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
509 // instanced arrays, but we could make this more granular if we wanted
510 fSupportsInstancedDraws =
511 version >= GR_GL_VER(3, 2) ||
512 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
513 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
514 } else {
515 fSupportsInstancedDraws =
516 version >= GR_GL_VER(3, 0) ||
517 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
518 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
519 }
520
cdalton06604b92016-02-05 10:09:51 -0800521 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700522 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
523 ctxInfo.hasExtension("GL_ARB_draw_indirect");
524 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
525 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
526 (!fBaseInstanceSupport && // The ARB extension has no base inst.
527 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
cdalton06604b92016-02-05 10:09:51 -0800528 } else {
529 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
530 fMultiDrawIndirectSupport = ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
531 fBaseInstanceSupport = ctxInfo.hasExtension("GL_EXT_base_instance");
532 }
533
jvanverthcba99b82015-06-24 06:59:57 -0700534 this->initShaderPrecisionTable(ctxInfo, gli, glslCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800535
536 if (contextOptions.fUseShaderSwizzling) {
537 fTextureSwizzleSupport = false;
538 }
539
ethannicholas28ef4452016-03-25 09:26:03 -0700540 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700541 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
542 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700543 fSampleShadingSupport = true;
544 }
545 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
546 fSampleShadingSupport = true;
547 }
548
brianosman09563ce2016-06-02 08:59:34 -0700549 // Manual mip-mapping requires mip-level sampling control.
550 // Additionally, Adreno330 will produce empty mip-maps for the very smallest mips with
551 // our manual (draw-call) implementation.
brianosman21c5ec62016-06-02 10:19:10 -0700552 // At least some Mali chips (T604 in Nexus10) produces incorrect (wrt sRGB) mips using draws
brianosman09563ce2016-06-02 08:59:34 -0700553 if (fMipMapLevelAndLodControlSupport &&
brianosman21c5ec62016-06-02 10:19:10 -0700554 kAdreno3xx_GrGLRenderer != ctxInfo.renderer() &&
555 kARM_GrGLVendor != ctxInfo.vendor()) {
brianosman09563ce2016-06-02 08:59:34 -0700556 fDoManualMipmapping = true;
557 }
558
bsalomoncdee0092016-01-08 13:20:12 -0800559 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
560 // already been detected.
561 this->initConfigTable(ctxInfo, gli, glslCaps);
cdalton4cd67132015-06-10 19:23:46 -0700562
563 this->applyOptionsOverrides(contextOptions);
564 glslCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000565}
566
egdaniel472d44e2015-10-22 08:20:00 -0700567const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
568 bool isCoreProfile) {
569 switch (generation) {
570 case k110_GrGLSLGeneration:
571 if (kGLES_GrGLStandard == standard) {
572 // ES2s shader language is based on version 1.20 but is version
573 // 1.00 of the ES language.
574 return "#version 100\n";
575 } else {
576 SkASSERT(kGL_GrGLStandard == standard);
577 return "#version 110\n";
578 }
579 case k130_GrGLSLGeneration:
580 SkASSERT(kGL_GrGLStandard == standard);
581 return "#version 130\n";
582 case k140_GrGLSLGeneration:
583 SkASSERT(kGL_GrGLStandard == standard);
584 return "#version 140\n";
585 case k150_GrGLSLGeneration:
586 SkASSERT(kGL_GrGLStandard == standard);
587 if (isCoreProfile) {
588 return "#version 150\n";
589 } else {
590 return "#version 150 compatibility\n";
591 }
592 case k330_GrGLSLGeneration:
593 if (kGLES_GrGLStandard == standard) {
594 return "#version 300 es\n";
595 } else {
596 SkASSERT(kGL_GrGLStandard == standard);
597 if (isCoreProfile) {
598 return "#version 330\n";
599 } else {
600 return "#version 330 compatibility\n";
601 }
602 }
cdalton33ad7012016-02-22 07:55:44 -0800603 case k400_GrGLSLGeneration:
604 SkASSERT(kGL_GrGLStandard == standard);
605 if (isCoreProfile) {
606 return "#version 400\n";
607 } else {
608 return "#version 400 compatibility\n";
609 }
egdaniel472d44e2015-10-22 08:20:00 -0700610 case k310es_GrGLSLGeneration:
611 SkASSERT(kGLES_GrGLStandard == standard);
612 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800613 case k320es_GrGLSLGeneration:
614 SkASSERT(kGLES_GrGLStandard == standard);
615 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700616 }
617 return "<no version>";
618}
619
egdaniel05ded892015-10-26 07:38:05 -0700620void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700621 GrGLStandard standard = ctxInfo.standard();
622 GrGLVersion version = ctxInfo.version();
623
624 /**************************************************************************
625 * Caps specific to GrGLSLCaps
626 **************************************************************************/
627
628 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
629 glslCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700630 if (kGLES_GrGLStandard == standard) {
631 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
632 glslCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
633 glslCaps->fFBFetchSupport = true;
634 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
635 glslCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
636 }
637 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
638 // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know
639 glslCaps->fFBFetchNeedsCustomOutput = false;
640 glslCaps->fFBFetchSupport = true;
641 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
642 glslCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
643 }
644 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
645 // The arm extension also requires an additional flag which we will set onResetContext
646 glslCaps->fFBFetchNeedsCustomOutput = false;
647 glslCaps->fFBFetchSupport = true;
648 glslCaps->fFBFetchColorName = "gl_LastFragColorARM";
649 glslCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
650 }
651 glslCaps->fUsesPrecisionModifiers = true;
652 }
653
654 glslCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
655
cdaltonc08f1962016-02-12 12:14:06 -0800656 if (kGL_GrGLStandard == standard) {
657 glslCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
658 } else {
659 glslCaps->fFlatInterpolationSupport =
660 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
661 }
662
663 if (kGL_GrGLStandard == standard) {
664 glslCaps->fNoPerspectiveInterpolationSupport =
665 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
666 } else {
667 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
668 glslCaps->fNoPerspectiveInterpolationSupport = true;
669 glslCaps->fNoPerspectiveInterpolationExtensionString =
670 "GL_NV_shader_noperspective_interpolation";
671 }
672 }
673
cdalton33ad7012016-02-22 07:55:44 -0800674 if (kGL_GrGLStandard == standard) {
cdalton4a98cdb2016-03-01 12:12:20 -0800675 glslCaps->fMultisampleInterpolationSupport =
676 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
677 } else {
678 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
679 glslCaps->fMultisampleInterpolationSupport = true;
680 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
681 glslCaps->fMultisampleInterpolationSupport = true;
682 glslCaps->fMultisampleInterpolationExtensionString =
683 "GL_OES_shader_multisample_interpolation";
684 }
685 }
686
687 if (kGL_GrGLStandard == standard) {
cdalton33ad7012016-02-22 07:55:44 -0800688 glslCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
689 } else {
690 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
691 glslCaps->fSampleVariablesSupport = true;
692 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
693 glslCaps->fSampleVariablesSupport = true;
694 glslCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
695 }
696 }
697
698 if (glslCaps->fSampleVariablesSupport) {
699 glslCaps->fSampleMaskOverrideCoverageSupport =
700 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage");
701 }
702
egdaniel472d44e2015-10-22 08:20:00 -0700703 // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader
704 glslCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
705
706 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
707 // function that may require a gradient calculation inside a conditional block may return
708 // undefined results". This appears to be an issue with the 'any' call since even the simple
709 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
710 // from our GrTextureDomain processor.
711 glslCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
712
egdaniel472d44e2015-10-22 08:20:00 -0700713 glslCaps->fVersionDeclString = get_glsl_version_decl_string(standard, glslCaps->fGLSLGeneration,
714 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800715
716 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == glslCaps->fGLSLGeneration) {
717 glslCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
718 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800719
720 // Frag Coords Convention support is not part of ES
721 // Known issue on at least some Intel platforms:
722 // http://code.google.com/p/skia/issues/detail?id=946
723 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
724 kGLES_GrGLStandard != standard &&
725 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
726 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
727 glslCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
728 }
729
730 if (kGLES_GrGLStandard == standard) {
731 glslCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
732 }
733
cdalton9c3f1432016-03-11 10:07:37 -0800734 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
735 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
736 glslCaps->fExternalTextureSupport = true;
737 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
738 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
739 // At least one driver has been found that has this extension without the "GL_" prefix.
740 glslCaps->fExternalTextureSupport = true;
741 }
742 }
743
744 if (glslCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800745 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
746 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
747 } else {
748 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
749 }
750 }
751
cdaltonc04ce672016-03-11 14:07:38 -0800752 if (kGL_GrGLStandard == standard) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700753 glslCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800754 } else {
cdaltonf8a6ce82016-04-11 13:02:05 -0700755 glslCaps->fTexelFetchSupport =
756 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
757 }
758
759 if (glslCaps->fTexelFetchSupport) {
760 if (kGL_GrGLStandard == standard) {
csmartdalton1897cfd2016-06-03 08:50:54 -0700761 glslCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700762 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
763 } else {
764 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
765 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
766 glslCaps->fTexelBufferSupport = true;
767 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
768 glslCaps->fTexelBufferSupport = true;
769 glslCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
770 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
771 glslCaps->fTexelBufferSupport = true;
772 glslCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
773 }
cdaltonc04ce672016-03-11 14:07:38 -0800774 }
775 }
776
egdaniel8dcdedc2015-11-11 06:27:20 -0800777 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
778 // the abs first in a separate expression.
779 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
780 glslCaps->fCanUseMinAndAbsTogether = false;
781 }
782
bsalomon7ea33f52015-11-22 14:51:00 -0800783 // 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 -0800784 // thus must us -1.0 * %s.x to work correctly
785 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
786 glslCaps->fMustForceNegatedAtanParamToFloat = true;
787 }
egdaniel472d44e2015-10-22 08:20:00 -0700788}
789
kkinnunencfe62e32015-07-01 02:58:50 -0700790bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700791 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
792
793 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700794 return false;
795 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700796
kkinnunencfe62e32015-07-01 02:58:50 -0700797 if (kGL_GrGLStandard == ctxInfo.standard()) {
798 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
799 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
800 return false;
801 }
802 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700803 if (!hasChromiumPathRendering &&
804 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700805 return false;
806 }
807 }
808 // We only support v1.3+ of GL_NV_path_rendering which allows us to
809 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
810 // additions are detected by checking the existence of the function.
811 // We also use *Then* functions that not all drivers might have. Check
812 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800813 if (!gli->fFunctions.fStencilThenCoverFillPath ||
814 !gli->fFunctions.fStencilThenCoverStrokePath ||
815 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
816 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
817 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700818 return false;
819 }
820 return true;
821}
bsalomon1aa20292016-01-22 08:16:09 -0800822
823bool GrGLCaps::readPixelsSupported(GrPixelConfig rtConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800824 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800825 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
826 std::function<bool ()> bindRenderTarget) const {
bsalomone9573312016-01-25 14:33:25 -0800827 // If it's not possible to even have a render target of rtConfig then read pixels is
828 // not supported regardless of readConfig.
829 if (!this->isConfigRenderable(rtConfig, false)) {
830 return false;
831 }
bsalomon7928ef62016-01-05 10:26:39 -0800832
bsalomon76148af2016-01-12 11:13:47 -0800833 GrGLenum readFormat;
834 GrGLenum readType;
bsalomon1aa20292016-01-22 08:16:09 -0800835 if (!this->getReadPixelsFormat(rtConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800836 return false;
837 }
838
bsalomon1aa20292016-01-22 08:16:09 -0800839 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800840 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
841 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
842 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
843 // GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA. We check for the subset that we would use.
844 if (readFormat != GR_GL_RED && readFormat != GR_GL_RGB && readFormat != GR_GL_RGBA &&
845 readFormat != GR_GL_BGRA) {
846 return false;
847 }
848 // There is also a set of allowed types, but all the types we use are in the set:
849 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
850 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
851 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
852 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
853 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
854 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
855 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800856 return true;
piotaixre4b23142014-10-02 10:57:53 -0700857 }
bsalomon7928ef62016-01-05 10:26:39 -0800858
bsalomon76148af2016-01-12 11:13:47 -0800859 // See Section 16.1.2 in the ES 3.2 specification.
bsalomon7928ef62016-01-05 10:26:39 -0800860
bsalomon1aa20292016-01-22 08:16:09 -0800861 if (kNormalizedFixedPoint_FormatType == fConfigTable[rtConfig].fFormatType) {
bsalomon7928ef62016-01-05 10:26:39 -0800862 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
863 return true;
864 }
865 } else {
bsalomon1aa20292016-01-22 08:16:09 -0800866 SkASSERT(kFloat_FormatType == fConfigTable[rtConfig].fFormatType);
bsalomon7928ef62016-01-05 10:26:39 -0800867 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
868 return true;
869 }
870 }
871
bsalomon1aa20292016-01-22 08:16:09 -0800872 if (0 == fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800873 ReadPixelsFormat* rpFormat =
bsalomon1aa20292016-01-22 08:16:09 -0800874 const_cast<ReadPixelsFormat*>(&fConfigTable[rtConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800875 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800876 if (!bindRenderTarget()) {
877 return false;
878 }
879 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
880 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800881 rpFormat->fFormat = format;
882 rpFormat->fType = type;
883 }
884
bsalomon1aa20292016-01-22 08:16:09 -0800885 return fConfigTable[rtConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
886 fConfigTable[rtConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700887}
888
robertphillips@google.com6177e692013-02-28 20:16:25 +0000889void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000890
891 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000892 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000893 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
894 // ES3 driver bugs on at least one device with a tiled GPU (N10).
895 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
896 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
897 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
898 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800899 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700900 fMSFBOType = kMixedSamples_MSFBOType;
commit-bot@chromium.org92b78842014-01-16 20:49:46 +0000901 } else if (ctxInfo.version() >= GR_GL_VER(3,0)) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000902 fMSFBOType = GrGLCaps::kES_3_0_MSFBOType;
903 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
904 // chrome's extension is equivalent to the EXT msaa
905 // and fbo_blit extensions.
906 fMSFBOType = kDesktop_EXT_MSFBOType;
907 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
908 fMSFBOType = kES_Apple_MSFBOType;
909 }
bsalomon083617b2016-02-12 12:10:14 -0800910
911 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
912 // is available.
913 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
914 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
915 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
916 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
917 // limitations.
918 fBlitFramebufferSupport = kNoScalingNoMirroring_BlitFramebufferSupport;
919 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000920 } else {
egdanieleed519e2016-01-15 11:36:18 -0800921 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700922 fMSFBOType = kMixedSamples_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800923 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
vbuzinovdded6962015-06-12 08:59:45 -0700924 } else if ((ctxInfo.version() >= GR_GL_VER(3,0)) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000925 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000926 fMSFBOType = GrGLCaps::kDesktop_ARB_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800927 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000928 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
929 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000930 fMSFBOType = GrGLCaps::kDesktop_EXT_MSFBOType;
bsalomon083617b2016-02-12 12:10:14 -0800931 fBlitFramebufferSupport = kFull_BlitFramebufferSupport;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000932 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000933 }
934}
935
cdalton1dd05422015-06-12 09:01:18 -0700936void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
937 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
938
939 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
940 // for now until its own blacklists can be updated.
941 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
942 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -0700943 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -0700944 return;
945 }
946
947 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
948 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
949 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
950 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
951 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
952 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
953 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
954 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
955 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
956 return;
957 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
958 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
959 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
960 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
961 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
962 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
963 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
964 // slow on a particular platform.
965 } else {
966 return; // No advanced blend support.
967 }
968
969 SkASSERT(this->advancedBlendEquationSupport());
970
971 if (kNVIDIA_GrGLDriver == ctxInfo.driver()) {
972 // Blacklist color-dodge and color-burn on NVIDIA until the fix is released.
973 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
974 (1 << kColorBurn_GrBlendEquation);
975 }
joel.liang9764c402015-07-09 19:46:18 -0700976 if (kARM_GrGLVendor == ctxInfo.vendor()) {
977 // Blacklist color-burn on ARM until the fix is released.
978 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
979 }
cdalton1dd05422015-06-12 09:01:18 -0700980}
981
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000982namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700983const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000984}
985
986void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
987
988 // Build up list of legal stencil formats (though perhaps not supported on
989 // the particular gpu/driver) from most preferred to least.
990
991 // these consts are in order of most preferred to least preferred
992 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
993
994 static const StencilFormat
995 // internal Format stencil bits total bits packed?
996 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
997 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
998 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
999 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001000 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001001 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1002
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001003 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001004 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001005 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001006 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1007 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1008
1009 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1010 // require FBO support we can expect these are legal formats and don't
1011 // check. These also all support the unsized GL_STENCIL_INDEX.
1012 fStencilFormats.push_back() = gS8;
1013 fStencilFormats.push_back() = gS16;
1014 if (supportsPackedDS) {
1015 fStencilFormats.push_back() = gD24S8;
1016 }
1017 fStencilFormats.push_back() = gS4;
1018 if (supportsPackedDS) {
1019 fStencilFormats.push_back() = gDS;
1020 }
1021 } else {
1022 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1023 // for other formats.
1024 // ES doesn't support using the unsized format.
1025
1026 fStencilFormats.push_back() = gS8;
1027 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001028 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1029 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001030 fStencilFormats.push_back() = gD24S8;
1031 }
1032 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1033 fStencilFormats.push_back() = gS4;
1034 }
1035 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001036}
1037
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001038SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001039
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001040 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001041
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001042 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001043 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001044 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001045 i,
1046 fStencilFormats[i].fStencilBits,
1047 fStencilFormats[i].fTotalBits);
1048 }
1049
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001050 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001051 "None",
1052 "ARB",
1053 "EXT",
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001054 "ES 3.0",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001055 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001056 "IMG MS To Texture",
1057 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001058 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001059 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001060 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
1061 GR_STATIC_ASSERT(1 == kDesktop_ARB_MSFBOType);
1062 GR_STATIC_ASSERT(2 == kDesktop_EXT_MSFBOType);
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001063 GR_STATIC_ASSERT(3 == kES_3_0_MSFBOType);
1064 GR_STATIC_ASSERT(4 == kES_Apple_MSFBOType);
1065 GR_STATIC_ASSERT(5 == kES_IMG_MsToTexture_MSFBOType);
1066 GR_STATIC_ASSERT(6 == kES_EXT_MsToTexture_MSFBOType);
vbuzinovdded6962015-06-12 08:59:45 -07001067 GR_STATIC_ASSERT(7 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001068 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001069
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001070 static const char* kInvalidateFBTypeStr[] = {
1071 "None",
1072 "Discard",
1073 "Invalidate",
1074 };
1075 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1076 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1077 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1078 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001079
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001080 static const char* kMapBufferTypeStr[] = {
1081 "None",
1082 "MapBuffer",
1083 "MapBufferRange",
1084 "Chromium",
1085 };
1086 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1087 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1088 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1089 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1090 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1091
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001092 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001093 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001094 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001095 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001096 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001097 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1098 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1099 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1100 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001101
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001102 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001103 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1104 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001105 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001106 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1107 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
cdaltond4727922015-11-10 12:49:06 -08001108 r.appendf("Multisample disable support: %s\n", (fMultisampleDisableSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001109 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1110 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1111 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001112 r.appendf("Use non-VBO for dynamic data: %s\n",
bsalomon@google.combcce8922013-03-25 15:38:39 +00001113 (fUseNonVBOVertexAndIndexDynamicData ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001114 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1115 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001116 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001117 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001118 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001119 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001120 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001121
1122 r.append("Configs\n-------\n");
1123 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1124 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001125 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1126 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001127 i,
1128 fConfigTable[i].fFlags,
1129 fConfigTable[i].fFormats.fBaseInternalFormat,
1130 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001131 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1132 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001133 fConfigTable[i].fFormats.fExternalType,
1134 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001135 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001136 }
1137
jvanverthe9c0fc62015-04-29 11:18:05 -07001138 return r;
1139}
1140
jvanverthe9c0fc62015-04-29 11:18:05 -07001141static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1142 switch (p) {
1143 case kLow_GrSLPrecision:
1144 return GR_GL_LOW_FLOAT;
1145 case kMedium_GrSLPrecision:
1146 return GR_GL_MEDIUM_FLOAT;
1147 case kHigh_GrSLPrecision:
1148 return GR_GL_HIGH_FLOAT;
1149 }
1150 SkFAIL("Unknown precision.");
1151 return -1;
1152}
1153
1154static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1155 switch (type) {
1156 case kVertex_GrShaderType:
1157 return GR_GL_VERTEX_SHADER;
1158 case kGeometry_GrShaderType:
1159 return GR_GL_GEOMETRY_SHADER;
1160 case kFragment_GrShaderType:
1161 return GR_GL_FRAGMENT_SHADER;
1162 }
1163 SkFAIL("Unknown shader type.");
1164 return -1;
1165}
1166
jvanverthcba99b82015-06-24 06:59:57 -07001167void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001168 const GrGLInterface* intf,
jvanverthcba99b82015-06-24 06:59:57 -07001169 GrGLSLCaps* glslCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001170 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1171 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1172 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1173 if (kGeometry_GrShaderType != s) {
1174 GrShaderType shaderType = static_cast<GrShaderType>(s);
1175 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001176 GrShaderCaps::PrecisionInfo* first = nullptr;
jvanverthcba99b82015-06-24 06:59:57 -07001177 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001178 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1179 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1180 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1181 GrGLint range[2];
1182 GrGLint bits;
1183 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1184 if (bits) {
jvanverthcba99b82015-06-24 06:59:57 -07001185 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1186 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1187 glslCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001188 if (!first) {
jvanverthcba99b82015-06-24 06:59:57 -07001189 first = &glslCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001190 }
jvanverthcba99b82015-06-24 06:59:57 -07001191 else if (!glslCaps->fShaderPrecisionVaries) {
halcanary9d524f22016-03-29 09:03:52 -07001192 glslCaps->fShaderPrecisionVaries =
jvanverthcba99b82015-06-24 06:59:57 -07001193 (*first != glslCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001194 }
1195 }
1196 }
1197 }
1198 }
1199 }
1200 else {
1201 // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float.
jvanverthcba99b82015-06-24 06:59:57 -07001202 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001203 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1204 if (kGeometry_GrShaderType != s) {
1205 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
jvanverthcba99b82015-06-24 06:59:57 -07001206 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1207 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1208 glslCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001209 }
1210 }
1211 }
1212 }
1213 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1214 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1215 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1216 // are recommended against.
jvanverthcba99b82015-06-24 06:59:57 -07001217 if (glslCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001218 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
halcanary9d524f22016-03-29 09:03:52 -07001219 glslCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
jvanverthcba99b82015-06-24 06:59:57 -07001220 glslCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001221 }
1222 }
cdaltona6b92ad2016-04-11 12:03:08 -07001223 glslCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001224}
1225
bsalomon41e4384e2016-01-08 09:12:44 -08001226bool GrGLCaps::bgraIsInternalFormat() const {
1227 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1228}
1229
bsalomon76148af2016-01-12 11:13:47 -08001230bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1231 GrGLenum* internalFormat, GrGLenum* externalFormat,
1232 GrGLenum* externalType) const {
1233 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1234 externalFormat, externalType)) {
1235 return false;
1236 }
1237 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1238 return true;
1239}
1240
1241bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1242 GrGLenum* internalFormat) const {
1243 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1244 return false;
1245 }
1246 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1247 return true;
1248}
1249
1250bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1251 GrGLenum* externalFormat, GrGLenum* externalType) const {
1252 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1253 externalFormat, externalType)) {
1254 return false;
1255 }
1256 return true;
1257}
1258
1259bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1260 if (GrPixelConfigIsCompressed(config)) {
1261 return false;
1262 }
1263 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1264 return true;
1265}
1266
1267bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1268 ExternalFormatUsage usage, GrGLenum* externalFormat,
1269 GrGLenum* externalType) const {
1270 SkASSERT(externalFormat && externalType);
1271 if (GrPixelConfigIsCompressed(memoryConfig) || GrPixelConfigIsCompressed(memoryConfig)) {
1272 return false;
1273 }
1274
1275 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1276 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1277
1278 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1279 // made to work in many cases using glPixelStore and what not but is not needed currently.
1280 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1281 return false;
1282 }
1283
1284 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1285 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1286
bsalomone9573312016-01-25 14:33:25 -08001287 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1288 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1289 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1290 // texture, not the red component.
1291 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1292 if (this->textureRedSupport()) {
1293 SkASSERT(GR_GL_RED == *externalFormat);
1294 *externalFormat = GR_GL_ALPHA;
1295 }
1296 }
1297
bsalomon76148af2016-01-12 11:13:47 -08001298 return true;
1299}
1300
bsalomoncdee0092016-01-08 13:20:12 -08001301void GrGLCaps::initConfigTable(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
1302 GrGLSLCaps* glslCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001303 /*
1304 Comments on renderability of configs on various GL versions.
1305 OpenGL < 3.0:
1306 no built in support for render targets.
1307 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1308 format RGB, RGBA and NV float formats we don't use.
1309 This is the following:
1310 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1311 RGB10_A2, RGBA12,RGBA16
1312 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1313 since they aren't required by later standards and the driver can simply return
1314 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1315 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1316 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1317 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1318 This adds a lot of additional renderable sized formats, including ALPHA8.
1319 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1320 16F, 32I, 32UI, and 32F variants).
1321 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1322
1323 For both the above extensions we limit ourselves to those that are also required by
1324 OpenGL 3.0.
1325
1326 OpenGL 3.0:
1327 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1328 but are not required to be supported as renderable textures/renderbuffer.
1329 Required renderable color formats:
1330 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1331 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1332 RGB10_A2.
1333 - R11F_G11F_B10F.
1334 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1335 and RG8UI.
1336 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1337 - ALPHA8
1338
1339 OpenGL 3.1, 3.2, 3.3
1340 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1341 OpengGL 3.3, 4.0, 4.1
1342 Adds RGB10_A2UI.
1343 OpengGL 4.2
1344 Adds
1345 - RGB5_A1, RGBA4
1346 - RGB565
1347 OpenGL 4.4
1348 Does away with the separate list and adds a column to the sized internal color format
1349 table. However, no new formats become required color renderable.
1350
1351 ES 2.0
1352 color renderable: RGBA4, RGB5_A1, RGB565
1353 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1354 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1355 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1356 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1357 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1358 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1359
1360 ES 3.0
1361 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1362 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1363 RGB5_A1.
1364 - RGB8 and RGB565.
1365 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1366 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1367 ES 3.1
1368 Adds RGB10_A2, RGB10_A2UI,
1369 ES 3.2
1370 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1371 */
1372 uint32_t allRenderFlags = ConfigInfo::kRenderable_Flag;
1373 if (kNone_MSFBOType != fMSFBOType) {
1374 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1375 }
1376
1377 GrGLStandard standard = ctxInfo.standard();
1378 GrGLVersion version = ctxInfo.version();
1379
cblume790d5132016-02-29 11:13:29 -08001380 bool texStorageSupported = false;
1381 if (kGL_GrGLStandard == standard) {
1382 // The EXT version can apply to either GL or GLES.
1383 texStorageSupported = version >= GR_GL_VER(4,2) ||
1384 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1385 ctxInfo.hasExtension("GL_EXT_texture_storage");
1386 } else {
1387 // Qualcomm Adreno drivers appear to have issues with texture storage.
1388 texStorageSupported = (version >= GR_GL_VER(3,0) &&
1389 kQualcomm_GrGLVendor != ctxInfo.vendor()) &&
1390 ctxInfo.hasExtension("GL_EXT_texture_storage");
1391 }
1392
1393 // TODO: remove after command buffer supports full ES 3.0
1394 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1395 kChromium_GrGLDriver == ctxInfo.driver()) {
1396 texStorageSupported = false;
1397 }
1398
cdalton74b8d322016-04-11 14:47:28 -07001399 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1400
bsalomon30447372015-12-21 09:03:05 -08001401 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1402 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001403 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001404 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001405 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001406 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001407
1408 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1409 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001410 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1411 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001412 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001413 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001414 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1415 if (kGL_GrGLStandard == standard) {
1416 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1417 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001418 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001419 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1420 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1421 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1422 }
egdaniel4999df82016-01-07 17:06:04 -08001423 }
cblume790d5132016-02-29 11:13:29 -08001424 if (texStorageSupported) {
1425 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1426 }
cdalton74b8d322016-04-11 14:47:28 -07001427 if (texelBufferSupport) {
1428 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1429 }
bsalomoncdee0092016-01-08 13:20:12 -08001430 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001431
bsalomon76148af2016-01-12 11:13:47 -08001432 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1433 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001434 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001435 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001436 if (kGL_GrGLStandard == standard) {
1437 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1438 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1439 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1440 // Since the internal format is RGBA8, it is also renderable.
1441 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1442 allRenderFlags;
1443 }
1444 } else {
1445 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1446 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1447 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1448 // The APPLE extension doesn't make this renderable.
1449 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1450 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1451 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1452 // Though, that seems to not be the case if the texture storage extension is
1453 // present. The specs don't exactly make that clear.
1454 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1455 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1456 }
1457 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1458 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1459 ConfigInfo::kRenderable_Flag;
1460 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001461 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001462 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1463 ConfigInfo::kRenderableWithMSAA_Flag;
1464 }
1465 }
1466 }
cblume790d5132016-02-29 11:13:29 -08001467 if (texStorageSupported) {
1468 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1469 }
bsalomoncdee0092016-01-08 13:20:12 -08001470 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001471
brianosmana6359362016-03-21 06:55:37 -07001472 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001473 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001474 if (kGL_GrGLStandard == standard) {
1475 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001476 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001477 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1478 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1479 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001480 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001481 }
1482 }
1483 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001484 if (fSRGBSupport) {
1485 fSRGBWriteControl = true;
1486 }
bsalomon41e4384e2016-01-08 09:12:44 -08001487 } else {
1488 // See https://bug.skia.org/4148 for PowerVR issue.
brianosmana6359362016-03-21 06:55:37 -07001489 fSRGBSupport = kPowerVRRogue_GrGLRenderer != ctxInfo.renderer() &&
bsalomon41e4384e2016-01-08 09:12:44 -08001490 (ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB"));
1491 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1492 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001493 // See https://bug.skia.org/5329 for Adreno4xx issue.
1494 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1495 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001496 }
brianosmana6359362016-03-21 06:55:37 -07001497 if (!ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode")) {
1498 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode:
1499 fSRGBSupport = false;
1500 }
bsalomon30447372015-12-21 09:03:05 -08001501 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1502 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1503 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1504 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001505 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1506 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001507 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001508 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001509 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001510 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1511 allRenderFlags;
1512 }
cblume790d5132016-02-29 11:13:29 -08001513 if (texStorageSupported) {
1514 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1515 }
bsalomoncdee0092016-01-08 13:20:12 -08001516 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001517
brianosmana6359362016-03-21 06:55:37 -07001518 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1519 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1520 // is in this format, for example).
1521 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1522 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1523 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1524 // external format is GL_BGRA.
1525 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1526 GR_GL_BGRA;
1527 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1528 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1529 if (fSRGBSupport) {
1530 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1531 allRenderFlags;
1532 }
1533 if (texStorageSupported) {
1534 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1535 }
1536 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1537
bsalomon30447372015-12-21 09:03:05 -08001538 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1539 if (this->ES2CompatibilitySupport()) {
1540 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1541 } else {
1542 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1543 }
bsalomon76148af2016-01-12 11:13:47 -08001544 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1545 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001546 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001547 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001548 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1549 if (kGL_GrGLStandard == standard) {
1550 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ES2_compatibility")) {
1551 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1552 }
1553 } else {
1554 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1555 }
cblume790d5132016-02-29 11:13:29 -08001556 // 565 is not a sized internal format on desktop GL. So on desktop with
1557 // 565 we always use an unsized internal format to let the system pick
1558 // the best sized format to convert the 565 data to. Since TexStorage
1559 // only allows sized internal formats we disallow it.
1560 //
1561 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1562 // update.
1563 if (texStorageSupported && kGL_GrGLStandard != standard) {
1564 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1565 }
bsalomoncdee0092016-01-08 13:20:12 -08001566 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001567
1568 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1569 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001570 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1571 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001572 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001573 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001574 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1575 if (kGL_GrGLStandard == standard) {
1576 if (version >= GR_GL_VER(4, 2)) {
1577 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1578 }
1579 } else {
1580 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1581 }
cblume790d5132016-02-29 11:13:29 -08001582 if (texStorageSupported) {
1583 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1584 }
bsalomoncdee0092016-01-08 13:20:12 -08001585 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001586
1587 if (this->textureRedSupport()) {
1588 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1589 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001590 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1591 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001592 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001593 if (texelBufferSupport) {
1594 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1595 }
bsalomon30447372015-12-21 09:03:05 -08001596 } else {
1597 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1598 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001599 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1600 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001601 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001602 }
1603 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001604 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001605 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon40170072016-05-05 14:40:03 -07001606 if (this->textureRedSupport() ||
1607 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1608 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001609 // desktop ARB extension/3.0+ supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001610 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001611 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1612 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1613 }
cblume790d5132016-02-29 11:13:29 -08001614 if (texStorageSupported) {
1615 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1616 }
bsalomon41e4384e2016-01-08 09:12:44 -08001617
1618 // Check for [half] floating point texture support
1619 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1620 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1621 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1622 bool hasFPTextures = false;
1623 bool hasHalfFPTextures = false;
1624 // for now we don't support floating point MSAA on ES
1625 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ?
1626 allRenderFlags : (uint32_t)ConfigInfo::kRenderable_Flag;
1627
1628 if (kGL_GrGLStandard == standard) {
1629 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1630 hasFPTextures = true;
1631 hasHalfFPTextures = true;
1632 }
1633 } else {
1634 if (version >= GR_GL_VER(3, 1)) {
1635 hasFPTextures = true;
1636 hasHalfFPTextures = true;
1637 } else {
1638 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1639 ctxInfo.hasExtension("GL_OES_texture_float")) {
1640 hasFPTextures = true;
1641 }
1642 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1643 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1644 hasHalfFPTextures = true;
1645 }
1646 }
1647 }
bsalomon30447372015-12-21 09:03:05 -08001648
1649 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1650 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA32F;
bsalomon76148af2016-01-12 11:13:47 -08001651 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1652 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001653 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalType = GR_GL_FLOAT;
bsalomon7928ef62016-01-05 10:26:39 -08001654 fConfigTable[kRGBA_float_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001655 if (hasFPTextures) {
1656 fConfigTable[kRGBA_float_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1657 // For now we only enable rendering to float on desktop, because on ES we'd have to solve
1658 // many precision issues and no clients actually want this yet.
1659 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1660 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1661 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= fpRenderFlags;
1662 }
1663 }
cblume790d5132016-02-29 11:13:29 -08001664 if (texStorageSupported) {
1665 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1666 }
cdalton74b8d322016-04-11 14:47:28 -07001667 if (texelBufferSupport) {
1668 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1669 }
bsalomoncdee0092016-01-08 13:20:12 -08001670 fConfigTable[kRGBA_float_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001671
1672 if (this->textureRedSupport()) {
1673 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1674 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001675 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1676 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001677 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001678 if (texelBufferSupport) {
1679 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1680 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1681 }
bsalomon30447372015-12-21 09:03:05 -08001682 } else {
1683 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1684 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001685 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1686 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001687 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001688 }
1689 if (kGL_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(3, 0)) {
1690 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1691 } else {
1692 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1693 }
bsalomon7928ef62016-01-05 10:26:39 -08001694 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001695 if (hasHalfFPTextures) {
1696 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1697 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1698 // GL_RED internal format.
1699 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1700 (this->textureRedSupport() &&
1701 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1702 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1703 }
1704 }
cblume790d5132016-02-29 11:13:29 -08001705 if (texStorageSupported) {
1706 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1707 }
bsalomon30447372015-12-21 09:03:05 -08001708
1709 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1710 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001711 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1712 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001713 if (kGL_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(3, 0)) {
1714 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1715 } else {
1716 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1717 }
bsalomon7928ef62016-01-05 10:26:39 -08001718 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001719 if (hasHalfFPTextures) {
1720 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1721 // ES requires 3.2 or EXT_color_buffer_half_float.
1722 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1723 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1724 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1725 }
1726 }
cblume790d5132016-02-29 11:13:29 -08001727 if (texStorageSupported) {
1728 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1729 }
cdalton74b8d322016-04-11 14:47:28 -07001730 if (texelBufferSupport) {
1731 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1732 }
bsalomoncdee0092016-01-08 13:20:12 -08001733 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001734
1735 // Compressed texture support
1736
1737 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1738 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1739
1740 // TODO: Fix command buffer bindings and remove this.
1741 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001742
1743 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001744 // Below we set the external formats and types to 0.
bsalomon30447372015-12-21 09:03:05 -08001745
1746 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_PALETTE8_RGBA8;
1747 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001748 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001749 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001750 fConfigTable[kIndex_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001751 // Disable this for now, while we investigate https://bug.skia.org/4333
1752 if (false) {
1753 // Check for 8-bit palette..
1754 GrGLint numFormats;
1755 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
1756 if (numFormats) {
1757 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
1758 GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
1759 for (int i = 0; i < numFormats; ++i) {
1760 if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
1761 fConfigTable[kIndex_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1762 break;
1763 }
1764 }
1765 }
1766 }
bsalomoncdee0092016-01-08 13:20:12 -08001767 fConfigTable[kIndex_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001768
bsalomon41e4384e2016-01-08 09:12:44 -08001769 // May change the internal format based on extensions.
1770 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1771 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1772 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1773 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1774 if (ctxInfo.hasExtension("GL_EXT_texture_compression_latc") ||
1775 ctxInfo.hasExtension("GL_NV_texture_compression_latc")) {
1776 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1777 } else if ((kGL_GrGLStandard == standard && version >= GR_GL_VER(3, 0)) ||
1778 ctxInfo.hasExtension("GL_EXT_texture_compression_rgtc") ||
1779 ctxInfo.hasExtension("GL_ARB_texture_compression_rgtc")) {
1780 // RGTC is identical and available on OpenGL 3.0+ as well as with extensions
1781 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1782 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1783 GR_GL_COMPRESSED_RED_RGTC1;
1784 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1785 GR_GL_COMPRESSED_RED_RGTC1;
1786 } else if (ctxInfo.hasExtension("GL_AMD_compressed_3DC_texture")) {
1787 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1788 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_3DC_X;
1789 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1790 GR_GL_COMPRESSED_3DC_X;
1791
bsalomon30447372015-12-21 09:03:05 -08001792 }
bsalomon76148af2016-01-12 11:13:47 -08001793 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001794 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001795 fConfigTable[kLATC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001796 fConfigTable[kLATC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001797
1798 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1799 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
bsalomon76148af2016-01-12 11:13:47 -08001800 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001801 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001802 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001803 if (kGL_GrGLStandard == standard) {
1804 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1805 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1806 }
1807 } else {
1808 if (version >= GR_GL_VER(3, 0) ||
1809 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1810 // ETC2 is a superset of ETC1, so we can just check for that, too.
1811 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1812 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1813 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1814 }
1815 }
bsalomoncdee0092016-01-08 13:20:12 -08001816 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001817
1818 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_R11_EAC;
1819 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_R11_EAC;
bsalomon76148af2016-01-12 11:13:47 -08001820 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001821 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001822 fConfigTable[kR11_EAC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001823 // Check for R11_EAC. We don't support R11_EAC on desktop, as most cards default to
1824 // decompressing the textures in the driver, and is generally slower.
1825 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) {
1826 fConfigTable[kR11_EAC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1827 }
bsalomoncdee0092016-01-08 13:20:12 -08001828 fConfigTable[kR11_EAC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001829
1830 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fBaseInternalFormat =
1831 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
1832 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fSizedInternalFormat =
1833 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
bsalomon76148af2016-01-12 11:13:47 -08001834 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1835 0;
bsalomon30447372015-12-21 09:03:05 -08001836 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001837 fConfigTable[kASTC_12x12_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001838 if (ctxInfo.hasExtension("GL_KHR_texture_compression_astc_hdr") ||
1839 ctxInfo.hasExtension("GL_KHR_texture_compression_astc_ldr") ||
1840 ctxInfo.hasExtension("GL_OES_texture_compression_astc")) {
1841 fConfigTable[kASTC_12x12_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1842 }
bsalomoncdee0092016-01-08 13:20:12 -08001843 fConfigTable[kASTC_12x12_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001844
1845 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1846
1847 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001848 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1849 ctxInfo.version() >= GR_GL_VER(3,0));
1850 // All ES versions (thus far) require sized internal formats for render buffers.
1851 // TODO: Always use sized internal format?
1852 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1853
bsalomon30447372015-12-21 09:03:05 -08001854 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001855 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1856 // param to glTex[Sub]Image.
1857 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1858 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1859 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1860 fConfigTable[i].fFormats.fSizedInternalFormat :
1861 fConfigTable[i].fFormats.fBaseInternalFormat;
1862 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001863 fConfigTable[i].fFormats.fSizedInternalFormat :
1864 fConfigTable[i].fFormats.fBaseInternalFormat;
1865 }
1866 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1867 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1868 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1869 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1870 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001871 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001872 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001873
1874 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1875 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1876 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1877 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001878 }
1879
1880 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1881 // as a base format.
1882 // GL_EXT_texture_format_BGRA8888:
1883 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1884 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1885 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001886 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001887 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1888 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1889 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001890 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001891 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1892 }
1893
bsalomoncdee0092016-01-08 13:20:12 -08001894 // If we don't have texture swizzle support then the shader generator must insert the
1895 // swizzle into shader code.
1896 if (!this->textureSwizzleSupport()) {
1897 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1898 glslCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
1899 }
1900 }
1901
bsalomon7f9b2e42016-01-12 13:29:26 -08001902 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
1903 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
1904 // gets written to the single component.
1905 if (this->textureRedSupport()) {
1906 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1907 GrPixelConfig config = static_cast<GrPixelConfig>(i);
1908 if (GrPixelConfigIsAlphaOnly(config) &&
1909 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
1910 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
1911 }
1912 }
1913 }
1914
bsalomon30447372015-12-21 09:03:05 -08001915#ifdef SK_DEBUG
1916 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08001917 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08001918 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001919 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
1920 fConfigTable[i].fFormats.fBaseInternalFormat);
1921 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08001922 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08001923 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
1924 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
1925 fConfigTable[i].fFormats.fExternalFormat[j]);
1926 }
1927 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08001928 }
1929#endif
1930}
1931
egdanielb7e7d572015-11-04 04:23:53 -08001932void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {}