blob: a39b744574b30be69518853231d055e3b5685d52 [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;
cdalton06604b92016-02-05 10:09:51 -080041 fDrawIndirectSupport = false;
42 fMultiDrawIndirectSupport = false;
43 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000044 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070045 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080046 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080047 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070048 fRGBA8888PixelsOpsAreSlow = false;
49 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080050 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080051 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070052 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080053 fSRGBDecodeDisableSupport = false;
brianosman851c2382016-12-07 10:03:25 -080054 fSRGBDecodeDisableAffectsMipmaps = false;
Eric Karlaeaf22b2017-05-18 15:08:09 -070055 fClearToBoundaryValuesIsBroken = false;
Brian Salomond17b4a62017-05-23 16:53:47 -040056 fClearTextureSupport = false;
Chris Dalton9926f4b2017-05-17 15:15:50 -060057 fDrawArraysBaseVertexIsBroken = false;
piotaixre4b23142014-10-02 10:57:53 -070058
Brian Salomone5e7eb12016-10-14 16:18:33 -040059 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080060
Brian Salomon94efbf52016-11-29 13:43:05 -050061 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070062
cdalton4cd67132015-06-10 19:23:46 -070063 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000064}
65
cdalton4cd67132015-06-10 19:23:46 -070066void GrGLCaps::init(const GrContextOptions& contextOptions,
67 const GrGLContextInfo& ctxInfo,
68 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000069 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000070 GrGLVersion version = ctxInfo.version();
71
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000072 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000073 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
74 &fMaxFragmentUniformVectors);
75 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000076 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000077 GrGLint max;
78 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
79 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000080 if (version >= GR_GL_VER(3, 2)) {
81 GrGLint profileMask;
82 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
83 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
84 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000085 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000086 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000087
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000088 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000089 fUnpackRowLengthSupport = true;
90 fUnpackFlipYSupport = false;
91 fPackRowLengthSupport = true;
92 fPackFlipYSupport = false;
93 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000094 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
95 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000096 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000097 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
98 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000099 fPackFlipYSupport =
100 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
101 }
102
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000103 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000104 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
105
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000106 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700107 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
108 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
109 ctxInfo.hasExtension("GL_NV_texture_barrier");
110 } else {
111 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
112 }
113
cdaltoneb79eea2016-02-26 10:39:34 -0800114 if (kGL_GrGLStandard == standard) {
115 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
116 ctxInfo.hasExtension("GL_ARB_texture_multisample");
117 } else {
118 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
119 }
120
Brian Salomon0ee6f952017-01-19 15:52:24 -0500121 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800122 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500123 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800124 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000125 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
126 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800127 } else {
128 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
129 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000130 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000131 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000132 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000133 ctxInfo.hasExtension("GL_ARB_imaging");
134
egdaniel9250d242015-05-18 13:04:26 -0700135 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
136 // Thus we are blacklisting this extension for now on Adreno4xx devices.
137 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
138 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
139 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
140 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000141 fDiscardRenderTargetSupport = true;
142 fInvalidateFBType = kInvalidate_InvalidateFBType;
143 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
144 fDiscardRenderTargetSupport = true;
145 fInvalidateFBType = kDiscard_InvalidateFBType;
146 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000147
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000148 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
149 fFullClearIsFree = true;
150 }
151
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000152 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000153 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800154 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
155 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000156 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000157 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
158 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000159 }
160
cdalton626e1ff2015-06-12 13:56:46 -0700161 if (kGL_GrGLStandard == standard) {
162 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
163 } else {
164 fDirectStateAccessSupport = false;
165 }
166
167 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
168 fDebugSupport = true;
169 } else {
170 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
171 }
172
jvanverth3f801cb2014-12-16 09:49:38 -0800173 if (kGL_GrGLStandard == standard) {
174 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
175 }
176 else {
177 fES2CompatibilitySupport = true;
178 }
179
cdalton0edea2c2015-05-21 08:27:44 -0700180 if (kGL_GrGLStandard == standard) {
181 fMultisampleDisableSupport = true;
182 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700183 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700184 }
185
kkinnunend94708e2015-07-30 22:47:04 -0700186 if (kGL_GrGLStandard == standard) {
Chris Dalton1d616352017-05-31 12:51:23 -0600187 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
188 // instanced arrays, but we could make this more granular if we wanted
189 fInstanceAttribSupport =
190 version >= GR_GL_VER(3, 2) ||
191 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
192 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
193 } else {
194 fInstanceAttribSupport =
195 version >= GR_GL_VER(3, 0) ||
196 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
197 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
198 }
199
200 if (kGL_GrGLStandard == standard) {
kkinnunend94708e2015-07-30 22:47:04 -0700201 if (version >= GR_GL_VER(3, 0)) {
202 fBindFragDataLocationSupport = true;
203 }
204 } else {
205 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
206 fBindFragDataLocationSupport = true;
207 }
joshualittc1f56b52015-06-22 12:31:31 -0700208 }
209
joshualitt7bdd70a2015-10-01 06:28:11 -0700210 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
211
kkinnunene06ed252016-02-16 23:15:40 -0800212 if (kGL_GrGLStandard == standard) {
213 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
214 // We also require textureSize() support for rectangle 2D samplers which was added in
215 // GLSL 1.40.
216 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
217 fRectangleTextureSupport = true;
218 }
bsalomone179a912016-01-20 06:18:10 -0800219 }
kkinnunene06ed252016-02-16 23:15:40 -0800220 } else {
221 // Command buffer exposes this in GL ES context for Chromium reasons,
222 // but it should not be used. Also, at the time of writing command buffer
223 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800224 }
225
bsalomoncdee0092016-01-08 13:20:12 -0800226 if (kGL_GrGLStandard == standard) {
227 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
228 fTextureSwizzleSupport = true;
229 }
230 } else {
231 if (version >= GR_GL_VER(3,0)) {
232 fTextureSwizzleSupport = true;
233 }
234 }
235
cblume09bd2c02016-03-01 14:08:28 -0800236 if (kGL_GrGLStandard == standard) {
237 fMipMapLevelAndLodControlSupport = true;
238 } else if (kGLES_GrGLStandard == standard) {
239 if (version >= GR_GL_VER(3,0)) {
240 fMipMapLevelAndLodControlSupport = true;
241 }
242 }
243
bsalomon88c7b982015-07-31 11:20:16 -0700244#ifdef SK_BUILD_FOR_WIN
245 // We're assuming that on Windows Chromium we're using ANGLE.
246 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
247 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700248 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700249 fRGBA8888PixelsOpsAreSlow = isANGLE;
250 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
251 // check DX11 ANGLE.
252 fPartialFBOReadIsSlow = isANGLE;
253#endif
254
ericrkb4ecabd2016-03-11 15:18:20 -0800255 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
256 bool isMAC = false;
257#ifdef SK_BUILD_FOR_MAC
258 isMAC = true;
259#endif
260
261 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
262 // vis-versa.
263 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
264
Brian Salomond17b4a62017-05-23 16:53:47 -0400265 if (kGL_GrGLStandard == standard) {
266 if (version >= GR_GL_VER(4,4) || ctxInfo.hasExtension("GL_ARB_clear_texture")) {
267 // glClearTexImage seems to have a bug in NVIDIA drivers that was fixed sometime between
268 // 340.96 and 367.57.
269 if (ctxInfo.driver() != kNVIDIA_GrGLDriver ||
270 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(367, 57)) {
271 fClearTextureSupport = true;
272 }
273 }
274 } else if (ctxInfo.hasExtension("GL_EXT_clear_texture")) {
275 // Calling glClearTexImage crashes on the NexusPlayer.
276 if (kPowerVRRogue_GrGLRenderer != ctxInfo.renderer()) {
277 fClearTextureSupport = true;
278 }
279 }
280
cdalton4cd67132015-06-10 19:23:46 -0700281 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700282 * GrShaderCaps fields
283 **************************************************************************/
284
egdaniel0a482332015-10-26 08:59:10 -0700285 // This must be called after fCoreProfile is set on the GrGLCaps
286 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500287 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700288
csmartdalton008b9d82017-02-22 12:00:42 -0700289 if (!contextOptions.fSuppressPathRendering) {
290 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
291 }
egdaniel05ded892015-10-26 07:38:05 -0700292
293 // For now these two are equivalent but we could have dst read in shader via some other method.
294 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500295 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700296
297 // Enable supported shader-related caps
298 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500299 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700300 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
301 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500302 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700303 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500304 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700305 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500306 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800307 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700308 }
309 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500310 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700311
Brian Salomon1edc5b92016-11-29 13:43:46 -0500312 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700313 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800314
csmartdalton1d2aed02017-02-15 21:43:20 -0700315 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
316
Brian Salomon1edc5b92016-11-29 13:43:46 -0500317 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800318 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700319 }
320
cdalton9c3f1432016-03-11 10:07:37 -0800321 // Protect ourselves against tracking huge amounts of texture state.
322 static const uint8_t kMaxSaneSamplers = 32;
323 GrGLint maxSamplers;
324 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500325 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
326 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800327 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500328 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800329 }
330 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500331 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800332 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500333 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800334
Brian Salomonf26f7a02016-11-15 14:05:01 -0500335 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500336 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
337 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500338 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500339 shaderCaps->fImageLoadStoreSupport = true;
340 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500341 }
342 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500343 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500344 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500345 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500346 // Protect ourselves against tracking huge amounts of image state.
347 static constexpr int kMaxSaneImages = 4;
348 GrGLint maxUnits;
349 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500350 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500351 &shaderCaps->fMaxVertexImageStorages);
352 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500353 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500354 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500355 }
356 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500357 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500358 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500359 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500360 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500361 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
362 maxUnits), kMaxSaneImages);
363 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
364 shaderCaps->fMaxVertexImageStorages);
365 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
366 shaderCaps->fMaxGeometryImageStorages);
367 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
368 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500369 }
370
csmartdalton485a1202016-07-13 10:16:32 -0700371 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
372 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
373 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
374 // limit this decision to specific GPU families rather than basing it on the vendor alone.
375 if (!GR_GL_MUST_USE_VBO &&
376 !fIsCoreProfile &&
377 (kARM_GrGLVendor == ctxInfo.vendor() ||
378 kImagination_GrGLVendor == ctxInfo.vendor() ||
379 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
380 fPreferClientSideDynamicBuffers = true;
381 }
382
Eric Karl5c779752017-05-08 12:02:07 -0700383 if (!contextOptions.fAvoidStencilBuffers) {
384 // To reduce surface area, if we avoid stencil buffers, we also disable MSAA.
385 this->initFSAASupport(contextOptions, ctxInfo, gli);
386 this->initStencilSupport(ctxInfo);
387 }
Greg Danielcd2f5122017-05-25 10:50:40 -0400388
389 // Setup blit framebuffer
390 if (kGL_GrGLStandard != ctxInfo.standard()) {
391 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
392 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
393 kNoMSAADst_BlitFramebufferFlag |
394 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
395 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
396 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
397 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
398 // limitations.
399 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
400 kResolveMustBeFull_BlitFrambufferFlag |
401 kNoMSAADst_BlitFramebufferFlag |
402 kNoFormatConversion_BlitFramebufferFlag |
403 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
404 }
405 } else {
406 if (fUsesMixedSamples ||
407 ctxInfo.version() >= GR_GL_VER(3,0) ||
408 ctxInfo.hasExtension("GL_ARB_framebuffer_object") ||
409 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
410 fBlitFramebufferFlags = 0;
411 }
412 }
413
cdalton1dd05422015-06-12 09:01:18 -0700414 this->initBlendEqationSupport(ctxInfo);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000415
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000416 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000417 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
418 // extension includes glMapBuffer.
419 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
420 fMapBufferFlags |= kSubset_MapFlag;
421 fMapBufferType = kMapBufferRange_MapBufferType;
422 } else {
423 fMapBufferType = kMapBuffer_MapBufferType;
424 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000425 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000426 // Unextended GLES2 doesn't have any buffer mapping.
427 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800428 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800429 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
430 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800431 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
432 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
433 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000434 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
435 fMapBufferFlags = kCanMap_MapFlag;
436 fMapBufferType = kMapBuffer_MapBufferType;
437 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000438 }
439
jvanverthd7a2c1f2015-12-07 07:36:44 -0800440 if (kGL_GrGLStandard == standard) {
441 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
442 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700443 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800444 } else {
445 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
446 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700447 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
448 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800449 }
450 }
451
joshualitte5b74c62015-06-01 14:17:47 -0700452 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
453 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700454 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700455#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500456 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
457 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
458 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700459 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700460#else
cdalton397536c2016-03-25 12:15:03 -0700461 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700462#endif
joshualitte5b74c62015-06-01 14:17:47 -0700463 }
464
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000465 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000466 fNPOTTextureTileSupport = true;
467 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000468 } else {
469 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000470 // ES3 has no limitations.
471 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
472 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000473 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
474 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
475 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
476 // to alllow arbitrary wrap modes, however.
477 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000478 }
479
bsalomone72bd022015-10-26 07:33:03 -0700480 // Using MIPs on this GPU seems to be a source of trouble.
481 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
482 fMipMapSupport = false;
483 }
484
bsalomon@google.combcce8922013-03-25 15:38:39 +0000485 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
486 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
487 // Our render targets are always created with textures as the color
488 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000489 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000490
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000491 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
492
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000493 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700494 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000495
robertphillips1b8e1b52015-06-24 06:54:10 -0700496#if 0
497 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
498 kQualcomm_GrGLVendor != ctxInfo.vendor();
499#endif
500
csmartdalton9bc11872016-08-09 12:42:47 -0700501 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
502 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700503 }
504
bsalomon63b21962014-11-05 07:05:34 -0800505 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800506 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400507 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
508 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800509 fUseDrawInsteadOfClear = true;
510 }
511
joshualitt83bc2292015-06-18 14:18:02 -0700512 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomonfdd11702017-05-31 15:59:40 +0000513 fUseDrawInsteadOfPartialRenderTargetWrite = true;
joshualitt83bc2292015-06-18 14:18:02 -0700514 }
515
bsalomonbabafcc2016-02-16 11:36:47 -0800516 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
517 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomonfdd11702017-05-31 15:59:40 +0000518 fUseDrawInsteadOfPartialRenderTargetWrite = true;
bsalomonbabafcc2016-02-16 11:36:47 -0800519 fUseDrawInsteadOfAllRenderTargetWrites = true;
520 }
521
robertphillips63926682015-08-20 09:39:02 -0700522#ifdef SK_BUILD_FOR_WIN
523 // On ANGLE deferring flushes can lead to GPU starvation
524 fPreferVRAMUseOverFlushes = !isANGLE;
525#endif
526
bsalomon7dea7b72015-08-19 08:26:51 -0700527 if (kChromium_GrGLDriver == ctxInfo.driver()) {
528 fMustClearUploadedBufferData = true;
529 }
530
bsalomond08ea5f2015-02-20 06:58:13 -0800531 if (kGL_GrGLStandard == standard) {
532 // ARB allows mixed size FBO attachments, EXT does not.
533 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
534 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
535 fOversizedStencilSupport = true;
536 } else {
537 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
538 }
539 } else {
540 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
541 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
542 }
543
joshualitt58001552015-06-26 12:46:36 -0700544 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700545 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
546 ctxInfo.hasExtension("GL_ARB_draw_indirect");
547 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
548 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700549 (fDrawIndirectSupport &&
550 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700551 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700552 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800553 } else {
554 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700555 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
556 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
557 fBaseInstanceSupport = fDrawIndirectSupport &&
558 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700559 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800560 }
561
Brian Salomon1edc5b92016-11-29 13:43:46 -0500562 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800563
564 if (contextOptions.fUseShaderSwizzling) {
565 fTextureSwizzleSupport = false;
566 }
567
ethannicholas28ef4452016-03-25 09:26:03 -0700568 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700569 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
570 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700571 fSampleShadingSupport = true;
572 }
573 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
574 fSampleShadingSupport = true;
575 }
576
jvanverth84741b32016-09-30 08:39:02 -0700577 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
578 if (kGL_GrGLStandard == standard) {
579 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
580 fFenceSyncSupport = true;
581 }
582 } else if (version >= GR_GL_VER(3, 0)) {
583 fFenceSyncSupport = true;
584 }
585
Brian Osman0eb4ecb2017-05-16 13:30:11 -0400586 // Safely moving textures between contexts requires fences.
Brian Osman2c2bc112017-02-28 10:02:49 -0500587 fCrossContextTextureSupport = fFenceSyncSupport;
Brian Osman2c2bc112017-02-28 10:02:49 -0500588
brianosman131ff132016-06-07 14:22:44 -0700589 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
590 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
591 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
592 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700593 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700594 (contextOptions.fDoManualMipmapping ||
595 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700596 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
597 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700598 fDoManualMipmapping = true;
599 }
600
brianosman20471892016-12-02 06:43:32 -0800601 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800602 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
603 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800604
Brian Salomon028a9a52017-05-11 11:39:08 -0400605 // See http://crbug.com/710443
606#ifdef SK_BUILD_FOR_MAC
607 if (kIntel6xxx_GrGLRenderer == ctxInfo.renderer()) {
Eric Karlaeaf22b2017-05-18 15:08:09 -0700608 fClearToBoundaryValuesIsBroken = true;
Brian Salomon028a9a52017-05-11 11:39:08 -0400609 }
610#endif
Chris Dalton9926f4b2017-05-17 15:15:50 -0600611 if (kQualcomm_GrGLVendor == ctxInfo.vendor()) {
612 fDrawArraysBaseVertexIsBroken = true;
613 }
Brian Salomon028a9a52017-05-11 11:39:08 -0400614
bsalomoncdee0092016-01-08 13:20:12 -0800615 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
616 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800617 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700618
619 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500620 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000621}
622
egdaniel472d44e2015-10-22 08:20:00 -0700623const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
624 bool isCoreProfile) {
625 switch (generation) {
626 case k110_GrGLSLGeneration:
627 if (kGLES_GrGLStandard == standard) {
628 // ES2s shader language is based on version 1.20 but is version
629 // 1.00 of the ES language.
630 return "#version 100\n";
631 } else {
632 SkASSERT(kGL_GrGLStandard == standard);
633 return "#version 110\n";
634 }
635 case k130_GrGLSLGeneration:
636 SkASSERT(kGL_GrGLStandard == standard);
637 return "#version 130\n";
638 case k140_GrGLSLGeneration:
639 SkASSERT(kGL_GrGLStandard == standard);
640 return "#version 140\n";
641 case k150_GrGLSLGeneration:
642 SkASSERT(kGL_GrGLStandard == standard);
643 if (isCoreProfile) {
644 return "#version 150\n";
645 } else {
646 return "#version 150 compatibility\n";
647 }
648 case k330_GrGLSLGeneration:
649 if (kGLES_GrGLStandard == standard) {
650 return "#version 300 es\n";
651 } else {
652 SkASSERT(kGL_GrGLStandard == standard);
653 if (isCoreProfile) {
654 return "#version 330\n";
655 } else {
656 return "#version 330 compatibility\n";
657 }
658 }
cdalton33ad7012016-02-22 07:55:44 -0800659 case k400_GrGLSLGeneration:
660 SkASSERT(kGL_GrGLStandard == standard);
661 if (isCoreProfile) {
662 return "#version 400\n";
663 } else {
664 return "#version 400 compatibility\n";
665 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500666 case k420_GrGLSLGeneration:
667 SkASSERT(kGL_GrGLStandard == standard);
668 if (isCoreProfile) {
669 return "#version 420\n";
670 }
671 else {
672 return "#version 420 compatibility\n";
673 }
egdaniel472d44e2015-10-22 08:20:00 -0700674 case k310es_GrGLSLGeneration:
675 SkASSERT(kGLES_GrGLStandard == standard);
676 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800677 case k320es_GrGLSLGeneration:
678 SkASSERT(kGLES_GrGLStandard == standard);
679 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700680 }
681 return "<no version>";
682}
683
egdaniel05ded892015-10-26 07:38:05 -0700684void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700685 GrGLStandard standard = ctxInfo.standard();
686 GrGLVersion version = ctxInfo.version();
687
688 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500689 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700690 **************************************************************************/
691
Brian Salomon1edc5b92016-11-29 13:43:46 -0500692 GrShaderCaps* shaderCaps = fShaderCaps.get();
693 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700694 if (kGLES_GrGLStandard == standard) {
695 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500696 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
697 shaderCaps->fFBFetchSupport = true;
698 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
699 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700700 }
701 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
702 // 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 -0500703 shaderCaps->fFBFetchNeedsCustomOutput = false;
704 shaderCaps->fFBFetchSupport = true;
705 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
706 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700707 }
708 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
709 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500710 shaderCaps->fFBFetchNeedsCustomOutput = false;
711 shaderCaps->fFBFetchSupport = true;
712 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
713 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700714 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500715 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700716 }
717
egdaniel7517e452016-09-20 13:00:26 -0700718 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
719 // Galaxy S7.
720 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
721 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500722 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700723 }
724
Brian Salomon1edc5b92016-11-29 13:43:46 -0500725 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700726
cdaltonc08f1962016-02-12 12:14:06 -0800727 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500728 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800729 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500730 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800731 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
732 }
733
734 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500735 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800736 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
737 } else {
738 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500739 shaderCaps->fNoPerspectiveInterpolationSupport = true;
740 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800741 "GL_NV_shader_noperspective_interpolation";
742 }
743 }
744
cdalton33ad7012016-02-22 07:55:44 -0800745 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500746 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800747 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
748 } else {
749 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500750 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800751 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500752 shaderCaps->fMultisampleInterpolationSupport = true;
753 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800754 "GL_OES_shader_multisample_interpolation";
755 }
756 }
757
758 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500759 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800760 } else {
761 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500762 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800763 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500764 shaderCaps->fSampleVariablesSupport = true;
765 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800766 }
767 }
768
Brian Salomon1edc5b92016-11-29 13:43:46 -0500769 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700770 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
771 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500772 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700773 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
774 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800775 }
776
egdaniel472d44e2015-10-22 08:20:00 -0700777 // 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 -0500778 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700779
780 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
781 // function that may require a gradient calculation inside a conditional block may return
782 // undefined results". This appears to be an issue with the 'any' call since even the simple
783 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
784 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500785 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700786
Brian Salomon1edc5b92016-11-29 13:43:46 -0500787 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
788 shaderCaps->fGLSLGeneration,
789 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800790
Brian Salomon1edc5b92016-11-29 13:43:46 -0500791 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
792 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800793 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800794
795 // Frag Coords Convention support is not part of ES
796 // Known issue on at least some Intel platforms:
797 // http://code.google.com/p/skia/issues/detail?id=946
798 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
799 kGLES_GrGLStandard != standard &&
800 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
801 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500802 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800803 }
804
805 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500806 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800807 }
808
cdalton9c3f1432016-03-11 10:07:37 -0800809 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
810 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500811 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800812 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
813 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
814 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500815 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800816 }
817 }
818
Brian Salomon1edc5b92016-11-29 13:43:46 -0500819 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800820 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500821 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800822 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500823 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800824 }
825 }
826
cdaltonc04ce672016-03-11 14:07:38 -0800827 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500828 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800829 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500830 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700831 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
832 }
833
Brian Salomon1edc5b92016-11-29 13:43:46 -0500834 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700835 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500836 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700837 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
838 } else {
839 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
840 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500841 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700842 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500843 shaderCaps->fTexelBufferSupport = true;
844 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700845 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500846 shaderCaps->fTexelBufferSupport = true;
847 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700848 }
cdaltonc04ce672016-03-11 14:07:38 -0800849 }
850 }
851
Chris Dalton1d616352017-05-31 12:51:23 -0600852 if (kGL_GrGLStandard == standard) {
853 shaderCaps->fVertexIDSupport = true;
854 } else {
855 // Desktop GLSL 3.30 == ES GLSL 3.00.
856 shaderCaps->fVertexIDSupport = ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
857 }
858
egdaniel8dcdedc2015-11-11 06:27:20 -0800859 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
860 // the abs first in a separate expression.
861 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500862 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800863 }
864
bsalomon7ea33f52015-11-22 14:51:00 -0800865 // 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 -0800866 // thus must us -1.0 * %s.x to work correctly
867 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500868 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800869 }
egdaniel138c2632016-08-17 10:59:00 -0700870
871 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
872 // the original dst color when reading the outColor even after being written to. By using a
873 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500874 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
875 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700876 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700877
878#ifdef SK_BUILD_FOR_MAC
879 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
880 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
881 // term plan for this WAR is for it to eventually be baked into SkSL.
882 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
883#endif
Brian Osmanac1e4962017-05-25 11:34:38 -0400884
885 // Newer Mali GPUs do incorrect static analysis in specific situations: If there is uniform
886 // color, and that uniform contains an opaque color, and the output of the shader is only based
887 // on that uniform plus soemthing un-trackable (like a texture read), the compiler will deduce
888 // that the shader always outputs opaque values. In that case, it appears to remove the shader
889 // based blending code it normally injects, turning SrcOver into Src. To fix this, we always
890 // insert an extra bit of math on the uniform that confuses the compiler just enough...
891 if (kMaliT_GrGLRenderer == ctxInfo.renderer()) {
892 shaderCaps->fMustObfuscateUniformColor = true;
893 }
egdaniel472d44e2015-10-22 08:20:00 -0700894}
895
kkinnunencfe62e32015-07-01 02:58:50 -0700896bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700897 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
898
899 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700900 return false;
901 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700902
kkinnunencfe62e32015-07-01 02:58:50 -0700903 if (kGL_GrGLStandard == ctxInfo.standard()) {
904 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
905 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
906 return false;
907 }
908 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700909 if (!hasChromiumPathRendering &&
910 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700911 return false;
912 }
913 }
914 // We only support v1.3+ of GL_NV_path_rendering which allows us to
915 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
916 // additions are detected by checking the existence of the function.
917 // We also use *Then* functions that not all drivers might have. Check
918 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800919 if (!gli->fFunctions.fStencilThenCoverFillPath ||
920 !gli->fFunctions.fStencilThenCoverStrokePath ||
921 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
922 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
923 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700924 return false;
925 }
926 return true;
927}
bsalomon1aa20292016-01-22 08:16:09 -0800928
Brian Salomon71d9d842016-11-03 13:42:00 -0400929bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800930 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800931 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800932 std::function<bool ()> bindRenderTarget,
933 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400934 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800935 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400936 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800937 return false;
938 }
bsalomon7928ef62016-01-05 10:26:39 -0800939
Brian Salomonbf7b6202016-11-11 16:08:03 -0500940 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
941 return false;
942 }
943
bsalomon76148af2016-01-12 11:13:47 -0800944 GrGLenum readFormat;
945 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400946 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800947 return false;
948 }
949
bsalomon1aa20292016-01-22 08:16:09 -0800950 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800951 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
952 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
953 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
954 // 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 -0500955 // The manual does not seem to fully match the spec as the spec allows integer formats
956 // when the bound color buffer is an integer buffer. It doesn't specify which integer
957 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500958 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
959 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
960 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800961 return false;
962 }
963 // There is also a set of allowed types, but all the types we use are in the set:
964 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
965 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
966 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
967 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
968 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
969 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
970 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800971 return true;
piotaixre4b23142014-10-02 10:57:53 -0700972 }
bsalomon7928ef62016-01-05 10:26:39 -0800973
bsalomon76148af2016-01-12 11:13:47 -0800974 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500975 switch (fConfigTable[surfaceConfig].fFormatType) {
976 case kNormalizedFixedPoint_FormatType:
977 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
978 return true;
979 }
980 break;
981 case kInteger_FormatType:
982 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
983 return true;
984 }
985 break;
986 case kFloat_FormatType:
987 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
988 return true;
989 }
990 break;
bsalomon7928ef62016-01-05 10:26:39 -0800991 }
992
Brian Salomon71d9d842016-11-03 13:42:00 -0400993 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800994 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400995 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800996 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800997 if (!bindRenderTarget()) {
998 return false;
999 }
1000 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
1001 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -08001002 rpFormat->fFormat = format;
1003 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -08001004 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -08001005 }
1006
Brian Salomon71d9d842016-11-03 13:42:00 -04001007 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
1008 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -07001009}
1010
Eric Karl5c779752017-05-08 12:02:07 -07001011void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
1012 const GrGLInterface* gli) {
1013 // We need dual source blending and the ability to disable multisample in order to support mixed
1014 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
1015 // renderer is available and enabled; no other path renderers support this feature.
1016 if (fMultisampleDisableSupport &&
1017 this->shaderCaps()->dualSourceBlendingSupport() &&
1018 this->shaderCaps()->pathRenderingSupport() &&
1019 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
1020 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
Robert Phillips3b3307f2017-05-24 07:44:02 -04001021 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
Eric Karl5c779752017-05-08 12:02:07 -07001022 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
1023 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
1024 kChromium_GrGLDriver == ctxInfo.driver())) {
1025 fDiscardRenderTargetSupport = false;
1026 fInvalidateFBType = kNone_InvalidateFBType;
1027 }
1028 }
1029
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001030 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001031 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1032 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1033 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1034 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1035 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1036 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001037 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001038 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001039 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001040 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001041 fMSFBOType = kStandard_MSFBOType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001042 } else if (ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
1043 fMSFBOType = kEXT_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001044 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1045 fMSFBOType = kES_Apple_MSFBOType;
1046 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001047 } else {
egdanieleed519e2016-01-15 11:36:18 -08001048 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001049 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001050 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1051 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1052 fMSFBOType = kStandard_MSFBOType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001053 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1054 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001055 fMSFBOType = kEXT_MSFBOType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001056 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001057 }
Eric Karl5c779752017-05-08 12:02:07 -07001058
Robert Phillips3b3307f2017-05-24 07:44:02 -04001059 // We disable MSAA across the board for Intel GPUs
1060 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
1061 fMSFBOType = kNone_MSFBOType;
1062 }
1063
Eric Karl5c779752017-05-08 12:02:07 -07001064 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
1065 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
1066 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
1067 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
1068 }
1069 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
1070 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
1071 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
1072 // This is to guard against platforms that may not support as many samples for
1073 // glRasterSamples as they do for framebuffers.
1074 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
1075 }
1076 fMaxColorSampleCount = fMaxStencilSampleCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001077}
1078
cdalton1dd05422015-06-12 09:01:18 -07001079void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001080 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001081
1082 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1083 // for now until its own blacklists can be updated.
1084 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001085 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001086 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001087 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001088 return;
1089 }
1090
1091 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1092 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001093 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001094 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1095 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001096 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001097 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1098 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1099 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1100 return;
1101 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1102 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001103 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001104 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1105 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001106 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001107 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1108 // slow on a particular platform.
1109 } else {
1110 return; // No advanced blend support.
1111 }
1112
1113 SkASSERT(this->advancedBlendEquationSupport());
1114
csmartdalton3b88a032016-08-04 14:43:49 -07001115 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1116 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1117 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001118 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1119 (1 << kColorBurn_GrBlendEquation);
1120 }
joel.liang9764c402015-07-09 19:46:18 -07001121 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1122 // Blacklist color-burn on ARM until the fix is released.
1123 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1124 }
cdalton1dd05422015-06-12 09:01:18 -07001125}
1126
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001127namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001128const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001129}
1130
Eric Karl5c779752017-05-08 12:02:07 -07001131void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001132
1133 // Build up list of legal stencil formats (though perhaps not supported on
1134 // the particular gpu/driver) from most preferred to least.
1135
1136 // these consts are in order of most preferred to least preferred
1137 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1138
1139 static const StencilFormat
1140 // internal Format stencil bits total bits packed?
1141 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1142 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1143 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1144 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001145 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001146 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1147
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001148 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001149 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001150 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001151 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1152 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1153
1154 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1155 // require FBO support we can expect these are legal formats and don't
1156 // check. These also all support the unsized GL_STENCIL_INDEX.
1157 fStencilFormats.push_back() = gS8;
1158 fStencilFormats.push_back() = gS16;
1159 if (supportsPackedDS) {
1160 fStencilFormats.push_back() = gD24S8;
1161 }
1162 fStencilFormats.push_back() = gS4;
1163 if (supportsPackedDS) {
1164 fStencilFormats.push_back() = gDS;
1165 }
1166 } else {
1167 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1168 // for other formats.
1169 // ES doesn't support using the unsized format.
1170
1171 fStencilFormats.push_back() = gS8;
1172 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001173 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1174 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001175 fStencilFormats.push_back() = gD24S8;
1176 }
1177 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1178 fStencilFormats.push_back() = gS4;
1179 }
1180 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001181}
1182
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001183SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001184
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001185 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001186
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001187 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001188 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001189 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001190 i,
1191 fStencilFormats[i].fStencilBits,
1192 fStencilFormats[i].fTotalBits);
1193 }
1194
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001195 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001196 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001197 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001198 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001199 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001200 "IMG MS To Texture",
1201 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001202 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001203 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001204 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001205 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1206 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1207 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1208 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1209 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1210 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001211 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001212
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001213 static const char* kInvalidateFBTypeStr[] = {
1214 "None",
1215 "Discard",
1216 "Invalidate",
1217 };
1218 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1219 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1220 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1221 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001222
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001223 static const char* kMapBufferTypeStr[] = {
1224 "None",
1225 "MapBuffer",
1226 "MapBufferRange",
1227 "Chromium",
1228 };
1229 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1230 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1231 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1232 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1233 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1234
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001235 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001236 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001237 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001238 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001239 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001240 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1241 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1242 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1243 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001244
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001245 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001246 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1247 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001248 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001249 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1250 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
cdalton06604b92016-02-05 10:09:51 -08001251 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1252 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1253 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001254 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1255 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001256 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001257 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001258 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001259 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001260 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001261
1262 r.append("Configs\n-------\n");
1263 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1264 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001265 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1266 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001267 i,
1268 fConfigTable[i].fFlags,
1269 fConfigTable[i].fFormats.fBaseInternalFormat,
1270 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001271 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1272 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001273 fConfigTable[i].fFormats.fExternalType,
1274 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001275 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001276 }
1277
jvanverthe9c0fc62015-04-29 11:18:05 -07001278 return r;
1279}
1280
jvanverthe9c0fc62015-04-29 11:18:05 -07001281static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1282 switch (p) {
1283 case kLow_GrSLPrecision:
1284 return GR_GL_LOW_FLOAT;
1285 case kMedium_GrSLPrecision:
1286 return GR_GL_MEDIUM_FLOAT;
1287 case kHigh_GrSLPrecision:
1288 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001289 default:
1290 SkFAIL("Unexpected precision type.");
1291 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001292 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001293}
1294
1295static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1296 switch (type) {
1297 case kVertex_GrShaderType:
1298 return GR_GL_VERTEX_SHADER;
1299 case kGeometry_GrShaderType:
1300 return GR_GL_GEOMETRY_SHADER;
1301 case kFragment_GrShaderType:
1302 return GR_GL_FRAGMENT_SHADER;
1303 }
1304 SkFAIL("Unknown shader type.");
1305 return -1;
1306}
1307
jvanverthcba99b82015-06-24 06:59:57 -07001308void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001309 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001310 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001311 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1312 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1313 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1314 if (kGeometry_GrShaderType != s) {
1315 GrShaderType shaderType = static_cast<GrShaderType>(s);
1316 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001317 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001318 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001319 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1320 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1321 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1322 GrGLint range[2];
1323 GrGLint bits;
1324 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1325 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001326 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1327 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1328 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001329 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001330 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001331 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001332 else if (!shaderCaps->fShaderPrecisionVaries) {
1333 shaderCaps->fShaderPrecisionVaries =
1334 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001335 }
1336 }
1337 }
1338 }
1339 }
1340 }
1341 else {
1342 // 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 -05001343 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001344 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1345 if (kGeometry_GrShaderType != s) {
1346 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001347 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1348 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1349 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001350 }
1351 }
1352 }
1353 }
1354 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1355 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1356 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1357 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001358 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001359 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001360 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1361 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001362 }
1363 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001364 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001365}
1366
bsalomon41e4384e2016-01-08 09:12:44 -08001367bool GrGLCaps::bgraIsInternalFormat() const {
1368 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1369}
1370
bsalomon76148af2016-01-12 11:13:47 -08001371bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1372 GrGLenum* internalFormat, GrGLenum* externalFormat,
1373 GrGLenum* externalType) const {
1374 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1375 externalFormat, externalType)) {
1376 return false;
1377 }
1378 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1379 return true;
1380}
1381
bsalomon76148af2016-01-12 11:13:47 -08001382bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1383 GrGLenum* externalFormat, GrGLenum* externalType) const {
1384 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1385 externalFormat, externalType)) {
1386 return false;
1387 }
1388 return true;
1389}
1390
1391bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
bsalomon76148af2016-01-12 11:13:47 -08001392 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1393 return true;
1394}
1395
1396bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1397 ExternalFormatUsage usage, GrGLenum* externalFormat,
1398 GrGLenum* externalType) const {
1399 SkASSERT(externalFormat && externalType);
bsalomon76148af2016-01-12 11:13:47 -08001400
1401 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1402 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1403
1404 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1405 // made to work in many cases using glPixelStore and what not but is not needed currently.
1406 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1407 return false;
1408 }
1409
1410 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1411 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1412
bsalomone9573312016-01-25 14:33:25 -08001413 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1414 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1415 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1416 // texture, not the red component.
1417 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1418 if (this->textureRedSupport()) {
1419 SkASSERT(GR_GL_RED == *externalFormat);
1420 *externalFormat = GR_GL_ALPHA;
1421 }
1422 }
1423
bsalomon76148af2016-01-12 11:13:47 -08001424 return true;
1425}
1426
brianosman20471892016-12-02 06:43:32 -08001427void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1428 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001429 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001430 /*
1431 Comments on renderability of configs on various GL versions.
1432 OpenGL < 3.0:
1433 no built in support for render targets.
1434 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1435 format RGB, RGBA and NV float formats we don't use.
1436 This is the following:
1437 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1438 RGB10_A2, RGBA12,RGBA16
1439 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1440 since they aren't required by later standards and the driver can simply return
1441 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1442 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1443 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1444 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1445 This adds a lot of additional renderable sized formats, including ALPHA8.
1446 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1447 16F, 32I, 32UI, and 32F variants).
1448 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1449
1450 For both the above extensions we limit ourselves to those that are also required by
1451 OpenGL 3.0.
1452
1453 OpenGL 3.0:
1454 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1455 but are not required to be supported as renderable textures/renderbuffer.
1456 Required renderable color formats:
1457 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1458 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1459 RGB10_A2.
1460 - R11F_G11F_B10F.
1461 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1462 and RG8UI.
1463 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1464 - ALPHA8
1465
1466 OpenGL 3.1, 3.2, 3.3
1467 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1468 OpengGL 3.3, 4.0, 4.1
1469 Adds RGB10_A2UI.
1470 OpengGL 4.2
1471 Adds
1472 - RGB5_A1, RGBA4
1473 - RGB565
1474 OpenGL 4.4
1475 Does away with the separate list and adds a column to the sized internal color format
1476 table. However, no new formats become required color renderable.
1477
1478 ES 2.0
1479 color renderable: RGBA4, RGB5_A1, RGB565
1480 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1481 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1482 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1483 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1484 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1485 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1486
1487 ES 3.0
1488 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1489 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1490 RGB5_A1.
1491 - RGB8 and RGB565.
1492 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1493 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1494 ES 3.1
1495 Adds RGB10_A2, RGB10_A2UI,
1496 ES 3.2
1497 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1498 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001499 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1500 ConfigInfo::kFBOColorAttachment_Flag;
1501 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001502 if (kNone_MSFBOType != fMSFBOType) {
1503 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1504 }
bsalomon41e4384e2016-01-08 09:12:44 -08001505 GrGLStandard standard = ctxInfo.standard();
1506 GrGLVersion version = ctxInfo.version();
1507
cblume790d5132016-02-29 11:13:29 -08001508 bool texStorageSupported = false;
1509 if (kGL_GrGLStandard == standard) {
1510 // The EXT version can apply to either GL or GLES.
1511 texStorageSupported = version >= GR_GL_VER(4,2) ||
1512 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1513 ctxInfo.hasExtension("GL_EXT_texture_storage");
1514 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001515 texStorageSupported = version >= GR_GL_VER(3,0) ||
1516 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001517 }
1518
1519 // TODO: remove after command buffer supports full ES 3.0
1520 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1521 kChromium_GrGLDriver == ctxInfo.driver()) {
1522 texStorageSupported = false;
1523 }
1524
cdalton74b8d322016-04-11 14:47:28 -07001525 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1526
bsalomon30447372015-12-21 09:03:05 -08001527 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1528 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001529 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001530 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001531 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001532 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001533
1534 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1535 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001536 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1537 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001538 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001539 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001540 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1541 if (kGL_GrGLStandard == standard) {
1542 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1543 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001544 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001545 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1546 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1547 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1548 }
egdaniel4999df82016-01-07 17:06:04 -08001549 }
cblume790d5132016-02-29 11:13:29 -08001550 if (texStorageSupported) {
1551 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1552 }
cdalton74b8d322016-04-11 14:47:28 -07001553 if (texelBufferSupport) {
1554 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1555 }
bsalomoncdee0092016-01-08 13:20:12 -08001556 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001557
bsalomon76148af2016-01-12 11:13:47 -08001558 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1559 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001560 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001561 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001562 if (kGL_GrGLStandard == standard) {
1563 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1564 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1565 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1566 // Since the internal format is RGBA8, it is also renderable.
1567 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1568 allRenderFlags;
1569 }
1570 } else {
1571 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1572 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1573 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1574 // The APPLE extension doesn't make this renderable.
1575 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1576 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1577 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1578 // Though, that seems to not be the case if the texture storage extension is
1579 // present. The specs don't exactly make that clear.
1580 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1581 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1582 }
1583 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1584 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001585 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001586 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001587 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001588 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1589 ConfigInfo::kRenderableWithMSAA_Flag;
1590 }
1591 }
1592 }
cblume790d5132016-02-29 11:13:29 -08001593 if (texStorageSupported) {
1594 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1595 }
bsalomoncdee0092016-01-08 13:20:12 -08001596 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001597
brianosmana6359362016-03-21 06:55:37 -07001598 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001599 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001600 if (kGL_GrGLStandard == standard) {
1601 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001602 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001603 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1604 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1605 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001606 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001607 }
1608 }
1609 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001610 if (fSRGBSupport) {
1611 fSRGBWriteControl = true;
1612 }
bsalomon41e4384e2016-01-08 09:12:44 -08001613 } else {
brianosman20471892016-12-02 06:43:32 -08001614 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1615#if defined(SK_CPU_X86)
1616 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1617 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1618 // blacklist that device (and any others that might be sharing the same driver).
1619 fSRGBSupport = false;
1620 }
1621#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001622 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1623 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001624 // See https://bug.skia.org/5329 for Adreno4xx issue.
1625 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1626 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001627 }
brianosman20471892016-12-02 06:43:32 -08001628 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1629 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1630 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001631 fSRGBSupport = false;
1632 }
brianosman20471892016-12-02 06:43:32 -08001633
1634 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1635 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1636 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1637 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1638 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1639 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1640 // affects Windows.
1641 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1642 fSRGBSupport = false;
1643 }
1644
bsalomon30447372015-12-21 09:03:05 -08001645 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1646 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1647 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1648 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001649 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1650 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001651 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001652 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001653 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001654 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1655 allRenderFlags;
1656 }
cblume790d5132016-02-29 11:13:29 -08001657 if (texStorageSupported) {
1658 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1659 }
bsalomoncdee0092016-01-08 13:20:12 -08001660 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
brianosmana6359362016-03-21 06:55:37 -07001661 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1662 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1663 // is in this format, for example).
1664 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1665 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1666 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1667 // external format is GL_BGRA.
1668 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1669 GR_GL_BGRA;
1670 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1671 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001672 if (fSRGBSupport && kGL_GrGLStandard == standard) {
brianosmana6359362016-03-21 06:55:37 -07001673 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Robert Phillips3b3307f2017-05-24 07:44:02 -04001674 allRenderFlags;
brianosmana6359362016-03-21 06:55:37 -07001675 }
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001676
brianosmana6359362016-03-21 06:55:37 -07001677 if (texStorageSupported) {
1678 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1679 }
1680 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1681
Brian Salomonbf7b6202016-11-11 16:08:03 -05001682 bool hasIntegerTextures;
1683 if (standard == kGL_GrGLStandard) {
1684 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1685 ctxInfo.hasExtension("GL_EXT_texture_integer");
1686 } else {
1687 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1688 }
1689 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1690 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1691 hasIntegerTextures = false;
1692 }
1693 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1694 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1695 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1696 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1697 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1698 // We currently only support using integer textures as srcs, not for rendering (even though GL
1699 // allows it).
1700 if (hasIntegerTextures) {
1701 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1702 ConfigInfo::kFBOColorAttachment_Flag;
1703 if (texStorageSupported) {
1704 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1705 ConfigInfo::kCanUseTexStorage_Flag;
1706 }
1707 }
1708
bsalomon30447372015-12-21 09:03:05 -08001709 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1710 if (this->ES2CompatibilitySupport()) {
1711 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1712 } else {
1713 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1714 }
bsalomon76148af2016-01-12 11:13:47 -08001715 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1716 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001717 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001718 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001719 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1720 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001721 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001722 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1723 }
1724 } else {
1725 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1726 }
cblume790d5132016-02-29 11:13:29 -08001727 // 565 is not a sized internal format on desktop GL. So on desktop with
1728 // 565 we always use an unsized internal format to let the system pick
1729 // the best sized format to convert the 565 data to. Since TexStorage
1730 // only allows sized internal formats we disallow it.
1731 //
1732 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1733 // update.
1734 if (texStorageSupported && kGL_GrGLStandard != standard) {
1735 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1736 }
bsalomoncdee0092016-01-08 13:20:12 -08001737 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001738
1739 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1740 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001741 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1742 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001743 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001744 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001745 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1746 if (kGL_GrGLStandard == standard) {
1747 if (version >= GR_GL_VER(4, 2)) {
1748 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1749 }
1750 } else {
1751 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1752 }
cblume790d5132016-02-29 11:13:29 -08001753 if (texStorageSupported) {
1754 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1755 }
bsalomoncdee0092016-01-08 13:20:12 -08001756 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001757
Brian Osmanf4faccd2017-01-10 16:53:58 -05001758 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1759 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1760 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001761 if (this->textureRedSupport()) {
1762 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1763 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001764 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1765 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001766 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001767 if (texelBufferSupport) {
1768 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1769 }
bsalomon30447372015-12-21 09:03:05 -08001770 } else {
1771 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1772 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001773 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1774 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001775 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001776 }
bsalomon40170072016-05-05 14:40:03 -07001777 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001778 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1779 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001780 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001781 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1782 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1783 }
cblume790d5132016-02-29 11:13:29 -08001784 if (texStorageSupported) {
1785 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1786 }
bsalomon41e4384e2016-01-08 09:12:44 -08001787
Brian Osmanf4faccd2017-01-10 16:53:58 -05001788 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1789 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1790 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001791 if (this->textureRedSupport()) {
1792 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1793 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1794 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1795 GR_GL_RED;
1796 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1797 if (texelBufferSupport) {
1798 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1799 }
1800 } else {
1801 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1802 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1803 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1804 GR_GL_LUMINANCE;
1805 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1806 }
Brian Osman986563b2017-01-10 14:20:02 -05001807#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1808 if (this->textureRedSupport() ||
1809 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1810 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1811 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1812 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1813 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1814 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1815 }
1816#endif
1817 if (texStorageSupported) {
1818 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1819 }
1820
bsalomon41e4384e2016-01-08 09:12:44 -08001821 // Check for [half] floating point texture support
1822 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1823 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1824 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1825 bool hasFPTextures = false;
1826 bool hasHalfFPTextures = false;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001827 bool rgIsTexturable = false;
bsalomon41e4384e2016-01-08 09:12:44 -08001828 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001829 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001830
1831 if (kGL_GrGLStandard == standard) {
1832 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1833 hasFPTextures = true;
1834 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001835 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001836 }
1837 } else {
1838 if (version >= GR_GL_VER(3, 1)) {
1839 hasFPTextures = true;
1840 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001841 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001842 } else {
1843 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1844 ctxInfo.hasExtension("GL_OES_texture_float")) {
1845 hasFPTextures = true;
1846 }
1847 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1848 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1849 hasHalfFPTextures = true;
1850 }
1851 }
1852 }
bsalomon30447372015-12-21 09:03:05 -08001853
csmartdalton6aa0e112017-02-08 16:14:11 -05001854 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1855 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1856 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1857 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1858 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1859 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1860 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1861 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1862 if (hasFPTextures) {
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001863 fConfigTable[fpconfig].fFlags = rgIsTexturable ? ConfigInfo::kTextureable_Flag : 0;
csmartdalton6aa0e112017-02-08 16:14:11 -05001864 // For now we only enable rendering to float on desktop, because on ES we'd have to
1865 // solve many precision issues and no clients actually want this yet.
1866 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1867 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1868 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1869 }
bsalomon41e4384e2016-01-08 09:12:44 -08001870 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001871 if (texStorageSupported) {
1872 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1873 }
1874 if (texelBufferSupport) {
1875 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1876 }
1877 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001878 }
bsalomon30447372015-12-21 09:03:05 -08001879
1880 if (this->textureRedSupport()) {
1881 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1882 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001883 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1884 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001885 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001886 if (texelBufferSupport) {
1887 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1888 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1889 }
bsalomon30447372015-12-21 09:03:05 -08001890 } else {
1891 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1892 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001893 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1894 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001895 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001896 }
Brian Osman3a887252016-11-17 13:27:31 -05001897 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1898 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1899 // returned when we query, but that turns into a bigger refactor, so just work around it.
1900 if (kGL_GrGLStandard == ctxInfo.standard() ||
1901 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001902 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1903 } else {
1904 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1905 }
bsalomon7928ef62016-01-05 10:26:39 -08001906 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001907 if (texStorageSupported) {
1908 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1909 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001910 if (hasHalfFPTextures) {
1911 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1912 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1913 // GL_RED internal format.
1914 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1915 (this->textureRedSupport() &&
1916 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1917 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1918 }
1919 }
bsalomon30447372015-12-21 09:03:05 -08001920
1921 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1922 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001923 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1924 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001925 // See comment above, re: ANGLE and ES3.
1926 if (kGL_GrGLStandard == ctxInfo.standard() ||
1927 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001928 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1929 } else {
1930 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1931 }
bsalomon7928ef62016-01-05 10:26:39 -08001932 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001933 if (hasHalfFPTextures) {
1934 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1935 // ES requires 3.2 or EXT_color_buffer_half_float.
1936 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1937 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1938 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1939 }
1940 }
cblume790d5132016-02-29 11:13:29 -08001941 if (texStorageSupported) {
1942 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1943 }
cdalton74b8d322016-04-11 14:47:28 -07001944 if (texelBufferSupport) {
1945 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1946 }
bsalomoncdee0092016-01-08 13:20:12 -08001947 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001948
bsalomon30447372015-12-21 09:03:05 -08001949 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1950
1951 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001952 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1953 ctxInfo.version() >= GR_GL_VER(3,0));
1954 // All ES versions (thus far) require sized internal formats for render buffers.
1955 // TODO: Always use sized internal format?
1956 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1957
bsalomon30447372015-12-21 09:03:05 -08001958 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001959 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1960 // param to glTex[Sub]Image.
1961 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1962 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1963 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1964 fConfigTable[i].fFormats.fSizedInternalFormat :
1965 fConfigTable[i].fFormats.fBaseInternalFormat;
1966 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001967 fConfigTable[i].fFormats.fSizedInternalFormat :
1968 fConfigTable[i].fFormats.fBaseInternalFormat;
1969 }
1970 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1971 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1972 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1973 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1974 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001975 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001976 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001977
1978 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1979 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1980 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1981 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001982 }
1983
1984 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1985 // as a base format.
1986 // GL_EXT_texture_format_BGRA8888:
1987 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1988 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1989 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001990 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001991 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1992 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1993 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001994 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001995 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1996 }
1997
bsalomoncdee0092016-01-08 13:20:12 -08001998 // If we don't have texture swizzle support then the shader generator must insert the
1999 // swizzle into shader code.
2000 if (!this->textureSwizzleSupport()) {
2001 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002002 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002003 }
2004 }
2005
bsalomon7f9b2e42016-01-12 13:29:26 -08002006 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2007 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2008 // gets written to the single component.
2009 if (this->textureRedSupport()) {
2010 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2011 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2012 if (GrPixelConfigIsAlphaOnly(config) &&
2013 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002014 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002015 }
2016 }
2017 }
2018
Brian Salomonf9f45122016-11-29 11:59:17 -05002019 // We currently only support images on rgba textures formats. We could add additional formats
2020 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2021 // (e.g. where we use GL_RED textures to implement alpha configs).
2022 if (this->shaderCaps()->imageLoadStoreSupport()) {
2023 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2024 ConfigInfo::kCanUseAsImageStorage_Flag;
2025 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2026 // immutable via TexStorage. We create non-integer textures as mutable textures using
2027 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2028 // storage support for non-integer textures.
2029 if (kGL_GrGLStandard == ctxInfo.standard()) {
2030 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2031 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2032 ConfigInfo::kCanUseAsImageStorage_Flag;
2033 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2034 }
2035 }
2036
bsalomon30447372015-12-21 09:03:05 -08002037#ifdef SK_DEBUG
2038 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002039 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002040 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002041 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2042 // renderable.
2043 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2044 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002045 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2046 fConfigTable[i].fFormats.fBaseInternalFormat);
2047 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002048 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002049 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2050 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2051 fConfigTable[i].fFormats.fExternalFormat[j]);
2052 }
2053 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002054 }
2055#endif
2056}
2057
Robert Phillipsbf25d432017-04-07 10:08:53 -04002058bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Eric Karl74480882017-04-03 14:49:05 -07002059 bool* rectsMustMatch, bool* disallowSubrect) const {
2060 // By default, we don't require rects to match.
2061 *rectsMustMatch = false;
2062
2063 // By default, we allow subrects.
2064 *disallowSubrect = false;
2065
Brian Salomon467921e2017-03-06 16:17:12 -05002066 // If the src is a texture, we can implement the blit as a draw assuming the config is
2067 // renderable.
Robert Phillipsbf25d432017-04-07 10:08:53 -04002068 if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) {
2069 desc->fOrigin = kBottomLeft_GrSurfaceOrigin;
Brian Salomon467921e2017-03-06 16:17:12 -05002070 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2071 desc->fConfig = src->config();
2072 return true;
2073 }
2074
Robert Phillipsbf25d432017-04-07 10:08:53 -04002075 {
2076 // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were
2077 // wrapped. In that case the proxy would already be instantiated.
2078 const GrTexture* srcTexture = src->priv().peekTexture();
2079 const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture);
2080 if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) {
2081 // Not supported for FBO blit or CopyTexSubImage
2082 return false;
2083 }
Brian Salomon467921e2017-03-06 16:17:12 -05002084 }
2085
2086 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2087 // possible and we return false to fallback to creating a render target dst for render-to-
2088 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2089 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
Robert Phillipsbb581ce2017-05-29 15:05:15 -04002090 GrSurfaceOrigin originForBlitFramebuffer = kTopLeft_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002091 bool rectsMustMatchForBlitFramebuffer = false;
2092 bool disallowSubrectForBlitFramebuffer = false;
2093 if (src->numColorSamples() &&
2094 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2095 rectsMustMatchForBlitFramebuffer = true;
2096 disallowSubrectForBlitFramebuffer = true;
2097 // Mirroring causes rects to mismatch later, don't allow it.
2098 originForBlitFramebuffer = src->origin();
2099 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2100 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2101 rectsMustMatchForBlitFramebuffer = true;
2102 // Mirroring causes rects to mismatch later, don't allow it.
2103 originForBlitFramebuffer = src->origin();
2104 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002105 originForBlitFramebuffer = src->origin();
2106 }
2107
2108 // Check for format issues with glCopyTexSubImage2D
2109 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2110 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2111 // then we set up for that, otherwise fail.
2112 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2113 desc->fOrigin = originForBlitFramebuffer;
2114 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002115 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2116 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002117 return true;
2118 }
2119 return false;
2120 }
2121
Robert Phillipsbf25d432017-04-07 10:08:53 -04002122 {
Brian Salomon63e79732017-05-15 21:23:13 -04002123 bool srcIsMSAARenderbuffer = GrFSAAType::kUnifiedMSAA == src->fsaaType() &&
2124 this->usesMSAARenderBuffers();
Robert Phillipsbf25d432017-04-07 10:08:53 -04002125 if (srcIsMSAARenderbuffer) {
2126 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO
2127 // blit or fail.
2128 if (this->canConfigBeFBOColorAttachment(src->config())) {
2129 desc->fOrigin = originForBlitFramebuffer;
2130 desc->fConfig = src->config();
2131 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2132 *disallowSubrect = disallowSubrectForBlitFramebuffer;
2133 return true;
2134 }
2135 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05002136 }
Brian Salomon467921e2017-03-06 16:17:12 -05002137 }
2138
2139 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2140 desc->fConfig = src->config();
2141 desc->fOrigin = src->origin();
2142 desc->fFlags = kNone_GrSurfaceFlags;
2143 return true;
2144}
2145
csmartdaltone0d36292016-07-29 08:14:20 -07002146void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2147 if (options.fEnableInstancedRendering) {
2148 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2149#ifndef SK_BUILD_FOR_MAC
2150 // OS X doesn't seem to write correctly to floating point textures when using
2151 // glDraw*Indirect, regardless of the underlying GPU.
2152 fAvoidInstancedDrawsToFPTargets = true;
2153#endif
2154 }
2155}