blob: 168acdec735db31e89c8389f1fd12073642f31b9 [file] [log] [blame]
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8
9#include "GrGLCaps.h"
joshualittb4384b92014-10-21 12:53:15 -070010
egdanielb7e7d572015-11-04 04:23:53 -080011#include "GrContextOptions.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000012#include "GrGLContext.h"
bsalomon1aa20292016-01-22 08:16:09 -080013#include "GrGLRenderTarget.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050014#include "GrShaderCaps.h"
csmartdaltone0d36292016-07-29 08:14:20 -070015#include "instanced/GLInstancedRendering.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000016#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000017#include "SkTSort.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000018
bsalomon682c2692015-05-22 14:01:46 -070019GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
20 const GrGLContextInfo& ctxInfo,
21 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080022 fStandard = ctxInfo.standard();
23
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000025 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000026 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000027 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080028 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000030 fUnpackRowLengthSupport = false;
31 fUnpackFlipYSupport = false;
32 fPackRowLengthSupport = false;
33 fPackFlipYSupport = false;
34 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000035 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000036 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000037 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070038 fDirectStateAccessSupport = false;
39 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080040 fES2CompatibilitySupport = false;
csmartdalton4c18b622016-07-29 12:19:28 -070041 fDrawInstancedSupport = false;
cdalton06604b92016-02-05 10:09:51 -080042 fDrawIndirectSupport = false;
43 fMultiDrawIndirectSupport = false;
44 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080054 fSRGBDecodeDisableSupport = false;
piotaixre4b23142014-10-02 10:57:53 -070055
Brian Salomone5e7eb12016-10-14 16:18:33 -040056 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080057
Brian Salomon94efbf52016-11-29 13:43:05 -050058 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070059
cdalton4cd67132015-06-10 19:23:46 -070060 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000061}
62
cdalton4cd67132015-06-10 19:23:46 -070063void GrGLCaps::init(const GrContextOptions& contextOptions,
64 const GrGLContextInfo& ctxInfo,
65 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000066 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000067 GrGLVersion version = ctxInfo.version();
68
bsalomon@google.combcce8922013-03-25 15:38:39 +000069 /**************************************************************************
70 * Caps specific to GrGLCaps
71 **************************************************************************/
72
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000073 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000074 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
75 &fMaxFragmentUniformVectors);
76 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000077 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000078 GrGLint max;
79 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
80 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000081 if (version >= GR_GL_VER(3, 2)) {
82 GrGLint profileMask;
83 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
84 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
85 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000086 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000087 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000088
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000089 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000090 fUnpackRowLengthSupport = true;
91 fUnpackFlipYSupport = false;
92 fPackRowLengthSupport = true;
93 fPackFlipYSupport = false;
94 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000095 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
96 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000097 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000098 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
99 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000100 fPackFlipYSupport =
101 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
102 }
103
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000104 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000105 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
106
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000107 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700108 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
109 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
110 ctxInfo.hasExtension("GL_NV_texture_barrier");
111 } else {
112 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
113 }
114
cdaltoneb79eea2016-02-26 10:39:34 -0800115 if (kGL_GrGLStandard == standard) {
116 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
117 ctxInfo.hasExtension("GL_ARB_texture_multisample");
118 } else {
119 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
120 }
121
halcanary9d524f22016-03-29 09:03:52 -0700122 // ARB_texture_rg is part of OpenGL 3.0, but mesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800123 // and GL_RG on FBO textures.
cdalton1acea862015-06-02 13:05:52 -0700124 if (kMesa_GrGLDriver != ctxInfo.driver()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800125 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000126 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
127 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800128 } else {
129 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
130 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000131 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000132 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000133 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000134 ctxInfo.hasExtension("GL_ARB_imaging");
135
egdaniel9250d242015-05-18 13:04:26 -0700136 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
137 // Thus we are blacklisting this extension for now on Adreno4xx devices.
138 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
139 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
140 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
141 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000142 fDiscardRenderTargetSupport = true;
143 fInvalidateFBType = kInvalidate_InvalidateFBType;
144 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
145 fDiscardRenderTargetSupport = true;
146 fInvalidateFBType = kDiscard_InvalidateFBType;
147 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000148
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000149 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
150 fFullClearIsFree = true;
151 }
152
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000153 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000154 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800155 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
156 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000157 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000158 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
159 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000160 }
161
cdalton626e1ff2015-06-12 13:56:46 -0700162 if (kGL_GrGLStandard == standard) {
163 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
164 } else {
165 fDirectStateAccessSupport = false;
166 }
167
168 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
169 fDebugSupport = true;
170 } else {
171 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
172 }
173
jvanverth3f801cb2014-12-16 09:49:38 -0800174 if (kGL_GrGLStandard == standard) {
175 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
176 }
177 else {
178 fES2CompatibilitySupport = true;
179 }
180
cdalton0edea2c2015-05-21 08:27:44 -0700181 if (kGL_GrGLStandard == standard) {
182 fMultisampleDisableSupport = true;
183 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700184 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700185 }
186
kkinnunend94708e2015-07-30 22:47:04 -0700187 if (kGL_GrGLStandard == standard) {
188 if (version >= GR_GL_VER(3, 0)) {
189 fBindFragDataLocationSupport = true;
190 }
191 } else {
192 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
193 fBindFragDataLocationSupport = true;
194 }
joshualittc1f56b52015-06-22 12:31:31 -0700195 }
196
joshualitt7bdd70a2015-10-01 06:28:11 -0700197 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
198
kkinnunene06ed252016-02-16 23:15:40 -0800199 if (kGL_GrGLStandard == standard) {
200 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
201 // We also require textureSize() support for rectangle 2D samplers which was added in
202 // GLSL 1.40.
203 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
204 fRectangleTextureSupport = true;
205 }
bsalomone179a912016-01-20 06:18:10 -0800206 }
kkinnunene06ed252016-02-16 23:15:40 -0800207 } else {
208 // Command buffer exposes this in GL ES context for Chromium reasons,
209 // but it should not be used. Also, at the time of writing command buffer
210 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800211 }
212
bsalomoncdee0092016-01-08 13:20:12 -0800213 if (kGL_GrGLStandard == standard) {
214 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
215 fTextureSwizzleSupport = true;
216 }
217 } else {
218 if (version >= GR_GL_VER(3,0)) {
219 fTextureSwizzleSupport = true;
220 }
221 }
222
cblume09bd2c02016-03-01 14:08:28 -0800223 if (kGL_GrGLStandard == standard) {
224 fMipMapLevelAndLodControlSupport = true;
225 } else if (kGLES_GrGLStandard == standard) {
226 if (version >= GR_GL_VER(3,0)) {
227 fMipMapLevelAndLodControlSupport = true;
228 }
229 }
230
bsalomon88c7b982015-07-31 11:20:16 -0700231#ifdef SK_BUILD_FOR_WIN
232 // We're assuming that on Windows Chromium we're using ANGLE.
233 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
234 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700235 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700236 fRGBA8888PixelsOpsAreSlow = isANGLE;
237 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
238 // check DX11 ANGLE.
239 fPartialFBOReadIsSlow = isANGLE;
240#endif
241
ericrkb4ecabd2016-03-11 15:18:20 -0800242 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
243 bool isMAC = false;
244#ifdef SK_BUILD_FOR_MAC
245 isMAC = true;
246#endif
247
248 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
249 // vis-versa.
250 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
251
cdalton4cd67132015-06-10 19:23:46 -0700252 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700253 * GrShaderCaps fields
254 **************************************************************************/
255
egdaniel0a482332015-10-26 08:59:10 -0700256 // This must be called after fCoreProfile is set on the GrGLCaps
257 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500258 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700259
Brian Salomon1edc5b92016-11-29 13:43:46 -0500260 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
egdaniel05ded892015-10-26 07:38:05 -0700261
262 // For now these two are equivalent but we could have dst read in shader via some other method.
263 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500264 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700265
266 // Enable supported shader-related caps
267 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500268 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700269 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
270 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500271 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700272 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500273 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700274 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500275 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800276 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700277 }
278 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500279 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700280
Brian Salomon1edc5b92016-11-29 13:43:46 -0500281 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700282 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800283
Brian Salomon1edc5b92016-11-29 13:43:46 -0500284 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800285 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700286 }
287
ethannicholas22793252016-01-30 09:59:10 -0800288 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
289 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700290 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500291 &shaderCaps->fPixelLocalStorageSize);
292 shaderCaps->fPLSPathRenderingSupport = shaderCaps->fFBFetchSupport;
ethannicholas22793252016-01-30 09:59:10 -0800293 }
294 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500295 shaderCaps->fPixelLocalStorageSize = 0;
296 shaderCaps->fPLSPathRenderingSupport = false;
ethannicholas22793252016-01-30 09:59:10 -0800297 }
298
cdalton9c3f1432016-03-11 10:07:37 -0800299 // Protect ourselves against tracking huge amounts of texture state.
300 static const uint8_t kMaxSaneSamplers = 32;
301 GrGLint maxSamplers;
302 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500303 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
304 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800305 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500306 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800307 }
308 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500309 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800310 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500311 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800312
Brian Salomonf26f7a02016-11-15 14:05:01 -0500313 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500314 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
315 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500316 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500317 shaderCaps->fImageLoadStoreSupport = true;
318 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500319 }
320 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500321 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500322 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500323 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500324 // Protect ourselves against tracking huge amounts of image state.
325 static constexpr int kMaxSaneImages = 4;
326 GrGLint maxUnits;
327 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500328 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500329 &shaderCaps->fMaxVertexImageStorages);
330 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500331 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500332 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500333 }
334 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500335 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500336 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500337 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500338 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500339 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
340 maxUnits), kMaxSaneImages);
341 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
342 shaderCaps->fMaxVertexImageStorages);
343 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
344 shaderCaps->fMaxGeometryImageStorages);
345 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
346 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500347 }
348
egdaniel05ded892015-10-26 07:38:05 -0700349 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700350 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000351 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700352
cdalton63f6c1f2015-11-06 07:09:43 -0800353 // We need dual source blending and the ability to disable multisample in order to support mixed
354 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800355 if (fMultisampleDisableSupport &&
Brian Salomon1edc5b92016-11-29 13:43:46 -0500356 shaderCaps->dualSourceBlendingSupport() &&
egdanieleed519e2016-01-15 11:36:18 -0800357 fShaderCaps->pathRenderingSupport()) {
358 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800359 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800360 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800361 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
362 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800363 fDiscardRenderTargetSupport = false;
364 fInvalidateFBType = kNone_InvalidateFBType;
365 }
366 }
367
csmartdalton485a1202016-07-13 10:16:32 -0700368 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
369 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
370 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
371 // limit this decision to specific GPU families rather than basing it on the vendor alone.
372 if (!GR_GL_MUST_USE_VBO &&
373 !fIsCoreProfile &&
374 (kARM_GrGLVendor == ctxInfo.vendor() ||
375 kImagination_GrGLVendor == ctxInfo.vendor() ||
376 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
377 fPreferClientSideDynamicBuffers = true;
378 }
379
egdanieleed519e2016-01-15 11:36:18 -0800380 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700381 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700382 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700383 this->initStencilFormats(ctxInfo);
384
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000385 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000386 // we could also look for GL_ATI_separate_stencil extension or
387 // GL_EXT_stencil_two_side but they use different function signatures
388 // than GL2.0+ (and than each other).
389 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
390 // supported on GL 1.4 and higher or by extension
391 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
392 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
393 } else {
394 // ES 2 has two sided stencil and stencil wrap
395 fTwoSidedStencilSupport = true;
396 fStencilWrapOpsSupport = true;
397 }
398
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000399 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000400 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
401 // extension includes glMapBuffer.
402 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
403 fMapBufferFlags |= kSubset_MapFlag;
404 fMapBufferType = kMapBufferRange_MapBufferType;
405 } else {
406 fMapBufferType = kMapBuffer_MapBufferType;
407 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000408 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000409 // Unextended GLES2 doesn't have any buffer mapping.
410 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800411 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800412 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
413 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800414 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
415 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
416 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000417 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
418 fMapBufferFlags = kCanMap_MapFlag;
419 fMapBufferType = kMapBuffer_MapBufferType;
420 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000421 }
422
jvanverthd7a2c1f2015-12-07 07:36:44 -0800423 if (kGL_GrGLStandard == standard) {
424 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
425 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700426 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800427 } else {
428 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
429 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700430 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
431 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800432 }
433 }
434
joshualitte5b74c62015-06-01 14:17:47 -0700435 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
436 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700437 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700438 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
439 // we will use for all GrBatchs. Right now we might wind up mapping a large buffer and using
440 // a small subset.
441#if 0
cdalton397536c2016-03-25 12:15:03 -0700442 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700443#else
cdalton397536c2016-03-25 12:15:03 -0700444 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700445#endif
joshualitte5b74c62015-06-01 14:17:47 -0700446 }
447
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000448 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000449 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
450 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
451 fNPOTTextureTileSupport = true;
452 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000453 } else {
454 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000455 // ES3 has no limitations.
456 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
457 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000458 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
459 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
460 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
461 // to alllow arbitrary wrap modes, however.
462 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000463 }
464
bsalomone72bd022015-10-26 07:33:03 -0700465 // Using MIPs on this GPU seems to be a source of trouble.
466 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
467 fMipMapSupport = false;
468 }
469
bsalomon@google.combcce8922013-03-25 15:38:39 +0000470 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
471 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
472 // Our render targets are always created with textures as the color
473 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000474 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000475
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000476 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
477
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000478 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700479 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000480
robertphillips1b8e1b52015-06-24 06:54:10 -0700481#if 0
482 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
483 kQualcomm_GrGLVendor != ctxInfo.vendor();
484#endif
485
egdaniel05ded892015-10-26 07:38:05 -0700486 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000487 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800488 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000489 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800490 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000491 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800492 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
493 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
494 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
495 // This is to guard against platforms that may not support as many samples for
496 // glRasterSamples as they do for framebuffers.
497 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
498 }
499 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000500
csmartdalton9bc11872016-08-09 12:42:47 -0700501 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
502 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700503 }
504
bsalomon63b21962014-11-05 07:05:34 -0800505 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800506 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800507 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800508 fUseDrawInsteadOfClear = true;
509 }
510
joshualitt83bc2292015-06-18 14:18:02 -0700511 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
512 fUseDrawInsteadOfPartialRenderTargetWrite = true;
513 }
514
bsalomonbabafcc2016-02-16 11:36:47 -0800515 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
516 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
517 fUseDrawInsteadOfPartialRenderTargetWrite = true;
518 fUseDrawInsteadOfAllRenderTargetWrites = true;
519 }
520
robertphillips63926682015-08-20 09:39:02 -0700521#ifdef SK_BUILD_FOR_WIN
522 // On ANGLE deferring flushes can lead to GPU starvation
523 fPreferVRAMUseOverFlushes = !isANGLE;
524#endif
525
bsalomon7dea7b72015-08-19 08:26:51 -0700526 if (kChromium_GrGLDriver == ctxInfo.driver()) {
527 fMustClearUploadedBufferData = true;
528 }
529
bsalomond08ea5f2015-02-20 06:58:13 -0800530 if (kGL_GrGLStandard == standard) {
531 // ARB allows mixed size FBO attachments, EXT does not.
532 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
533 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
534 fOversizedStencilSupport = true;
535 } else {
536 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
537 }
538 } else {
539 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
540 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
541 }
542
joshualitt58001552015-06-26 12:46:36 -0700543 if (kGL_GrGLStandard == standard) {
544 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
545 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700546 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700547 version >= GR_GL_VER(3, 2) ||
548 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
549 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
550 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700551 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700552 version >= GR_GL_VER(3, 0) ||
553 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
554 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
555 }
556
cdalton06604b92016-02-05 10:09:51 -0800557 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700558 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
559 ctxInfo.hasExtension("GL_ARB_draw_indirect");
560 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
561 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700562 (fDrawIndirectSupport &&
563 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700564 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700565 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800566 } else {
567 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700568 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
569 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
570 fBaseInstanceSupport = fDrawIndirectSupport &&
571 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700572 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800573 }
574
Brian Salomon1edc5b92016-11-29 13:43:46 -0500575 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800576
577 if (contextOptions.fUseShaderSwizzling) {
578 fTextureSwizzleSupport = false;
579 }
580
ethannicholas28ef4452016-03-25 09:26:03 -0700581 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700582 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
583 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700584 fSampleShadingSupport = true;
585 }
586 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
587 fSampleShadingSupport = true;
588 }
589
jvanverth84741b32016-09-30 08:39:02 -0700590 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
591 if (kGL_GrGLStandard == standard) {
592 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
593 fFenceSyncSupport = true;
594 }
595 } else if (version >= GR_GL_VER(3, 0)) {
596 fFenceSyncSupport = true;
597 }
598
brianosman131ff132016-06-07 14:22:44 -0700599 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
600 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
601 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
602 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700603 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700604 (contextOptions.fDoManualMipmapping ||
605 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700606 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
607 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700608 fDoManualMipmapping = true;
609 }
610
brianosman20471892016-12-02 06:43:32 -0800611 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
612
bsalomoncdee0092016-01-08 13:20:12 -0800613 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
614 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800615 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700616
617 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500618 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000619}
620
egdaniel472d44e2015-10-22 08:20:00 -0700621const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
622 bool isCoreProfile) {
623 switch (generation) {
624 case k110_GrGLSLGeneration:
625 if (kGLES_GrGLStandard == standard) {
626 // ES2s shader language is based on version 1.20 but is version
627 // 1.00 of the ES language.
628 return "#version 100\n";
629 } else {
630 SkASSERT(kGL_GrGLStandard == standard);
631 return "#version 110\n";
632 }
633 case k130_GrGLSLGeneration:
634 SkASSERT(kGL_GrGLStandard == standard);
635 return "#version 130\n";
636 case k140_GrGLSLGeneration:
637 SkASSERT(kGL_GrGLStandard == standard);
638 return "#version 140\n";
639 case k150_GrGLSLGeneration:
640 SkASSERT(kGL_GrGLStandard == standard);
641 if (isCoreProfile) {
642 return "#version 150\n";
643 } else {
644 return "#version 150 compatibility\n";
645 }
646 case k330_GrGLSLGeneration:
647 if (kGLES_GrGLStandard == standard) {
648 return "#version 300 es\n";
649 } else {
650 SkASSERT(kGL_GrGLStandard == standard);
651 if (isCoreProfile) {
652 return "#version 330\n";
653 } else {
654 return "#version 330 compatibility\n";
655 }
656 }
cdalton33ad7012016-02-22 07:55:44 -0800657 case k400_GrGLSLGeneration:
658 SkASSERT(kGL_GrGLStandard == standard);
659 if (isCoreProfile) {
660 return "#version 400\n";
661 } else {
662 return "#version 400 compatibility\n";
663 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500664 case k420_GrGLSLGeneration:
665 SkASSERT(kGL_GrGLStandard == standard);
666 if (isCoreProfile) {
667 return "#version 420\n";
668 }
669 else {
670 return "#version 420 compatibility\n";
671 }
egdaniel472d44e2015-10-22 08:20:00 -0700672 case k310es_GrGLSLGeneration:
673 SkASSERT(kGLES_GrGLStandard == standard);
674 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800675 case k320es_GrGLSLGeneration:
676 SkASSERT(kGLES_GrGLStandard == standard);
677 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700678 }
679 return "<no version>";
680}
681
egdaniel05ded892015-10-26 07:38:05 -0700682void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700683 GrGLStandard standard = ctxInfo.standard();
684 GrGLVersion version = ctxInfo.version();
685
686 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500687 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700688 **************************************************************************/
689
Brian Salomon1edc5b92016-11-29 13:43:46 -0500690 GrShaderCaps* shaderCaps = fShaderCaps.get();
691 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700692 if (kGLES_GrGLStandard == standard) {
693 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500694 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
695 shaderCaps->fFBFetchSupport = true;
696 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
697 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700698 }
699 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
700 // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know
Brian Salomon1edc5b92016-11-29 13:43:46 -0500701 shaderCaps->fFBFetchNeedsCustomOutput = false;
702 shaderCaps->fFBFetchSupport = true;
703 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
704 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700705 }
706 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
707 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500708 shaderCaps->fFBFetchNeedsCustomOutput = false;
709 shaderCaps->fFBFetchSupport = true;
710 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
711 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700712 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500713 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700714 }
715
egdaniel7517e452016-09-20 13:00:26 -0700716 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
717 // Galaxy S7.
718 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
719 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500720 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700721 }
722
Brian Salomon1edc5b92016-11-29 13:43:46 -0500723 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700724
cdaltonc08f1962016-02-12 12:14:06 -0800725 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500726 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800727 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500728 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800729 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
730 }
731
732 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500733 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800734 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
735 } else {
736 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500737 shaderCaps->fNoPerspectiveInterpolationSupport = true;
738 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800739 "GL_NV_shader_noperspective_interpolation";
740 }
741 }
742
cdalton33ad7012016-02-22 07:55:44 -0800743 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500744 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800745 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
746 } else {
747 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500748 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800749 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500750 shaderCaps->fMultisampleInterpolationSupport = true;
751 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800752 "GL_OES_shader_multisample_interpolation";
753 }
754 }
755
756 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500757 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800758 } else {
759 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500760 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800761 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500762 shaderCaps->fSampleVariablesSupport = true;
763 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800764 }
765 }
766
Brian Salomon1edc5b92016-11-29 13:43:46 -0500767 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700768 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
769 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500770 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700771 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
772 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800773 }
774
egdaniel472d44e2015-10-22 08:20:00 -0700775 // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader
Brian Salomon1edc5b92016-11-29 13:43:46 -0500776 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700777
778 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
779 // function that may require a gradient calculation inside a conditional block may return
780 // undefined results". This appears to be an issue with the 'any' call since even the simple
781 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
782 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500783 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700784
Brian Salomon1edc5b92016-11-29 13:43:46 -0500785 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
786 shaderCaps->fGLSLGeneration,
787 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800788
Brian Salomon1edc5b92016-11-29 13:43:46 -0500789 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
790 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800791 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800792
793 // Frag Coords Convention support is not part of ES
794 // Known issue on at least some Intel platforms:
795 // http://code.google.com/p/skia/issues/detail?id=946
796 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
797 kGLES_GrGLStandard != standard &&
798 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
799 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500800 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800801 }
802
803 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500804 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800805 }
806
cdalton9c3f1432016-03-11 10:07:37 -0800807 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
808 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500809 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800810 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
811 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
812 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500813 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800814 }
815 }
816
Brian Salomon1edc5b92016-11-29 13:43:46 -0500817 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800818 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500819 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800820 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500821 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800822 }
823 }
824
cdaltonc04ce672016-03-11 14:07:38 -0800825 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500826 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800827 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500828 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700829 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
830 }
831
Brian Salomon1edc5b92016-11-29 13:43:46 -0500832 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700833 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500834 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700835 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
836 } else {
837 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
838 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500839 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700840 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500841 shaderCaps->fTexelBufferSupport = true;
842 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700843 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500844 shaderCaps->fTexelBufferSupport = true;
845 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700846 }
cdaltonc04ce672016-03-11 14:07:38 -0800847 }
848 }
849
egdaniel8dcdedc2015-11-11 06:27:20 -0800850 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
851 // the abs first in a separate expression.
852 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500853 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800854 }
855
bsalomon7ea33f52015-11-22 14:51:00 -0800856 // 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 -0800857 // thus must us -1.0 * %s.x to work correctly
858 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500859 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800860 }
egdaniel138c2632016-08-17 10:59:00 -0700861
862 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
863 // the original dst color when reading the outColor even after being written to. By using a
864 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500865 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
866 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700867 }
egdaniel472d44e2015-10-22 08:20:00 -0700868}
869
kkinnunencfe62e32015-07-01 02:58:50 -0700870bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700871 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
872
873 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700874 return false;
875 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700876
kkinnunencfe62e32015-07-01 02:58:50 -0700877 if (kGL_GrGLStandard == ctxInfo.standard()) {
878 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
879 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
880 return false;
881 }
882 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700883 if (!hasChromiumPathRendering &&
884 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700885 return false;
886 }
887 }
888 // We only support v1.3+ of GL_NV_path_rendering which allows us to
889 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
890 // additions are detected by checking the existence of the function.
891 // We also use *Then* functions that not all drivers might have. Check
892 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800893 if (!gli->fFunctions.fStencilThenCoverFillPath ||
894 !gli->fFunctions.fStencilThenCoverStrokePath ||
895 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
896 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
897 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700898 return false;
899 }
900 return true;
901}
bsalomon1aa20292016-01-22 08:16:09 -0800902
Brian Salomon71d9d842016-11-03 13:42:00 -0400903bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800904 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800905 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800906 std::function<bool ()> bindRenderTarget,
907 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400908 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800909 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400910 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800911 return false;
912 }
bsalomon7928ef62016-01-05 10:26:39 -0800913
Brian Salomonbf7b6202016-11-11 16:08:03 -0500914 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
915 return false;
916 }
917
bsalomon76148af2016-01-12 11:13:47 -0800918 GrGLenum readFormat;
919 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400920 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800921 return false;
922 }
923
bsalomon1aa20292016-01-22 08:16:09 -0800924 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800925 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
926 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
927 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
928 // GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA. We check for the subset that we would use.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500929 // The manual does not seem to fully match the spec as the spec allows integer formats
930 // when the bound color buffer is an integer buffer. It doesn't specify which integer
931 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
bsalomone9573312016-01-25 14:33:25 -0800932 if (readFormat != GR_GL_RED && readFormat != GR_GL_RGB && readFormat != GR_GL_RGBA &&
Brian Salomonbf7b6202016-11-11 16:08:03 -0500933 readFormat != GR_GL_BGRA && readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800934 return false;
935 }
936 // There is also a set of allowed types, but all the types we use are in the set:
937 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
938 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
939 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
940 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
941 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
942 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
943 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800944 return true;
piotaixre4b23142014-10-02 10:57:53 -0700945 }
bsalomon7928ef62016-01-05 10:26:39 -0800946
bsalomon76148af2016-01-12 11:13:47 -0800947 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500948 switch (fConfigTable[surfaceConfig].fFormatType) {
949 case kNormalizedFixedPoint_FormatType:
950 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
951 return true;
952 }
953 break;
954 case kInteger_FormatType:
955 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
956 return true;
957 }
958 break;
959 case kFloat_FormatType:
960 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
961 return true;
962 }
963 break;
bsalomon7928ef62016-01-05 10:26:39 -0800964 }
965
Brian Salomon71d9d842016-11-03 13:42:00 -0400966 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800967 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400968 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800969 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800970 if (!bindRenderTarget()) {
971 return false;
972 }
973 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
974 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800975 rpFormat->fFormat = format;
976 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800977 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800978 }
979
Brian Salomon71d9d842016-11-03 13:42:00 -0400980 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
981 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700982}
983
robertphillips@google.com6177e692013-02-28 20:16:25 +0000984void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000985 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000986 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
987 // ES3 driver bugs on at least one device with a tiled GPU (N10).
988 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
989 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
990 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
991 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800992 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700993 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -0400994 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -0400995 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
996 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -0400997 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000998 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
999 fMSFBOType = kES_Apple_MSFBOType;
1000 }
bsalomon083617b2016-02-12 12:10:14 -08001001
1002 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1003 // is available.
1004 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001005 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
1006 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001007 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1008 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001009 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1010 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001011 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1012 kResolveMustBeFull_BlitFrambufferFlag |
1013 kNoMSAADst_BlitFramebufferFlag |
1014 kNoFormatConversion_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001015 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001016 } else {
egdanieleed519e2016-01-15 11:36:18 -08001017 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001018 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001019 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001020 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1021 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1022 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001023 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001024 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1025 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001026 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001027 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001028 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001029 }
1030}
1031
cdalton1dd05422015-06-12 09:01:18 -07001032void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001033 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001034
1035 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1036 // for now until its own blacklists can be updated.
1037 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001038 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001039 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001040 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001041 return;
1042 }
1043
1044 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1045 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001046 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001047 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1048 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001049 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001050 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1051 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1052 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1053 return;
1054 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1055 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001056 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001057 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1058 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001059 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001060 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1061 // slow on a particular platform.
1062 } else {
1063 return; // No advanced blend support.
1064 }
1065
1066 SkASSERT(this->advancedBlendEquationSupport());
1067
csmartdalton3b88a032016-08-04 14:43:49 -07001068 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1069 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1070 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001071 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1072 (1 << kColorBurn_GrBlendEquation);
1073 }
joel.liang9764c402015-07-09 19:46:18 -07001074 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1075 // Blacklist color-burn on ARM until the fix is released.
1076 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1077 }
cdalton1dd05422015-06-12 09:01:18 -07001078}
1079
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001080namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001081const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001082}
1083
1084void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1085
1086 // Build up list of legal stencil formats (though perhaps not supported on
1087 // the particular gpu/driver) from most preferred to least.
1088
1089 // these consts are in order of most preferred to least preferred
1090 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1091
1092 static const StencilFormat
1093 // internal Format stencil bits total bits packed?
1094 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1095 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1096 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1097 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001098 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001099 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1100
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001101 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001102 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001103 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001104 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1105 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1106
1107 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1108 // require FBO support we can expect these are legal formats and don't
1109 // check. These also all support the unsized GL_STENCIL_INDEX.
1110 fStencilFormats.push_back() = gS8;
1111 fStencilFormats.push_back() = gS16;
1112 if (supportsPackedDS) {
1113 fStencilFormats.push_back() = gD24S8;
1114 }
1115 fStencilFormats.push_back() = gS4;
1116 if (supportsPackedDS) {
1117 fStencilFormats.push_back() = gDS;
1118 }
1119 } else {
1120 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1121 // for other formats.
1122 // ES doesn't support using the unsized format.
1123
1124 fStencilFormats.push_back() = gS8;
1125 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001126 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1127 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001128 fStencilFormats.push_back() = gD24S8;
1129 }
1130 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1131 fStencilFormats.push_back() = gS4;
1132 }
1133 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001134}
1135
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001136SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001137
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001138 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001139
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001140 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001141 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001142 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001143 i,
1144 fStencilFormats[i].fStencilBits,
1145 fStencilFormats[i].fTotalBits);
1146 }
1147
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001148 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001149 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001150 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001151 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001152 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001153 "IMG MS To Texture",
1154 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001155 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001156 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001157 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001158 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1159 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1160 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1161 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1162 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1163 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001164 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001165
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001166 static const char* kInvalidateFBTypeStr[] = {
1167 "None",
1168 "Discard",
1169 "Invalidate",
1170 };
1171 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1172 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1173 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1174 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001175
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001176 static const char* kMapBufferTypeStr[] = {
1177 "None",
1178 "MapBuffer",
1179 "MapBufferRange",
1180 "Chromium",
1181 };
1182 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1183 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1184 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1185 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1186 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1187
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001188 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001189 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001190 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001191 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001192 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001193 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1194 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1195 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1196 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001197
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001198 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001199 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1200 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001201 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001202 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1203 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001204 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001205 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1206 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1207 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001208 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1209 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001210 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001211 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001212 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001213 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001214 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001215
1216 r.append("Configs\n-------\n");
1217 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1218 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001219 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1220 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001221 i,
1222 fConfigTable[i].fFlags,
1223 fConfigTable[i].fFormats.fBaseInternalFormat,
1224 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001225 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1226 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001227 fConfigTable[i].fFormats.fExternalType,
1228 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001229 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001230 }
1231
jvanverthe9c0fc62015-04-29 11:18:05 -07001232 return r;
1233}
1234
jvanverthe9c0fc62015-04-29 11:18:05 -07001235static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1236 switch (p) {
1237 case kLow_GrSLPrecision:
1238 return GR_GL_LOW_FLOAT;
1239 case kMedium_GrSLPrecision:
1240 return GR_GL_MEDIUM_FLOAT;
1241 case kHigh_GrSLPrecision:
1242 return GR_GL_HIGH_FLOAT;
1243 }
1244 SkFAIL("Unknown precision.");
1245 return -1;
1246}
1247
1248static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1249 switch (type) {
1250 case kVertex_GrShaderType:
1251 return GR_GL_VERTEX_SHADER;
1252 case kGeometry_GrShaderType:
1253 return GR_GL_GEOMETRY_SHADER;
1254 case kFragment_GrShaderType:
1255 return GR_GL_FRAGMENT_SHADER;
1256 }
1257 SkFAIL("Unknown shader type.");
1258 return -1;
1259}
1260
jvanverthcba99b82015-06-24 06:59:57 -07001261void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001262 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001263 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001264 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1265 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1266 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1267 if (kGeometry_GrShaderType != s) {
1268 GrShaderType shaderType = static_cast<GrShaderType>(s);
1269 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001270 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001271 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001272 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1273 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1274 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1275 GrGLint range[2];
1276 GrGLint bits;
1277 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1278 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001279 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1280 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1281 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001282 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001283 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001284 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001285 else if (!shaderCaps->fShaderPrecisionVaries) {
1286 shaderCaps->fShaderPrecisionVaries =
1287 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001288 }
1289 }
1290 }
1291 }
1292 }
1293 }
1294 else {
1295 // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001296 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001297 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1298 if (kGeometry_GrShaderType != s) {
1299 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001300 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1301 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1302 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001303 }
1304 }
1305 }
1306 }
1307 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1308 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1309 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1310 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001311 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001312 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001313 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1314 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001315 }
1316 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001317 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001318}
1319
bsalomon41e4384e2016-01-08 09:12:44 -08001320bool GrGLCaps::bgraIsInternalFormat() const {
1321 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1322}
1323
bsalomon76148af2016-01-12 11:13:47 -08001324bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1325 GrGLenum* internalFormat, GrGLenum* externalFormat,
1326 GrGLenum* externalType) const {
1327 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1328 externalFormat, externalType)) {
1329 return false;
1330 }
1331 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1332 return true;
1333}
1334
1335bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1336 GrGLenum* internalFormat) const {
1337 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1338 return false;
1339 }
1340 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1341 return true;
1342}
1343
1344bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1345 GrGLenum* externalFormat, GrGLenum* externalType) const {
1346 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1347 externalFormat, externalType)) {
1348 return false;
1349 }
1350 return true;
1351}
1352
1353bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1354 if (GrPixelConfigIsCompressed(config)) {
1355 return false;
1356 }
1357 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1358 return true;
1359}
1360
1361bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1362 ExternalFormatUsage usage, GrGLenum* externalFormat,
1363 GrGLenum* externalType) const {
1364 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001365 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001366 return false;
1367 }
1368
1369 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1370 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1371
1372 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1373 // made to work in many cases using glPixelStore and what not but is not needed currently.
1374 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1375 return false;
1376 }
1377
1378 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1379 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1380
bsalomone9573312016-01-25 14:33:25 -08001381 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1382 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1383 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1384 // texture, not the red component.
1385 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1386 if (this->textureRedSupport()) {
1387 SkASSERT(GR_GL_RED == *externalFormat);
1388 *externalFormat = GR_GL_ALPHA;
1389 }
1390 }
1391
bsalomon76148af2016-01-12 11:13:47 -08001392 return true;
1393}
1394
brianosman20471892016-12-02 06:43:32 -08001395void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1396 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001397 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001398 /*
1399 Comments on renderability of configs on various GL versions.
1400 OpenGL < 3.0:
1401 no built in support for render targets.
1402 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1403 format RGB, RGBA and NV float formats we don't use.
1404 This is the following:
1405 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1406 RGB10_A2, RGBA12,RGBA16
1407 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1408 since they aren't required by later standards and the driver can simply return
1409 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1410 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1411 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1412 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1413 This adds a lot of additional renderable sized formats, including ALPHA8.
1414 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1415 16F, 32I, 32UI, and 32F variants).
1416 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1417
1418 For both the above extensions we limit ourselves to those that are also required by
1419 OpenGL 3.0.
1420
1421 OpenGL 3.0:
1422 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1423 but are not required to be supported as renderable textures/renderbuffer.
1424 Required renderable color formats:
1425 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1426 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1427 RGB10_A2.
1428 - R11F_G11F_B10F.
1429 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1430 and RG8UI.
1431 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1432 - ALPHA8
1433
1434 OpenGL 3.1, 3.2, 3.3
1435 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1436 OpengGL 3.3, 4.0, 4.1
1437 Adds RGB10_A2UI.
1438 OpengGL 4.2
1439 Adds
1440 - RGB5_A1, RGBA4
1441 - RGB565
1442 OpenGL 4.4
1443 Does away with the separate list and adds a column to the sized internal color format
1444 table. However, no new formats become required color renderable.
1445
1446 ES 2.0
1447 color renderable: RGBA4, RGB5_A1, RGB565
1448 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1449 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1450 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1451 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1452 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1453 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1454
1455 ES 3.0
1456 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1457 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1458 RGB5_A1.
1459 - RGB8 and RGB565.
1460 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1461 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1462 ES 3.1
1463 Adds RGB10_A2, RGB10_A2UI,
1464 ES 3.2
1465 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1466 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001467 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1468 ConfigInfo::kFBOColorAttachment_Flag;
1469 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001470 if (kNone_MSFBOType != fMSFBOType) {
1471 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1472 }
bsalomon41e4384e2016-01-08 09:12:44 -08001473 GrGLStandard standard = ctxInfo.standard();
1474 GrGLVersion version = ctxInfo.version();
1475
cblume790d5132016-02-29 11:13:29 -08001476 bool texStorageSupported = false;
1477 if (kGL_GrGLStandard == standard) {
1478 // The EXT version can apply to either GL or GLES.
1479 texStorageSupported = version >= GR_GL_VER(4,2) ||
1480 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1481 ctxInfo.hasExtension("GL_EXT_texture_storage");
1482 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001483 texStorageSupported = version >= GR_GL_VER(3,0) ||
1484 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001485 }
1486
1487 // TODO: remove after command buffer supports full ES 3.0
1488 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1489 kChromium_GrGLDriver == ctxInfo.driver()) {
1490 texStorageSupported = false;
1491 }
1492
cdalton74b8d322016-04-11 14:47:28 -07001493 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1494
bsalomon30447372015-12-21 09:03:05 -08001495 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1496 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001497 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001498 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001499 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001500 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001501
1502 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1503 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001504 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1505 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001506 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001507 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001508 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1509 if (kGL_GrGLStandard == standard) {
1510 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1511 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001512 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001513 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1514 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1515 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1516 }
egdaniel4999df82016-01-07 17:06:04 -08001517 }
cblume790d5132016-02-29 11:13:29 -08001518 if (texStorageSupported) {
1519 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1520 }
cdalton74b8d322016-04-11 14:47:28 -07001521 if (texelBufferSupport) {
1522 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1523 }
bsalomoncdee0092016-01-08 13:20:12 -08001524 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001525
bsalomon76148af2016-01-12 11:13:47 -08001526 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1527 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001528 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001529 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001530 if (kGL_GrGLStandard == standard) {
1531 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1532 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1533 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1534 // Since the internal format is RGBA8, it is also renderable.
1535 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1536 allRenderFlags;
1537 }
1538 } else {
1539 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1540 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1541 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1542 // The APPLE extension doesn't make this renderable.
1543 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1544 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1545 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1546 // Though, that seems to not be the case if the texture storage extension is
1547 // present. The specs don't exactly make that clear.
1548 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1549 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1550 }
1551 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1552 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001553 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001554 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001555 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001556 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1557 ConfigInfo::kRenderableWithMSAA_Flag;
1558 }
1559 }
1560 }
cblume790d5132016-02-29 11:13:29 -08001561 if (texStorageSupported) {
1562 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1563 }
bsalomoncdee0092016-01-08 13:20:12 -08001564 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001565
brianosmana6359362016-03-21 06:55:37 -07001566 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001567 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001568 if (kGL_GrGLStandard == standard) {
1569 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001570 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001571 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1572 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1573 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001574 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001575 }
1576 }
1577 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001578 if (fSRGBSupport) {
1579 fSRGBWriteControl = true;
1580 }
bsalomon41e4384e2016-01-08 09:12:44 -08001581 } else {
brianosman20471892016-12-02 06:43:32 -08001582 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1583#if defined(SK_CPU_X86)
1584 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1585 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1586 // blacklist that device (and any others that might be sharing the same driver).
1587 fSRGBSupport = false;
1588 }
1589#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001590 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1591 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001592 // See https://bug.skia.org/5329 for Adreno4xx issue.
1593 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1594 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001595 }
brianosman20471892016-12-02 06:43:32 -08001596 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1597 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1598 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001599 fSRGBSupport = false;
1600 }
brianosman20471892016-12-02 06:43:32 -08001601
1602 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1603 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1604 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1605 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1606 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1607 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1608 // affects Windows.
1609 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1610 fSRGBSupport = false;
1611 }
1612
bsalomon30447372015-12-21 09:03:05 -08001613 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1614 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1615 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1616 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001617 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1618 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001619 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001620 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001621 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001622 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1623 allRenderFlags;
1624 }
cblume790d5132016-02-29 11:13:29 -08001625 if (texStorageSupported) {
1626 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1627 }
bsalomoncdee0092016-01-08 13:20:12 -08001628 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001629
brianosmana6359362016-03-21 06:55:37 -07001630 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1631 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1632 // is in this format, for example).
1633 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1634 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1635 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1636 // external format is GL_BGRA.
1637 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1638 GR_GL_BGRA;
1639 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1640 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1641 if (fSRGBSupport) {
1642 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1643 allRenderFlags;
1644 }
1645 if (texStorageSupported) {
1646 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1647 }
1648 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1649
Brian Salomonbf7b6202016-11-11 16:08:03 -05001650 bool hasIntegerTextures;
1651 if (standard == kGL_GrGLStandard) {
1652 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1653 ctxInfo.hasExtension("GL_EXT_texture_integer");
1654 } else {
1655 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1656 }
1657 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1658 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1659 hasIntegerTextures = false;
1660 }
1661 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1662 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1663 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1664 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1665 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1666 // We currently only support using integer textures as srcs, not for rendering (even though GL
1667 // allows it).
1668 if (hasIntegerTextures) {
1669 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1670 ConfigInfo::kFBOColorAttachment_Flag;
1671 if (texStorageSupported) {
1672 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1673 ConfigInfo::kCanUseTexStorage_Flag;
1674 }
1675 }
1676
bsalomon30447372015-12-21 09:03:05 -08001677 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1678 if (this->ES2CompatibilitySupport()) {
1679 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1680 } else {
1681 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1682 }
bsalomon76148af2016-01-12 11:13:47 -08001683 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1684 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001685 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001686 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001687 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1688 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001689 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001690 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1691 }
1692 } else {
1693 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1694 }
cblume790d5132016-02-29 11:13:29 -08001695 // 565 is not a sized internal format on desktop GL. So on desktop with
1696 // 565 we always use an unsized internal format to let the system pick
1697 // the best sized format to convert the 565 data to. Since TexStorage
1698 // only allows sized internal formats we disallow it.
1699 //
1700 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1701 // update.
1702 if (texStorageSupported && kGL_GrGLStandard != standard) {
1703 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1704 }
bsalomoncdee0092016-01-08 13:20:12 -08001705 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001706
1707 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1708 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001709 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1710 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001711 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001712 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001713 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1714 if (kGL_GrGLStandard == standard) {
1715 if (version >= GR_GL_VER(4, 2)) {
1716 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1717 }
1718 } else {
1719 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1720 }
cblume790d5132016-02-29 11:13:29 -08001721 if (texStorageSupported) {
1722 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1723 }
bsalomoncdee0092016-01-08 13:20:12 -08001724 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001725
1726 if (this->textureRedSupport()) {
1727 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1728 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001729 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1730 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001731 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001732 if (texelBufferSupport) {
1733 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1734 }
bsalomon30447372015-12-21 09:03:05 -08001735 } else {
1736 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1737 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001738 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1739 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001740 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001741 }
1742 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001743 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001744 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon40170072016-05-05 14:40:03 -07001745 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001746 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1747 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001748 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001749 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1750 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1751 }
cblume790d5132016-02-29 11:13:29 -08001752 if (texStorageSupported) {
1753 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1754 }
bsalomon41e4384e2016-01-08 09:12:44 -08001755
1756 // Check for [half] floating point texture support
1757 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1758 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1759 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1760 bool hasFPTextures = false;
1761 bool hasHalfFPTextures = false;
1762 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001763 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001764
1765 if (kGL_GrGLStandard == standard) {
1766 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1767 hasFPTextures = true;
1768 hasHalfFPTextures = true;
1769 }
1770 } else {
1771 if (version >= GR_GL_VER(3, 1)) {
1772 hasFPTextures = true;
1773 hasHalfFPTextures = true;
1774 } else {
1775 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1776 ctxInfo.hasExtension("GL_OES_texture_float")) {
1777 hasFPTextures = true;
1778 }
1779 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1780 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1781 hasHalfFPTextures = true;
1782 }
1783 }
1784 }
bsalomon30447372015-12-21 09:03:05 -08001785
1786 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1787 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA32F;
bsalomon76148af2016-01-12 11:13:47 -08001788 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1789 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001790 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalType = GR_GL_FLOAT;
bsalomon7928ef62016-01-05 10:26:39 -08001791 fConfigTable[kRGBA_float_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001792 if (hasFPTextures) {
1793 fConfigTable[kRGBA_float_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1794 // For now we only enable rendering to float on desktop, because on ES we'd have to solve
1795 // many precision issues and no clients actually want this yet.
1796 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1797 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1798 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= fpRenderFlags;
1799 }
1800 }
cblume790d5132016-02-29 11:13:29 -08001801 if (texStorageSupported) {
1802 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1803 }
cdalton74b8d322016-04-11 14:47:28 -07001804 if (texelBufferSupport) {
1805 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1806 }
bsalomoncdee0092016-01-08 13:20:12 -08001807 fConfigTable[kRGBA_float_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001808
1809 if (this->textureRedSupport()) {
1810 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1811 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001812 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1813 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001814 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001815 if (texelBufferSupport) {
1816 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1817 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1818 }
bsalomon30447372015-12-21 09:03:05 -08001819 } else {
1820 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1821 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001822 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1823 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001824 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001825 }
Brian Osman3a887252016-11-17 13:27:31 -05001826 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1827 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1828 // returned when we query, but that turns into a bigger refactor, so just work around it.
1829 if (kGL_GrGLStandard == ctxInfo.standard() ||
1830 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001831 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1832 } else {
1833 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1834 }
bsalomon7928ef62016-01-05 10:26:39 -08001835 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001836 if (hasHalfFPTextures) {
1837 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1838 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1839 // GL_RED internal format.
1840 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1841 (this->textureRedSupport() &&
1842 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1843 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1844 }
1845 }
cblume790d5132016-02-29 11:13:29 -08001846 if (texStorageSupported) {
1847 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1848 }
bsalomon30447372015-12-21 09:03:05 -08001849
1850 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1851 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001852 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1853 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001854 // See comment above, re: ANGLE and ES3.
1855 if (kGL_GrGLStandard == ctxInfo.standard() ||
1856 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001857 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1858 } else {
1859 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1860 }
bsalomon7928ef62016-01-05 10:26:39 -08001861 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001862 if (hasHalfFPTextures) {
1863 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1864 // ES requires 3.2 or EXT_color_buffer_half_float.
1865 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1866 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1867 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1868 }
1869 }
cblume790d5132016-02-29 11:13:29 -08001870 if (texStorageSupported) {
1871 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1872 }
cdalton74b8d322016-04-11 14:47:28 -07001873 if (texelBufferSupport) {
1874 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1875 }
bsalomoncdee0092016-01-08 13:20:12 -08001876 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001877
1878 // Compressed texture support
1879
1880 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1881 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1882
1883 // TODO: Fix command buffer bindings and remove this.
1884 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001885
1886 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001887 // Below we set the external formats and types to 0.
bsalomon30447372015-12-21 09:03:05 -08001888
1889 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_PALETTE8_RGBA8;
1890 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001891 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001892 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001893 fConfigTable[kIndex_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001894 // Disable this for now, while we investigate https://bug.skia.org/4333
Brian Salomoneaabe002016-10-11 14:40:33 -07001895 if ((false)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001896 // Check for 8-bit palette..
1897 GrGLint numFormats;
1898 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
1899 if (numFormats) {
1900 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
1901 GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
1902 for (int i = 0; i < numFormats; ++i) {
1903 if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
1904 fConfigTable[kIndex_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1905 break;
1906 }
1907 }
1908 }
1909 }
bsalomoncdee0092016-01-08 13:20:12 -08001910 fConfigTable[kIndex_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001911
bsalomon41e4384e2016-01-08 09:12:44 -08001912 // May change the internal format based on extensions.
1913 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1914 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1915 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1916 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1917 if (ctxInfo.hasExtension("GL_EXT_texture_compression_latc") ||
1918 ctxInfo.hasExtension("GL_NV_texture_compression_latc")) {
1919 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1920 } else if ((kGL_GrGLStandard == standard && version >= GR_GL_VER(3, 0)) ||
1921 ctxInfo.hasExtension("GL_EXT_texture_compression_rgtc") ||
1922 ctxInfo.hasExtension("GL_ARB_texture_compression_rgtc")) {
1923 // RGTC is identical and available on OpenGL 3.0+ as well as with extensions
1924 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1925 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1926 GR_GL_COMPRESSED_RED_RGTC1;
1927 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1928 GR_GL_COMPRESSED_RED_RGTC1;
1929 } else if (ctxInfo.hasExtension("GL_AMD_compressed_3DC_texture")) {
1930 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1931 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_3DC_X;
1932 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1933 GR_GL_COMPRESSED_3DC_X;
1934
bsalomon30447372015-12-21 09:03:05 -08001935 }
bsalomon76148af2016-01-12 11:13:47 -08001936 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001937 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001938 fConfigTable[kLATC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001939 fConfigTable[kLATC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001940
1941 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1942 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
bsalomon76148af2016-01-12 11:13:47 -08001943 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001944 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001945 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001946 if (kGL_GrGLStandard == standard) {
1947 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1948 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1949 }
1950 } else {
1951 if (version >= GR_GL_VER(3, 0) ||
1952 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1953 // ETC2 is a superset of ETC1, so we can just check for that, too.
1954 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1955 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1956 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1957 }
1958 }
bsalomoncdee0092016-01-08 13:20:12 -08001959 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001960
1961 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_R11_EAC;
1962 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_R11_EAC;
bsalomon76148af2016-01-12 11:13:47 -08001963 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001964 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001965 fConfigTable[kR11_EAC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001966 // Check for R11_EAC. We don't support R11_EAC on desktop, as most cards default to
1967 // decompressing the textures in the driver, and is generally slower.
1968 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) {
1969 fConfigTable[kR11_EAC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1970 }
bsalomoncdee0092016-01-08 13:20:12 -08001971 fConfigTable[kR11_EAC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001972
1973 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fBaseInternalFormat =
1974 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
1975 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fSizedInternalFormat =
1976 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
bsalomon76148af2016-01-12 11:13:47 -08001977 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1978 0;
bsalomon30447372015-12-21 09:03:05 -08001979 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001980 fConfigTable[kASTC_12x12_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001981 if (ctxInfo.hasExtension("GL_KHR_texture_compression_astc_hdr") ||
1982 ctxInfo.hasExtension("GL_KHR_texture_compression_astc_ldr") ||
1983 ctxInfo.hasExtension("GL_OES_texture_compression_astc")) {
1984 fConfigTable[kASTC_12x12_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1985 }
bsalomoncdee0092016-01-08 13:20:12 -08001986 fConfigTable[kASTC_12x12_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001987
1988 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1989
1990 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001991 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1992 ctxInfo.version() >= GR_GL_VER(3,0));
1993 // All ES versions (thus far) require sized internal formats for render buffers.
1994 // TODO: Always use sized internal format?
1995 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1996
bsalomon30447372015-12-21 09:03:05 -08001997 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001998 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1999 // param to glTex[Sub]Image.
2000 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
2001 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
2002 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
2003 fConfigTable[i].fFormats.fSizedInternalFormat :
2004 fConfigTable[i].fFormats.fBaseInternalFormat;
2005 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08002006 fConfigTable[i].fFormats.fSizedInternalFormat :
2007 fConfigTable[i].fFormats.fBaseInternalFormat;
2008 }
2009 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
2010 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
2011 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
2012 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
2013 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08002014 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08002015 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07002016
2017 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
2018 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
2019 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
2020 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08002021 }
2022
2023 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
2024 // as a base format.
2025 // GL_EXT_texture_format_BGRA8888:
2026 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2027 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2028 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002029 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002030 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2031 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2032 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002033 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002034 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2035 }
2036
bsalomoncdee0092016-01-08 13:20:12 -08002037 // If we don't have texture swizzle support then the shader generator must insert the
2038 // swizzle into shader code.
2039 if (!this->textureSwizzleSupport()) {
2040 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002041 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002042 }
2043 }
2044
bsalomon7f9b2e42016-01-12 13:29:26 -08002045 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2046 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2047 // gets written to the single component.
2048 if (this->textureRedSupport()) {
2049 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2050 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2051 if (GrPixelConfigIsAlphaOnly(config) &&
2052 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002053 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002054 }
2055 }
2056 }
2057
Brian Salomonf9f45122016-11-29 11:59:17 -05002058 // We currently only support images on rgba textures formats. We could add additional formats
2059 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2060 // (e.g. where we use GL_RED textures to implement alpha configs).
2061 if (this->shaderCaps()->imageLoadStoreSupport()) {
2062 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2063 ConfigInfo::kCanUseAsImageStorage_Flag;
2064 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2065 // immutable via TexStorage. We create non-integer textures as mutable textures using
2066 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2067 // storage support for non-integer textures.
2068 if (kGL_GrGLStandard == ctxInfo.standard()) {
2069 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2070 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2071 ConfigInfo::kCanUseAsImageStorage_Flag;
2072 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2073 }
2074 }
2075
bsalomon30447372015-12-21 09:03:05 -08002076#ifdef SK_DEBUG
2077 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002078 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002079 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002080 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2081 // renderable.
2082 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2083 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002084 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2085 fConfigTable[i].fFormats.fBaseInternalFormat);
2086 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002087 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002088 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2089 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2090 fConfigTable[i].fFormats.fExternalFormat[j]);
2091 }
2092 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002093 }
2094#endif
2095}
2096
csmartdaltone0d36292016-07-29 08:14:20 -07002097void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2098 if (options.fEnableInstancedRendering) {
2099 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2100#ifndef SK_BUILD_FOR_MAC
2101 // OS X doesn't seem to write correctly to floating point textures when using
2102 // glDraw*Indirect, regardless of the underlying GPU.
2103 fAvoidInstancedDrawsToFPTargets = true;
2104#endif
2105 }
2106}