blob: 0d1d4f6fffb064fefd1716b17953b3e251484fe8 [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
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00008#include "GrGLCaps.h"
egdanielb7e7d572015-11-04 04:23:53 -08009#include "GrContextOptions.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000010#include "GrGLContext.h"
bsalomon1aa20292016-01-22 08:16:09 -080011#include "GrGLRenderTarget.h"
Brian Salomon467921e2017-03-06 16:17:12 -050012#include "GrGLTexture.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050013#include "GrShaderCaps.h"
Robert Phillipsbf25d432017-04-07 10:08:53 -040014#include "GrSurfaceProxyPriv.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000015#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000016#include "SkTSort.h"
Brian Salomon467921e2017-03-06 16:17:12 -050017#include "instanced/GLInstancedRendering.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000018
bsalomon682c2692015-05-22 14:01:46 -070019GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
20 const GrGLContextInfo& ctxInfo,
21 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080022 fStandard = ctxInfo.standard();
23
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000025 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000026 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000027 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080028 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000030 fUnpackRowLengthSupport = false;
31 fUnpackFlipYSupport = false;
32 fPackRowLengthSupport = false;
33 fPackFlipYSupport = false;
34 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000035 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000036 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000037 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070038 fDirectStateAccessSupport = false;
39 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080040 fES2CompatibilitySupport = false;
csmartdalton4c18b622016-07-29 12:19:28 -070041 fDrawInstancedSupport = false;
cdalton06604b92016-02-05 10:09:51 -080042 fDrawIndirectSupport = false;
43 fMultiDrawIndirectSupport = false;
44 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080054 fSRGBDecodeDisableSupport = false;
brianosman851c2382016-12-07 10:03:25 -080055 fSRGBDecodeDisableAffectsMipmaps = false;
Eric Karlaeaf22b2017-05-18 15:08:09 -070056 fClearToBoundaryValuesIsBroken = false;
Brian Salomond17b4a62017-05-23 16:53:47 -040057 fClearTextureSupport = false;
Chris Dalton9926f4b2017-05-17 15:15:50 -060058 fDrawArraysBaseVertexIsBroken = false;
piotaixre4b23142014-10-02 10:57:53 -070059
Brian Salomone5e7eb12016-10-14 16:18:33 -040060 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080061
Brian Salomon94efbf52016-11-29 13:43:05 -050062 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070063
cdalton4cd67132015-06-10 19:23:46 -070064 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000065}
66
cdalton4cd67132015-06-10 19:23:46 -070067void GrGLCaps::init(const GrContextOptions& contextOptions,
68 const GrGLContextInfo& ctxInfo,
69 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000070 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000071 GrGLVersion version = ctxInfo.version();
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
Brian Salomon0ee6f952017-01-19 15:52:24 -0500122 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800123 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500124 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
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
Brian Salomond17b4a62017-05-23 16:53:47 -0400252 if (kGL_GrGLStandard == standard) {
253 if (version >= GR_GL_VER(4,4) || ctxInfo.hasExtension("GL_ARB_clear_texture")) {
254 // glClearTexImage seems to have a bug in NVIDIA drivers that was fixed sometime between
255 // 340.96 and 367.57.
256 if (ctxInfo.driver() != kNVIDIA_GrGLDriver ||
257 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(367, 57)) {
258 fClearTextureSupport = true;
259 }
260 }
261 } else if (ctxInfo.hasExtension("GL_EXT_clear_texture")) {
262 // Calling glClearTexImage crashes on the NexusPlayer.
263 if (kPowerVRRogue_GrGLRenderer != ctxInfo.renderer()) {
264 fClearTextureSupport = true;
265 }
266 }
267
cdalton4cd67132015-06-10 19:23:46 -0700268 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700269 * GrShaderCaps fields
270 **************************************************************************/
271
egdaniel0a482332015-10-26 08:59:10 -0700272 // This must be called after fCoreProfile is set on the GrGLCaps
273 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500274 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700275
csmartdalton008b9d82017-02-22 12:00:42 -0700276 if (!contextOptions.fSuppressPathRendering) {
277 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
278 }
egdaniel05ded892015-10-26 07:38:05 -0700279
280 // For now these two are equivalent but we could have dst read in shader via some other method.
281 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500282 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700283
284 // Enable supported shader-related caps
285 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500286 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700287 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
288 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500289 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700290 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500291 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700292 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500293 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800294 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700295 }
296 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500297 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700298
Brian Salomon1edc5b92016-11-29 13:43:46 -0500299 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700300 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800301
csmartdalton1d2aed02017-02-15 21:43:20 -0700302 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
303
Brian Salomon1edc5b92016-11-29 13:43:46 -0500304 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800305 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700306 }
307
cdalton9c3f1432016-03-11 10:07:37 -0800308 // Protect ourselves against tracking huge amounts of texture state.
309 static const uint8_t kMaxSaneSamplers = 32;
310 GrGLint maxSamplers;
311 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500312 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
313 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800314 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500315 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800316 }
317 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500318 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800319 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500320 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800321
Brian Salomonf26f7a02016-11-15 14:05:01 -0500322 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500323 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
324 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500325 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500326 shaderCaps->fImageLoadStoreSupport = true;
327 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500328 }
329 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500330 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500331 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500332 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500333 // Protect ourselves against tracking huge amounts of image state.
334 static constexpr int kMaxSaneImages = 4;
335 GrGLint maxUnits;
336 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500337 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500338 &shaderCaps->fMaxVertexImageStorages);
339 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500340 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500341 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500342 }
343 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500344 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500345 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500346 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500347 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500348 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
349 maxUnits), kMaxSaneImages);
350 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
351 shaderCaps->fMaxVertexImageStorages);
352 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
353 shaderCaps->fMaxGeometryImageStorages);
354 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
355 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500356 }
357
csmartdalton485a1202016-07-13 10:16:32 -0700358 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
359 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
360 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
361 // limit this decision to specific GPU families rather than basing it on the vendor alone.
362 if (!GR_GL_MUST_USE_VBO &&
363 !fIsCoreProfile &&
364 (kARM_GrGLVendor == ctxInfo.vendor() ||
365 kImagination_GrGLVendor == ctxInfo.vendor() ||
366 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
367 fPreferClientSideDynamicBuffers = true;
368 }
369
Eric Karl5c779752017-05-08 12:02:07 -0700370 if (!contextOptions.fAvoidStencilBuffers) {
371 // To reduce surface area, if we avoid stencil buffers, we also disable MSAA.
372 this->initFSAASupport(contextOptions, ctxInfo, gli);
373 this->initStencilSupport(ctxInfo);
374 }
Greg Danielcd2f5122017-05-25 10:50:40 -0400375
376 // Setup blit framebuffer
377 if (kGL_GrGLStandard != ctxInfo.standard()) {
378 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
379 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
380 kNoMSAADst_BlitFramebufferFlag |
381 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
382 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
383 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
384 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
385 // limitations.
386 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
387 kResolveMustBeFull_BlitFrambufferFlag |
388 kNoMSAADst_BlitFramebufferFlag |
389 kNoFormatConversion_BlitFramebufferFlag |
390 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
391 }
392 } else {
393 if (fUsesMixedSamples ||
394 ctxInfo.version() >= GR_GL_VER(3,0) ||
395 ctxInfo.hasExtension("GL_ARB_framebuffer_object") ||
396 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
397 fBlitFramebufferFlags = 0;
398 }
399 }
400
cdalton1dd05422015-06-12 09:01:18 -0700401 this->initBlendEqationSupport(ctxInfo);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000402
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000403 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000404 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
405 // extension includes glMapBuffer.
406 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
407 fMapBufferFlags |= kSubset_MapFlag;
408 fMapBufferType = kMapBufferRange_MapBufferType;
409 } else {
410 fMapBufferType = kMapBuffer_MapBufferType;
411 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000412 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000413 // Unextended GLES2 doesn't have any buffer mapping.
414 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800415 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800416 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
417 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800418 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
419 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
420 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000421 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
422 fMapBufferFlags = kCanMap_MapFlag;
423 fMapBufferType = kMapBuffer_MapBufferType;
424 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000425 }
426
jvanverthd7a2c1f2015-12-07 07:36:44 -0800427 if (kGL_GrGLStandard == standard) {
428 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
429 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700430 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800431 } else {
432 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
433 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700434 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
435 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800436 }
437 }
438
joshualitte5b74c62015-06-01 14:17:47 -0700439 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
440 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700441 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700442#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500443 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
444 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
445 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700446 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700447#else
cdalton397536c2016-03-25 12:15:03 -0700448 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700449#endif
joshualitte5b74c62015-06-01 14:17:47 -0700450 }
451
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000452 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000453 fNPOTTextureTileSupport = true;
454 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000455 } else {
456 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000457 // ES3 has no limitations.
458 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
459 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000460 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
461 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
462 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
463 // to alllow arbitrary wrap modes, however.
464 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000465 }
466
bsalomone72bd022015-10-26 07:33:03 -0700467 // Using MIPs on this GPU seems to be a source of trouble.
468 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
469 fMipMapSupport = false;
470 }
471
bsalomon@google.combcce8922013-03-25 15:38:39 +0000472 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
473 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
474 // Our render targets are always created with textures as the color
475 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000476 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000477
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000478 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
479
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000480 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700481 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000482
robertphillips1b8e1b52015-06-24 06:54:10 -0700483#if 0
484 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
485 kQualcomm_GrGLVendor != ctxInfo.vendor();
486#endif
487
csmartdalton9bc11872016-08-09 12:42:47 -0700488 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
489 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700490 }
491
bsalomon63b21962014-11-05 07:05:34 -0800492 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800493 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400494 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
495 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800496 fUseDrawInsteadOfClear = true;
497 }
498
joshualitt83bc2292015-06-18 14:18:02 -0700499 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
500 fUseDrawInsteadOfPartialRenderTargetWrite = true;
501 }
502
bsalomonbabafcc2016-02-16 11:36:47 -0800503 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
504 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
505 fUseDrawInsteadOfPartialRenderTargetWrite = true;
506 fUseDrawInsteadOfAllRenderTargetWrites = true;
507 }
508
robertphillips63926682015-08-20 09:39:02 -0700509#ifdef SK_BUILD_FOR_WIN
510 // On ANGLE deferring flushes can lead to GPU starvation
511 fPreferVRAMUseOverFlushes = !isANGLE;
512#endif
513
bsalomon7dea7b72015-08-19 08:26:51 -0700514 if (kChromium_GrGLDriver == ctxInfo.driver()) {
515 fMustClearUploadedBufferData = true;
Brian Salomon8785df12017-05-24 10:07:30 -0400516 fMustClearAtlases = true;
bsalomon7dea7b72015-08-19 08:26:51 -0700517 }
518
bsalomond08ea5f2015-02-20 06:58:13 -0800519 if (kGL_GrGLStandard == standard) {
520 // ARB allows mixed size FBO attachments, EXT does not.
521 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
522 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
523 fOversizedStencilSupport = true;
524 } else {
525 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
526 }
527 } else {
528 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
529 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
530 }
531
joshualitt58001552015-06-26 12:46:36 -0700532 if (kGL_GrGLStandard == standard) {
533 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
534 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700535 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700536 version >= GR_GL_VER(3, 2) ||
537 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
538 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
539 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700540 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700541 version >= GR_GL_VER(3, 0) ||
542 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
543 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
544 }
545
cdalton06604b92016-02-05 10:09:51 -0800546 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700547 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
548 ctxInfo.hasExtension("GL_ARB_draw_indirect");
549 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
550 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700551 (fDrawIndirectSupport &&
552 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700553 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700554 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800555 } else {
556 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700557 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
558 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
559 fBaseInstanceSupport = fDrawIndirectSupport &&
560 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700561 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800562 }
563
Brian Salomon1edc5b92016-11-29 13:43:46 -0500564 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800565
566 if (contextOptions.fUseShaderSwizzling) {
567 fTextureSwizzleSupport = false;
568 }
569
ethannicholas28ef4452016-03-25 09:26:03 -0700570 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700571 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
572 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700573 fSampleShadingSupport = true;
574 }
575 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
576 fSampleShadingSupport = true;
577 }
578
jvanverth84741b32016-09-30 08:39:02 -0700579 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
580 if (kGL_GrGLStandard == standard) {
581 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
582 fFenceSyncSupport = true;
583 }
584 } else if (version >= GR_GL_VER(3, 0)) {
585 fFenceSyncSupport = true;
586 }
587
Brian Osman0eb4ecb2017-05-16 13:30:11 -0400588 // Safely moving textures between contexts requires fences.
Brian Osman2c2bc112017-02-28 10:02:49 -0500589 fCrossContextTextureSupport = fFenceSyncSupport;
Brian Osman2c2bc112017-02-28 10:02:49 -0500590
brianosman131ff132016-06-07 14:22:44 -0700591 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
592 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
593 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
594 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700595 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700596 (contextOptions.fDoManualMipmapping ||
597 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700598 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
599 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700600 fDoManualMipmapping = true;
601 }
602
brianosman20471892016-12-02 06:43:32 -0800603 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800604 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
605 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800606
Brian Salomon028a9a52017-05-11 11:39:08 -0400607 // See http://crbug.com/710443
608#ifdef SK_BUILD_FOR_MAC
609 if (kIntel6xxx_GrGLRenderer == ctxInfo.renderer()) {
Eric Karlaeaf22b2017-05-18 15:08:09 -0700610 fClearToBoundaryValuesIsBroken = true;
Brian Salomon028a9a52017-05-11 11:39:08 -0400611 }
612#endif
Chris Dalton9926f4b2017-05-17 15:15:50 -0600613 if (kQualcomm_GrGLVendor == ctxInfo.vendor()) {
614 fDrawArraysBaseVertexIsBroken = true;
615 }
Brian Salomon028a9a52017-05-11 11:39:08 -0400616
bsalomoncdee0092016-01-08 13:20:12 -0800617 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
618 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800619 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700620
621 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500622 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000623}
624
egdaniel472d44e2015-10-22 08:20:00 -0700625const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
626 bool isCoreProfile) {
627 switch (generation) {
628 case k110_GrGLSLGeneration:
629 if (kGLES_GrGLStandard == standard) {
630 // ES2s shader language is based on version 1.20 but is version
631 // 1.00 of the ES language.
632 return "#version 100\n";
633 } else {
634 SkASSERT(kGL_GrGLStandard == standard);
635 return "#version 110\n";
636 }
637 case k130_GrGLSLGeneration:
638 SkASSERT(kGL_GrGLStandard == standard);
639 return "#version 130\n";
640 case k140_GrGLSLGeneration:
641 SkASSERT(kGL_GrGLStandard == standard);
642 return "#version 140\n";
643 case k150_GrGLSLGeneration:
644 SkASSERT(kGL_GrGLStandard == standard);
645 if (isCoreProfile) {
646 return "#version 150\n";
647 } else {
648 return "#version 150 compatibility\n";
649 }
650 case k330_GrGLSLGeneration:
651 if (kGLES_GrGLStandard == standard) {
652 return "#version 300 es\n";
653 } else {
654 SkASSERT(kGL_GrGLStandard == standard);
655 if (isCoreProfile) {
656 return "#version 330\n";
657 } else {
658 return "#version 330 compatibility\n";
659 }
660 }
cdalton33ad7012016-02-22 07:55:44 -0800661 case k400_GrGLSLGeneration:
662 SkASSERT(kGL_GrGLStandard == standard);
663 if (isCoreProfile) {
664 return "#version 400\n";
665 } else {
666 return "#version 400 compatibility\n";
667 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500668 case k420_GrGLSLGeneration:
669 SkASSERT(kGL_GrGLStandard == standard);
670 if (isCoreProfile) {
671 return "#version 420\n";
672 }
673 else {
674 return "#version 420 compatibility\n";
675 }
egdaniel472d44e2015-10-22 08:20:00 -0700676 case k310es_GrGLSLGeneration:
677 SkASSERT(kGLES_GrGLStandard == standard);
678 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800679 case k320es_GrGLSLGeneration:
680 SkASSERT(kGLES_GrGLStandard == standard);
681 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700682 }
683 return "<no version>";
684}
685
egdaniel05ded892015-10-26 07:38:05 -0700686void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700687 GrGLStandard standard = ctxInfo.standard();
688 GrGLVersion version = ctxInfo.version();
689
690 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500691 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700692 **************************************************************************/
693
Brian Salomon1edc5b92016-11-29 13:43:46 -0500694 GrShaderCaps* shaderCaps = fShaderCaps.get();
695 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700696 if (kGLES_GrGLStandard == standard) {
697 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500698 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
699 shaderCaps->fFBFetchSupport = true;
700 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
701 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700702 }
703 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
704 // 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 -0500705 shaderCaps->fFBFetchNeedsCustomOutput = false;
706 shaderCaps->fFBFetchSupport = true;
707 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
708 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700709 }
710 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
711 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500712 shaderCaps->fFBFetchNeedsCustomOutput = false;
713 shaderCaps->fFBFetchSupport = true;
714 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
715 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700716 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500717 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700718 }
719
egdaniel7517e452016-09-20 13:00:26 -0700720 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
721 // Galaxy S7.
722 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
723 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500724 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700725 }
726
Brian Salomon1edc5b92016-11-29 13:43:46 -0500727 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700728
cdaltonc08f1962016-02-12 12:14:06 -0800729 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500730 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800731 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500732 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800733 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
734 }
735
736 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500737 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800738 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
739 } else {
740 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500741 shaderCaps->fNoPerspectiveInterpolationSupport = true;
742 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800743 "GL_NV_shader_noperspective_interpolation";
744 }
745 }
746
cdalton33ad7012016-02-22 07:55:44 -0800747 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500748 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800749 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
750 } else {
751 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500752 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800753 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500754 shaderCaps->fMultisampleInterpolationSupport = true;
755 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800756 "GL_OES_shader_multisample_interpolation";
757 }
758 }
759
760 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500761 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800762 } else {
763 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500764 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800765 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500766 shaderCaps->fSampleVariablesSupport = true;
767 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800768 }
769 }
770
Brian Salomon1edc5b92016-11-29 13:43:46 -0500771 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700772 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
773 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500774 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700775 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
776 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800777 }
778
egdaniel472d44e2015-10-22 08:20:00 -0700779 // 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 -0500780 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700781
782 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
783 // function that may require a gradient calculation inside a conditional block may return
784 // undefined results". This appears to be an issue with the 'any' call since even the simple
785 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
786 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500787 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700788
Brian Salomon1edc5b92016-11-29 13:43:46 -0500789 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
790 shaderCaps->fGLSLGeneration,
791 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800792
Brian Salomon1edc5b92016-11-29 13:43:46 -0500793 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
794 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800795 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800796
797 // Frag Coords Convention support is not part of ES
798 // Known issue on at least some Intel platforms:
799 // http://code.google.com/p/skia/issues/detail?id=946
800 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
801 kGLES_GrGLStandard != standard &&
802 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
803 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500804 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800805 }
806
807 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500808 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800809 }
810
cdalton9c3f1432016-03-11 10:07:37 -0800811 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
812 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500813 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800814 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
815 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
816 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500817 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800818 }
819 }
820
Brian Salomon1edc5b92016-11-29 13:43:46 -0500821 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800822 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500823 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800824 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500825 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800826 }
827 }
828
cdaltonc04ce672016-03-11 14:07:38 -0800829 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500830 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800831 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500832 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700833 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
834 }
835
Brian Salomon1edc5b92016-11-29 13:43:46 -0500836 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700837 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500838 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700839 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
840 } else {
841 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
842 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500843 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700844 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500845 shaderCaps->fTexelBufferSupport = true;
846 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700847 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500848 shaderCaps->fTexelBufferSupport = true;
849 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700850 }
cdaltonc04ce672016-03-11 14:07:38 -0800851 }
852 }
853
egdaniel8dcdedc2015-11-11 06:27:20 -0800854 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
855 // the abs first in a separate expression.
856 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500857 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800858 }
859
bsalomon7ea33f52015-11-22 14:51:00 -0800860 // 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 -0800861 // thus must us -1.0 * %s.x to work correctly
862 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500863 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800864 }
egdaniel138c2632016-08-17 10:59:00 -0700865
866 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
867 // the original dst color when reading the outColor even after being written to. By using a
868 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500869 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
870 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700871 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700872
873#ifdef SK_BUILD_FOR_MAC
874 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
875 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
876 // term plan for this WAR is for it to eventually be baked into SkSL.
877 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
878#endif
Brian Osmanac1e4962017-05-25 11:34:38 -0400879
880 // Newer Mali GPUs do incorrect static analysis in specific situations: If there is uniform
881 // color, and that uniform contains an opaque color, and the output of the shader is only based
882 // on that uniform plus soemthing un-trackable (like a texture read), the compiler will deduce
883 // that the shader always outputs opaque values. In that case, it appears to remove the shader
884 // based blending code it normally injects, turning SrcOver into Src. To fix this, we always
885 // insert an extra bit of math on the uniform that confuses the compiler just enough...
886 if (kMaliT_GrGLRenderer == ctxInfo.renderer()) {
887 shaderCaps->fMustObfuscateUniformColor = true;
888 }
egdaniel472d44e2015-10-22 08:20:00 -0700889}
890
kkinnunencfe62e32015-07-01 02:58:50 -0700891bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700892 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
893
894 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700895 return false;
896 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700897
kkinnunencfe62e32015-07-01 02:58:50 -0700898 if (kGL_GrGLStandard == ctxInfo.standard()) {
899 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
900 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
901 return false;
902 }
903 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700904 if (!hasChromiumPathRendering &&
905 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700906 return false;
907 }
908 }
909 // We only support v1.3+ of GL_NV_path_rendering which allows us to
910 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
911 // additions are detected by checking the existence of the function.
912 // We also use *Then* functions that not all drivers might have. Check
913 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800914 if (!gli->fFunctions.fStencilThenCoverFillPath ||
915 !gli->fFunctions.fStencilThenCoverStrokePath ||
916 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
917 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
918 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700919 return false;
920 }
921 return true;
922}
bsalomon1aa20292016-01-22 08:16:09 -0800923
Brian Salomon71d9d842016-11-03 13:42:00 -0400924bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800925 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800926 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800927 std::function<bool ()> bindRenderTarget,
928 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400929 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800930 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400931 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800932 return false;
933 }
bsalomon7928ef62016-01-05 10:26:39 -0800934
Brian Salomonbf7b6202016-11-11 16:08:03 -0500935 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
936 return false;
937 }
938
bsalomon76148af2016-01-12 11:13:47 -0800939 GrGLenum readFormat;
940 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400941 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800942 return false;
943 }
944
bsalomon1aa20292016-01-22 08:16:09 -0800945 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800946 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
947 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
948 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
949 // 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 -0500950 // The manual does not seem to fully match the spec as the spec allows integer formats
951 // when the bound color buffer is an integer buffer. It doesn't specify which integer
952 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500953 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
954 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
955 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800956 return false;
957 }
958 // There is also a set of allowed types, but all the types we use are in the set:
959 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
960 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
961 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
962 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
963 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
964 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
965 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800966 return true;
piotaixre4b23142014-10-02 10:57:53 -0700967 }
bsalomon7928ef62016-01-05 10:26:39 -0800968
bsalomon76148af2016-01-12 11:13:47 -0800969 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500970 switch (fConfigTable[surfaceConfig].fFormatType) {
971 case kNormalizedFixedPoint_FormatType:
972 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
973 return true;
974 }
975 break;
976 case kInteger_FormatType:
977 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
978 return true;
979 }
980 break;
981 case kFloat_FormatType:
982 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
983 return true;
984 }
985 break;
bsalomon7928ef62016-01-05 10:26:39 -0800986 }
987
Brian Salomon71d9d842016-11-03 13:42:00 -0400988 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800989 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400990 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800991 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800992 if (!bindRenderTarget()) {
993 return false;
994 }
995 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
996 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800997 rpFormat->fFormat = format;
998 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800999 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -08001000 }
1001
Brian Salomon71d9d842016-11-03 13:42:00 -04001002 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
1003 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -07001004}
1005
Eric Karl5c779752017-05-08 12:02:07 -07001006void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
1007 const GrGLInterface* gli) {
1008 // We need dual source blending and the ability to disable multisample in order to support mixed
1009 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
1010 // renderer is available and enabled; no other path renderers support this feature.
1011 if (fMultisampleDisableSupport &&
1012 this->shaderCaps()->dualSourceBlendingSupport() &&
1013 this->shaderCaps()->pathRenderingSupport() &&
1014 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
1015 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
Robert Phillips3b3307f2017-05-24 07:44:02 -04001016 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
Eric Karl5c779752017-05-08 12:02:07 -07001017 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
1018 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
1019 kChromium_GrGLDriver == ctxInfo.driver())) {
1020 fDiscardRenderTargetSupport = false;
1021 fInvalidateFBType = kNone_InvalidateFBType;
1022 }
1023 }
1024
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001025 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001026 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1027 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1028 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1029 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1030 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1031 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001032 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001033 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001034 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001035 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001036 fMSFBOType = kStandard_MSFBOType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001037 } else if (ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
1038 fMSFBOType = kEXT_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001039 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1040 fMSFBOType = kES_Apple_MSFBOType;
1041 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001042 } else {
egdanieleed519e2016-01-15 11:36:18 -08001043 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001044 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001045 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1046 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1047 fMSFBOType = kStandard_MSFBOType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001048 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1049 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001050 fMSFBOType = kEXT_MSFBOType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001051 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001052 }
Eric Karl5c779752017-05-08 12:02:07 -07001053
Robert Phillips3b3307f2017-05-24 07:44:02 -04001054 // We disable MSAA across the board for Intel GPUs
1055 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
1056 fMSFBOType = kNone_MSFBOType;
1057 }
1058
Eric Karl5c779752017-05-08 12:02:07 -07001059 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
1060 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
1061 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
1062 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
1063 }
1064 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
1065 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
1066 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
1067 // This is to guard against platforms that may not support as many samples for
1068 // glRasterSamples as they do for framebuffers.
1069 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
1070 }
1071 fMaxColorSampleCount = fMaxStencilSampleCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001072}
1073
cdalton1dd05422015-06-12 09:01:18 -07001074void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001075 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001076
1077 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1078 // for now until its own blacklists can be updated.
1079 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001080 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001081 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001082 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001083 return;
1084 }
1085
1086 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1087 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001088 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001089 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1090 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001091 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001092 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1093 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1094 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1095 return;
1096 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1097 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001098 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001099 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1100 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001101 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001102 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1103 // slow on a particular platform.
1104 } else {
1105 return; // No advanced blend support.
1106 }
1107
1108 SkASSERT(this->advancedBlendEquationSupport());
1109
csmartdalton3b88a032016-08-04 14:43:49 -07001110 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1111 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1112 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001113 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1114 (1 << kColorBurn_GrBlendEquation);
1115 }
joel.liang9764c402015-07-09 19:46:18 -07001116 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1117 // Blacklist color-burn on ARM until the fix is released.
1118 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1119 }
cdalton1dd05422015-06-12 09:01:18 -07001120}
1121
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001122namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001123const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001124}
1125
Eric Karl5c779752017-05-08 12:02:07 -07001126void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001127
1128 // Build up list of legal stencil formats (though perhaps not supported on
1129 // the particular gpu/driver) from most preferred to least.
1130
1131 // these consts are in order of most preferred to least preferred
1132 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1133
1134 static const StencilFormat
1135 // internal Format stencil bits total bits packed?
1136 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1137 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1138 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1139 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001140 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001141 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1142
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001143 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001144 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001145 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001146 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1147 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1148
1149 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1150 // require FBO support we can expect these are legal formats and don't
1151 // check. These also all support the unsized GL_STENCIL_INDEX.
1152 fStencilFormats.push_back() = gS8;
1153 fStencilFormats.push_back() = gS16;
1154 if (supportsPackedDS) {
1155 fStencilFormats.push_back() = gD24S8;
1156 }
1157 fStencilFormats.push_back() = gS4;
1158 if (supportsPackedDS) {
1159 fStencilFormats.push_back() = gDS;
1160 }
1161 } else {
1162 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1163 // for other formats.
1164 // ES doesn't support using the unsized format.
1165
1166 fStencilFormats.push_back() = gS8;
1167 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001168 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1169 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001170 fStencilFormats.push_back() = gD24S8;
1171 }
1172 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1173 fStencilFormats.push_back() = gS4;
1174 }
1175 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001176}
1177
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001178SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001179
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001180 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001181
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001182 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001183 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001184 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001185 i,
1186 fStencilFormats[i].fStencilBits,
1187 fStencilFormats[i].fTotalBits);
1188 }
1189
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001190 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001191 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001192 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001193 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001194 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001195 "IMG MS To Texture",
1196 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001197 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001198 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001199 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001200 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1201 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1202 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1203 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1204 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1205 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001206 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001207
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001208 static const char* kInvalidateFBTypeStr[] = {
1209 "None",
1210 "Discard",
1211 "Invalidate",
1212 };
1213 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1214 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1215 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1216 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001217
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001218 static const char* kMapBufferTypeStr[] = {
1219 "None",
1220 "MapBuffer",
1221 "MapBufferRange",
1222 "Chromium",
1223 };
1224 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1225 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1226 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1227 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1228 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1229
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001230 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001231 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001232 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001233 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001234 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001235 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1236 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1237 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1238 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001239
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001240 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001241 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1242 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001243 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001244 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1245 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001246 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001247 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1248 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1249 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001250 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1251 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001252 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001253 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001254 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001255 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001256 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001257
1258 r.append("Configs\n-------\n");
1259 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1260 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001261 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1262 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001263 i,
1264 fConfigTable[i].fFlags,
1265 fConfigTable[i].fFormats.fBaseInternalFormat,
1266 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001267 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1268 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001269 fConfigTable[i].fFormats.fExternalType,
1270 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001271 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001272 }
1273
jvanverthe9c0fc62015-04-29 11:18:05 -07001274 return r;
1275}
1276
jvanverthe9c0fc62015-04-29 11:18:05 -07001277static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1278 switch (p) {
1279 case kLow_GrSLPrecision:
1280 return GR_GL_LOW_FLOAT;
1281 case kMedium_GrSLPrecision:
1282 return GR_GL_MEDIUM_FLOAT;
1283 case kHigh_GrSLPrecision:
1284 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001285 default:
1286 SkFAIL("Unexpected precision type.");
1287 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001288 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001289}
1290
1291static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1292 switch (type) {
1293 case kVertex_GrShaderType:
1294 return GR_GL_VERTEX_SHADER;
1295 case kGeometry_GrShaderType:
1296 return GR_GL_GEOMETRY_SHADER;
1297 case kFragment_GrShaderType:
1298 return GR_GL_FRAGMENT_SHADER;
1299 }
1300 SkFAIL("Unknown shader type.");
1301 return -1;
1302}
1303
jvanverthcba99b82015-06-24 06:59:57 -07001304void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001305 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001306 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001307 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1308 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1309 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1310 if (kGeometry_GrShaderType != s) {
1311 GrShaderType shaderType = static_cast<GrShaderType>(s);
1312 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001313 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001314 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001315 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1316 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1317 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1318 GrGLint range[2];
1319 GrGLint bits;
1320 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1321 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001322 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1323 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1324 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001325 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001326 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001327 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001328 else if (!shaderCaps->fShaderPrecisionVaries) {
1329 shaderCaps->fShaderPrecisionVaries =
1330 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001331 }
1332 }
1333 }
1334 }
1335 }
1336 }
1337 else {
1338 // 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 -05001339 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001340 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1341 if (kGeometry_GrShaderType != s) {
1342 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001343 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1344 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1345 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001346 }
1347 }
1348 }
1349 }
1350 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1351 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1352 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1353 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001354 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001355 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001356 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1357 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001358 }
1359 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001360 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001361}
1362
bsalomon41e4384e2016-01-08 09:12:44 -08001363bool GrGLCaps::bgraIsInternalFormat() const {
1364 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1365}
1366
bsalomon76148af2016-01-12 11:13:47 -08001367bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1368 GrGLenum* internalFormat, GrGLenum* externalFormat,
1369 GrGLenum* externalType) const {
1370 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1371 externalFormat, externalType)) {
1372 return false;
1373 }
1374 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1375 return true;
1376}
1377
bsalomon76148af2016-01-12 11:13:47 -08001378bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1379 GrGLenum* externalFormat, GrGLenum* externalType) const {
1380 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1381 externalFormat, externalType)) {
1382 return false;
1383 }
1384 return true;
1385}
1386
1387bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
bsalomon76148af2016-01-12 11:13:47 -08001388 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1389 return true;
1390}
1391
1392bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1393 ExternalFormatUsage usage, GrGLenum* externalFormat,
1394 GrGLenum* externalType) const {
1395 SkASSERT(externalFormat && externalType);
bsalomon76148af2016-01-12 11:13:47 -08001396
1397 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1398 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1399
1400 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1401 // made to work in many cases using glPixelStore and what not but is not needed currently.
1402 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1403 return false;
1404 }
1405
1406 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1407 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1408
bsalomone9573312016-01-25 14:33:25 -08001409 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1410 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1411 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1412 // texture, not the red component.
1413 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1414 if (this->textureRedSupport()) {
1415 SkASSERT(GR_GL_RED == *externalFormat);
1416 *externalFormat = GR_GL_ALPHA;
1417 }
1418 }
1419
bsalomon76148af2016-01-12 11:13:47 -08001420 return true;
1421}
1422
brianosman20471892016-12-02 06:43:32 -08001423void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1424 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001425 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001426 /*
1427 Comments on renderability of configs on various GL versions.
1428 OpenGL < 3.0:
1429 no built in support for render targets.
1430 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1431 format RGB, RGBA and NV float formats we don't use.
1432 This is the following:
1433 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1434 RGB10_A2, RGBA12,RGBA16
1435 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1436 since they aren't required by later standards and the driver can simply return
1437 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1438 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1439 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1440 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1441 This adds a lot of additional renderable sized formats, including ALPHA8.
1442 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1443 16F, 32I, 32UI, and 32F variants).
1444 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1445
1446 For both the above extensions we limit ourselves to those that are also required by
1447 OpenGL 3.0.
1448
1449 OpenGL 3.0:
1450 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1451 but are not required to be supported as renderable textures/renderbuffer.
1452 Required renderable color formats:
1453 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1454 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1455 RGB10_A2.
1456 - R11F_G11F_B10F.
1457 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1458 and RG8UI.
1459 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1460 - ALPHA8
1461
1462 OpenGL 3.1, 3.2, 3.3
1463 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1464 OpengGL 3.3, 4.0, 4.1
1465 Adds RGB10_A2UI.
1466 OpengGL 4.2
1467 Adds
1468 - RGB5_A1, RGBA4
1469 - RGB565
1470 OpenGL 4.4
1471 Does away with the separate list and adds a column to the sized internal color format
1472 table. However, no new formats become required color renderable.
1473
1474 ES 2.0
1475 color renderable: RGBA4, RGB5_A1, RGB565
1476 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1477 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1478 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1479 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1480 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1481 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1482
1483 ES 3.0
1484 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1485 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1486 RGB5_A1.
1487 - RGB8 and RGB565.
1488 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1489 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1490 ES 3.1
1491 Adds RGB10_A2, RGB10_A2UI,
1492 ES 3.2
1493 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1494 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001495 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1496 ConfigInfo::kFBOColorAttachment_Flag;
1497 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001498 if (kNone_MSFBOType != fMSFBOType) {
1499 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1500 }
bsalomon41e4384e2016-01-08 09:12:44 -08001501 GrGLStandard standard = ctxInfo.standard();
1502 GrGLVersion version = ctxInfo.version();
1503
cblume790d5132016-02-29 11:13:29 -08001504 bool texStorageSupported = false;
1505 if (kGL_GrGLStandard == standard) {
1506 // The EXT version can apply to either GL or GLES.
1507 texStorageSupported = version >= GR_GL_VER(4,2) ||
1508 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1509 ctxInfo.hasExtension("GL_EXT_texture_storage");
1510 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001511 texStorageSupported = version >= GR_GL_VER(3,0) ||
1512 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001513 }
1514
1515 // TODO: remove after command buffer supports full ES 3.0
1516 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1517 kChromium_GrGLDriver == ctxInfo.driver()) {
1518 texStorageSupported = false;
1519 }
1520
cdalton74b8d322016-04-11 14:47:28 -07001521 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1522
bsalomon30447372015-12-21 09:03:05 -08001523 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1524 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001525 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001526 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001527 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001528 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001529
1530 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1531 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001532 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1533 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001534 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001535 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001536 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1537 if (kGL_GrGLStandard == standard) {
1538 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1539 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001540 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001541 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1542 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1543 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1544 }
egdaniel4999df82016-01-07 17:06:04 -08001545 }
cblume790d5132016-02-29 11:13:29 -08001546 if (texStorageSupported) {
1547 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1548 }
cdalton74b8d322016-04-11 14:47:28 -07001549 if (texelBufferSupport) {
1550 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1551 }
bsalomoncdee0092016-01-08 13:20:12 -08001552 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001553
bsalomon76148af2016-01-12 11:13:47 -08001554 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1555 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001556 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001557 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001558 if (kGL_GrGLStandard == standard) {
1559 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1560 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1561 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1562 // Since the internal format is RGBA8, it is also renderable.
1563 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1564 allRenderFlags;
1565 }
1566 } else {
1567 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1568 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1569 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1570 // The APPLE extension doesn't make this renderable.
1571 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1572 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1573 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1574 // Though, that seems to not be the case if the texture storage extension is
1575 // present. The specs don't exactly make that clear.
1576 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1577 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1578 }
1579 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1580 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001581 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001582 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001583 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001584 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1585 ConfigInfo::kRenderableWithMSAA_Flag;
1586 }
1587 }
1588 }
cblume790d5132016-02-29 11:13:29 -08001589 if (texStorageSupported) {
1590 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1591 }
bsalomoncdee0092016-01-08 13:20:12 -08001592 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001593
brianosmana6359362016-03-21 06:55:37 -07001594 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001595 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001596 if (kGL_GrGLStandard == standard) {
1597 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001598 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001599 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1600 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1601 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001602 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001603 }
1604 }
1605 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001606 if (fSRGBSupport) {
1607 fSRGBWriteControl = true;
1608 }
bsalomon41e4384e2016-01-08 09:12:44 -08001609 } else {
brianosman20471892016-12-02 06:43:32 -08001610 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1611#if defined(SK_CPU_X86)
1612 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1613 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1614 // blacklist that device (and any others that might be sharing the same driver).
1615 fSRGBSupport = false;
1616 }
1617#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001618 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1619 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001620 // See https://bug.skia.org/5329 for Adreno4xx issue.
1621 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1622 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001623 }
brianosman20471892016-12-02 06:43:32 -08001624 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1625 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1626 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001627 fSRGBSupport = false;
1628 }
brianosman20471892016-12-02 06:43:32 -08001629
1630 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1631 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1632 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1633 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1634 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1635 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1636 // affects Windows.
1637 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1638 fSRGBSupport = false;
1639 }
1640
bsalomon30447372015-12-21 09:03:05 -08001641 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1642 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1643 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1644 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001645 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1646 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001647 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001648 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001649 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001650 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1651 allRenderFlags;
1652 }
cblume790d5132016-02-29 11:13:29 -08001653 if (texStorageSupported) {
1654 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1655 }
bsalomoncdee0092016-01-08 13:20:12 -08001656 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
brianosmana6359362016-03-21 06:55:37 -07001657 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1658 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1659 // is in this format, for example).
1660 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1661 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1662 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1663 // external format is GL_BGRA.
1664 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1665 GR_GL_BGRA;
1666 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1667 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001668 if (fSRGBSupport && kGL_GrGLStandard == standard) {
brianosmana6359362016-03-21 06:55:37 -07001669 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Robert Phillips3b3307f2017-05-24 07:44:02 -04001670 allRenderFlags;
brianosmana6359362016-03-21 06:55:37 -07001671 }
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001672
brianosmana6359362016-03-21 06:55:37 -07001673 if (texStorageSupported) {
1674 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1675 }
1676 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1677
Brian Salomonbf7b6202016-11-11 16:08:03 -05001678 bool hasIntegerTextures;
1679 if (standard == kGL_GrGLStandard) {
1680 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1681 ctxInfo.hasExtension("GL_EXT_texture_integer");
1682 } else {
1683 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1684 }
1685 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1686 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1687 hasIntegerTextures = false;
1688 }
1689 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1690 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1691 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1692 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1693 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1694 // We currently only support using integer textures as srcs, not for rendering (even though GL
1695 // allows it).
1696 if (hasIntegerTextures) {
1697 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1698 ConfigInfo::kFBOColorAttachment_Flag;
1699 if (texStorageSupported) {
1700 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1701 ConfigInfo::kCanUseTexStorage_Flag;
1702 }
1703 }
1704
bsalomon30447372015-12-21 09:03:05 -08001705 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1706 if (this->ES2CompatibilitySupport()) {
1707 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1708 } else {
1709 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1710 }
bsalomon76148af2016-01-12 11:13:47 -08001711 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1712 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001713 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001714 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001715 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1716 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001717 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001718 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1719 }
1720 } else {
1721 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1722 }
cblume790d5132016-02-29 11:13:29 -08001723 // 565 is not a sized internal format on desktop GL. So on desktop with
1724 // 565 we always use an unsized internal format to let the system pick
1725 // the best sized format to convert the 565 data to. Since TexStorage
1726 // only allows sized internal formats we disallow it.
1727 //
1728 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1729 // update.
1730 if (texStorageSupported && kGL_GrGLStandard != standard) {
1731 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1732 }
bsalomoncdee0092016-01-08 13:20:12 -08001733 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001734
1735 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1736 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001737 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1738 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001739 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001740 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001741 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1742 if (kGL_GrGLStandard == standard) {
1743 if (version >= GR_GL_VER(4, 2)) {
1744 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1745 }
1746 } else {
1747 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1748 }
cblume790d5132016-02-29 11:13:29 -08001749 if (texStorageSupported) {
1750 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1751 }
bsalomoncdee0092016-01-08 13:20:12 -08001752 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001753
Brian Osmanf4faccd2017-01-10 16:53:58 -05001754 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1755 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1756 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001757 if (this->textureRedSupport()) {
1758 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1759 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001760 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1761 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001762 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001763 if (texelBufferSupport) {
1764 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1765 }
bsalomon30447372015-12-21 09:03:05 -08001766 } else {
1767 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1768 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001769 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1770 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001771 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001772 }
bsalomon40170072016-05-05 14:40:03 -07001773 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001774 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1775 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001776 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001777 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1778 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1779 }
cblume790d5132016-02-29 11:13:29 -08001780 if (texStorageSupported) {
1781 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1782 }
bsalomon41e4384e2016-01-08 09:12:44 -08001783
Brian Osmanf4faccd2017-01-10 16:53:58 -05001784 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1785 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1786 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001787 if (this->textureRedSupport()) {
1788 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1789 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1790 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1791 GR_GL_RED;
1792 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1793 if (texelBufferSupport) {
1794 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1795 }
1796 } else {
1797 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1798 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1799 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1800 GR_GL_LUMINANCE;
1801 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1802 }
Brian Osman986563b2017-01-10 14:20:02 -05001803#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1804 if (this->textureRedSupport() ||
1805 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1806 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1807 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1808 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1809 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1810 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1811 }
1812#endif
1813 if (texStorageSupported) {
1814 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1815 }
1816
bsalomon41e4384e2016-01-08 09:12:44 -08001817 // Check for [half] floating point texture support
1818 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1819 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1820 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1821 bool hasFPTextures = false;
1822 bool hasHalfFPTextures = false;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001823 bool rgIsTexturable = false;
bsalomon41e4384e2016-01-08 09:12:44 -08001824 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001825 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001826
1827 if (kGL_GrGLStandard == standard) {
1828 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1829 hasFPTextures = true;
1830 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001831 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001832 }
1833 } else {
1834 if (version >= GR_GL_VER(3, 1)) {
1835 hasFPTextures = true;
1836 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001837 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001838 } else {
1839 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1840 ctxInfo.hasExtension("GL_OES_texture_float")) {
1841 hasFPTextures = true;
1842 }
1843 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1844 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1845 hasHalfFPTextures = true;
1846 }
1847 }
1848 }
bsalomon30447372015-12-21 09:03:05 -08001849
csmartdalton6aa0e112017-02-08 16:14:11 -05001850 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1851 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1852 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1853 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1854 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1855 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1856 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1857 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1858 if (hasFPTextures) {
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001859 fConfigTable[fpconfig].fFlags = rgIsTexturable ? ConfigInfo::kTextureable_Flag : 0;
csmartdalton6aa0e112017-02-08 16:14:11 -05001860 // For now we only enable rendering to float on desktop, because on ES we'd have to
1861 // solve many precision issues and no clients actually want this yet.
1862 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1863 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1864 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1865 }
bsalomon41e4384e2016-01-08 09:12:44 -08001866 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001867 if (texStorageSupported) {
1868 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1869 }
1870 if (texelBufferSupport) {
1871 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1872 }
1873 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001874 }
bsalomon30447372015-12-21 09:03:05 -08001875
1876 if (this->textureRedSupport()) {
1877 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1878 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001879 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1880 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001881 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001882 if (texelBufferSupport) {
1883 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1884 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1885 }
bsalomon30447372015-12-21 09:03:05 -08001886 } else {
1887 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1888 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001889 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1890 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001891 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001892 }
Brian Osman3a887252016-11-17 13:27:31 -05001893 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1894 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1895 // returned when we query, but that turns into a bigger refactor, so just work around it.
1896 if (kGL_GrGLStandard == ctxInfo.standard() ||
1897 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001898 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1899 } else {
1900 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1901 }
bsalomon7928ef62016-01-05 10:26:39 -08001902 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001903 if (texStorageSupported) {
1904 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1905 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001906 if (hasHalfFPTextures) {
1907 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1908 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1909 // GL_RED internal format.
1910 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1911 (this->textureRedSupport() &&
1912 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1913 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1914 }
1915 }
bsalomon30447372015-12-21 09:03:05 -08001916
1917 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1918 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001919 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1920 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001921 // See comment above, re: ANGLE and ES3.
1922 if (kGL_GrGLStandard == ctxInfo.standard() ||
1923 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001924 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1925 } else {
1926 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1927 }
bsalomon7928ef62016-01-05 10:26:39 -08001928 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001929 if (hasHalfFPTextures) {
1930 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1931 // ES requires 3.2 or EXT_color_buffer_half_float.
1932 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1933 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1934 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1935 }
1936 }
cblume790d5132016-02-29 11:13:29 -08001937 if (texStorageSupported) {
1938 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1939 }
cdalton74b8d322016-04-11 14:47:28 -07001940 if (texelBufferSupport) {
1941 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1942 }
bsalomoncdee0092016-01-08 13:20:12 -08001943 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001944
bsalomon30447372015-12-21 09:03:05 -08001945 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1946
1947 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001948 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1949 ctxInfo.version() >= GR_GL_VER(3,0));
1950 // All ES versions (thus far) require sized internal formats for render buffers.
1951 // TODO: Always use sized internal format?
1952 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1953
bsalomon30447372015-12-21 09:03:05 -08001954 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001955 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1956 // param to glTex[Sub]Image.
1957 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1958 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1959 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1960 fConfigTable[i].fFormats.fSizedInternalFormat :
1961 fConfigTable[i].fFormats.fBaseInternalFormat;
1962 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001963 fConfigTable[i].fFormats.fSizedInternalFormat :
1964 fConfigTable[i].fFormats.fBaseInternalFormat;
1965 }
1966 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1967 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1968 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1969 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1970 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001971 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001972 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001973
1974 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1975 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1976 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1977 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001978 }
1979
1980 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1981 // as a base format.
1982 // GL_EXT_texture_format_BGRA8888:
1983 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1984 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1985 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001986 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001987 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1988 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1989 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001990 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001991 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1992 }
1993
bsalomoncdee0092016-01-08 13:20:12 -08001994 // If we don't have texture swizzle support then the shader generator must insert the
1995 // swizzle into shader code.
1996 if (!this->textureSwizzleSupport()) {
1997 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001998 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08001999 }
2000 }
2001
bsalomon7f9b2e42016-01-12 13:29:26 -08002002 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2003 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2004 // gets written to the single component.
2005 if (this->textureRedSupport()) {
2006 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2007 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2008 if (GrPixelConfigIsAlphaOnly(config) &&
2009 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002010 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002011 }
2012 }
2013 }
2014
Brian Salomonf9f45122016-11-29 11:59:17 -05002015 // We currently only support images on rgba textures formats. We could add additional formats
2016 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2017 // (e.g. where we use GL_RED textures to implement alpha configs).
2018 if (this->shaderCaps()->imageLoadStoreSupport()) {
2019 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2020 ConfigInfo::kCanUseAsImageStorage_Flag;
2021 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2022 // immutable via TexStorage. We create non-integer textures as mutable textures using
2023 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2024 // storage support for non-integer textures.
2025 if (kGL_GrGLStandard == ctxInfo.standard()) {
2026 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2027 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2028 ConfigInfo::kCanUseAsImageStorage_Flag;
2029 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2030 }
2031 }
2032
bsalomon30447372015-12-21 09:03:05 -08002033#ifdef SK_DEBUG
2034 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002035 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002036 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002037 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2038 // renderable.
2039 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2040 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002041 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2042 fConfigTable[i].fFormats.fBaseInternalFormat);
2043 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002044 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002045 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2046 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2047 fConfigTable[i].fFormats.fExternalFormat[j]);
2048 }
2049 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002050 }
2051#endif
2052}
2053
Robert Phillipsbf25d432017-04-07 10:08:53 -04002054bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Eric Karl74480882017-04-03 14:49:05 -07002055 bool* rectsMustMatch, bool* disallowSubrect) const {
2056 // By default, we don't require rects to match.
2057 *rectsMustMatch = false;
2058
2059 // By default, we allow subrects.
2060 *disallowSubrect = false;
2061
Brian Salomon467921e2017-03-06 16:17:12 -05002062 // If the src is a texture, we can implement the blit as a draw assuming the config is
2063 // renderable.
Robert Phillipsbf25d432017-04-07 10:08:53 -04002064 if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) {
2065 desc->fOrigin = kBottomLeft_GrSurfaceOrigin;
Brian Salomon467921e2017-03-06 16:17:12 -05002066 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2067 desc->fConfig = src->config();
2068 return true;
2069 }
2070
Robert Phillipsbf25d432017-04-07 10:08:53 -04002071 {
2072 // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were
2073 // wrapped. In that case the proxy would already be instantiated.
2074 const GrTexture* srcTexture = src->priv().peekTexture();
2075 const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture);
2076 if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) {
2077 // Not supported for FBO blit or CopyTexSubImage
2078 return false;
2079 }
Brian Salomon467921e2017-03-06 16:17:12 -05002080 }
2081
2082 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2083 // possible and we return false to fallback to creating a render target dst for render-to-
2084 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2085 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2086 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002087 bool rectsMustMatchForBlitFramebuffer = false;
2088 bool disallowSubrectForBlitFramebuffer = false;
2089 if (src->numColorSamples() &&
2090 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2091 rectsMustMatchForBlitFramebuffer = true;
2092 disallowSubrectForBlitFramebuffer = true;
2093 // Mirroring causes rects to mismatch later, don't allow it.
2094 originForBlitFramebuffer = src->origin();
2095 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2096 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2097 rectsMustMatchForBlitFramebuffer = true;
2098 // Mirroring causes rects to mismatch later, don't allow it.
2099 originForBlitFramebuffer = src->origin();
2100 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002101 originForBlitFramebuffer = src->origin();
2102 }
2103
2104 // Check for format issues with glCopyTexSubImage2D
2105 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2106 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2107 // then we set up for that, otherwise fail.
2108 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2109 desc->fOrigin = originForBlitFramebuffer;
2110 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002111 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2112 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002113 return true;
2114 }
2115 return false;
2116 }
2117
Robert Phillipsbf25d432017-04-07 10:08:53 -04002118 {
Brian Salomon63e79732017-05-15 21:23:13 -04002119 bool srcIsMSAARenderbuffer = GrFSAAType::kUnifiedMSAA == src->fsaaType() &&
2120 this->usesMSAARenderBuffers();
Robert Phillipsbf25d432017-04-07 10:08:53 -04002121 if (srcIsMSAARenderbuffer) {
2122 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO
2123 // blit or fail.
2124 if (this->canConfigBeFBOColorAttachment(src->config())) {
2125 desc->fOrigin = originForBlitFramebuffer;
2126 desc->fConfig = src->config();
2127 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2128 *disallowSubrect = disallowSubrectForBlitFramebuffer;
2129 return true;
2130 }
2131 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05002132 }
Brian Salomon467921e2017-03-06 16:17:12 -05002133 }
2134
2135 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2136 desc->fConfig = src->config();
2137 desc->fOrigin = src->origin();
2138 desc->fFlags = kNone_GrSurfaceFlags;
2139 return true;
2140}
2141
csmartdaltone0d36292016-07-29 08:14:20 -07002142void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2143 if (options.fEnableInstancedRendering) {
2144 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2145#ifndef SK_BUILD_FOR_MAC
2146 // OS X doesn't seem to write correctly to floating point textures when using
2147 // glDraw*Indirect, regardless of the underlying GPU.
2148 fAvoidInstancedDrawsToFPTargets = true;
2149#endif
2150 }
2151}