blob: 8c4330312d613facb748752221950165e599b9ef [file] [log] [blame]
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00008#include "GrGLCaps.h"
egdanielb7e7d572015-11-04 04:23:53 -08009#include "GrContextOptions.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000010#include "GrGLContext.h"
bsalomon1aa20292016-01-22 08:16:09 -080011#include "GrGLRenderTarget.h"
Brian Salomon467921e2017-03-06 16:17:12 -050012#include "GrGLTexture.h"
Brian Salomon94efbf52016-11-29 13:43:05 -050013#include "GrShaderCaps.h"
Robert Phillipsbf25d432017-04-07 10:08:53 -040014#include "GrSurfaceProxyPriv.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000015#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000016#include "SkTSort.h"
Brian Salomon467921e2017-03-06 16:17:12 -050017#include "instanced/GLInstancedRendering.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000018
bsalomon682c2692015-05-22 14:01:46 -070019GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
20 const GrGLContextInfo& ctxInfo,
21 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080022 fStandard = ctxInfo.standard();
23
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000025 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000026 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000027 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080028 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000030 fUnpackRowLengthSupport = false;
31 fUnpackFlipYSupport = false;
32 fPackRowLengthSupport = false;
33 fPackFlipYSupport = false;
34 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000035 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000036 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000037 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070038 fDirectStateAccessSupport = false;
39 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080040 fES2CompatibilitySupport = false;
csmartdalton4c18b622016-07-29 12:19:28 -070041 fDrawInstancedSupport = false;
cdalton06604b92016-02-05 10:09:51 -080042 fDrawIndirectSupport = false;
43 fMultiDrawIndirectSupport = false;
44 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080054 fSRGBDecodeDisableSupport = false;
brianosman851c2382016-12-07 10:03:25 -080055 fSRGBDecodeDisableAffectsMipmaps = false;
Eric Karlaeaf22b2017-05-18 15:08:09 -070056 fClearToBoundaryValuesIsBroken = false;
Brian Salomond17b4a62017-05-23 16:53:47 -040057 fClearTextureSupport = false;
Chris Dalton9926f4b2017-05-17 15:15:50 -060058 fDrawArraysBaseVertexIsBroken = false;
piotaixre4b23142014-10-02 10:57:53 -070059
Brian Salomone5e7eb12016-10-14 16:18:33 -040060 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080061
Brian Salomon94efbf52016-11-29 13:43:05 -050062 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070063
cdalton4cd67132015-06-10 19:23:46 -070064 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000065}
66
cdalton4cd67132015-06-10 19:23:46 -070067void GrGLCaps::init(const GrContextOptions& contextOptions,
68 const GrGLContextInfo& ctxInfo,
69 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000070 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000071 GrGLVersion version = ctxInfo.version();
72
bsalomon@google.combcce8922013-03-25 15:38:39 +000073 /**************************************************************************
74 * Caps specific to GrGLCaps
75 **************************************************************************/
76
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000077 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000078 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
79 &fMaxFragmentUniformVectors);
80 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000081 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000082 GrGLint max;
83 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
84 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000085 if (version >= GR_GL_VER(3, 2)) {
86 GrGLint profileMask;
87 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
88 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
89 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000090 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000091 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000092
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000093 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000094 fUnpackRowLengthSupport = true;
95 fUnpackFlipYSupport = false;
96 fPackRowLengthSupport = true;
97 fPackFlipYSupport = false;
98 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000099 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
100 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000101 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +0000102 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
103 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000104 fPackFlipYSupport =
105 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
106 }
107
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000108 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000109 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
110
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000111 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700112 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
113 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
114 ctxInfo.hasExtension("GL_NV_texture_barrier");
115 } else {
116 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
117 }
118
cdaltoneb79eea2016-02-26 10:39:34 -0800119 if (kGL_GrGLStandard == standard) {
120 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
121 ctxInfo.hasExtension("GL_ARB_texture_multisample");
122 } else {
123 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
124 }
125
Brian Salomon0ee6f952017-01-19 15:52:24 -0500126 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800127 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500128 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800129 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000130 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
131 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800132 } else {
133 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
134 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000135 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000136 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000137 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000138 ctxInfo.hasExtension("GL_ARB_imaging");
139
egdaniel9250d242015-05-18 13:04:26 -0700140 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
141 // Thus we are blacklisting this extension for now on Adreno4xx devices.
142 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
143 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
144 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
145 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000146 fDiscardRenderTargetSupport = true;
147 fInvalidateFBType = kInvalidate_InvalidateFBType;
148 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
149 fDiscardRenderTargetSupport = true;
150 fInvalidateFBType = kDiscard_InvalidateFBType;
151 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000152
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000153 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
154 fFullClearIsFree = true;
155 }
156
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000157 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000158 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800159 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
160 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000161 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000162 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
163 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000164 }
165
cdalton626e1ff2015-06-12 13:56:46 -0700166 if (kGL_GrGLStandard == standard) {
167 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
168 } else {
169 fDirectStateAccessSupport = false;
170 }
171
172 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
173 fDebugSupport = true;
174 } else {
175 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
176 }
177
jvanverth3f801cb2014-12-16 09:49:38 -0800178 if (kGL_GrGLStandard == standard) {
179 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
180 }
181 else {
182 fES2CompatibilitySupport = true;
183 }
184
cdalton0edea2c2015-05-21 08:27:44 -0700185 if (kGL_GrGLStandard == standard) {
186 fMultisampleDisableSupport = true;
187 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700188 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700189 }
190
kkinnunend94708e2015-07-30 22:47:04 -0700191 if (kGL_GrGLStandard == standard) {
192 if (version >= GR_GL_VER(3, 0)) {
193 fBindFragDataLocationSupport = true;
194 }
195 } else {
196 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
197 fBindFragDataLocationSupport = true;
198 }
joshualittc1f56b52015-06-22 12:31:31 -0700199 }
200
joshualitt7bdd70a2015-10-01 06:28:11 -0700201 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
202
kkinnunene06ed252016-02-16 23:15:40 -0800203 if (kGL_GrGLStandard == standard) {
204 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
205 // We also require textureSize() support for rectangle 2D samplers which was added in
206 // GLSL 1.40.
207 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
208 fRectangleTextureSupport = true;
209 }
bsalomone179a912016-01-20 06:18:10 -0800210 }
kkinnunene06ed252016-02-16 23:15:40 -0800211 } else {
212 // Command buffer exposes this in GL ES context for Chromium reasons,
213 // but it should not be used. Also, at the time of writing command buffer
214 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800215 }
216
bsalomoncdee0092016-01-08 13:20:12 -0800217 if (kGL_GrGLStandard == standard) {
218 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
219 fTextureSwizzleSupport = true;
220 }
221 } else {
222 if (version >= GR_GL_VER(3,0)) {
223 fTextureSwizzleSupport = true;
224 }
225 }
226
cblume09bd2c02016-03-01 14:08:28 -0800227 if (kGL_GrGLStandard == standard) {
228 fMipMapLevelAndLodControlSupport = true;
229 } else if (kGLES_GrGLStandard == standard) {
230 if (version >= GR_GL_VER(3,0)) {
231 fMipMapLevelAndLodControlSupport = true;
232 }
233 }
234
bsalomon88c7b982015-07-31 11:20:16 -0700235#ifdef SK_BUILD_FOR_WIN
236 // We're assuming that on Windows Chromium we're using ANGLE.
237 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
238 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700239 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700240 fRGBA8888PixelsOpsAreSlow = isANGLE;
241 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
242 // check DX11 ANGLE.
243 fPartialFBOReadIsSlow = isANGLE;
244#endif
245
ericrkb4ecabd2016-03-11 15:18:20 -0800246 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
247 bool isMAC = false;
248#ifdef SK_BUILD_FOR_MAC
249 isMAC = true;
250#endif
251
252 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
253 // vis-versa.
254 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
255
Brian Salomond17b4a62017-05-23 16:53:47 -0400256 if (kGL_GrGLStandard == standard) {
257 if (version >= GR_GL_VER(4,4) || ctxInfo.hasExtension("GL_ARB_clear_texture")) {
258 // glClearTexImage seems to have a bug in NVIDIA drivers that was fixed sometime between
259 // 340.96 and 367.57.
260 if (ctxInfo.driver() != kNVIDIA_GrGLDriver ||
261 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(367, 57)) {
262 fClearTextureSupport = true;
263 }
264 }
265 } else if (ctxInfo.hasExtension("GL_EXT_clear_texture")) {
266 // Calling glClearTexImage crashes on the NexusPlayer.
267 if (kPowerVRRogue_GrGLRenderer != ctxInfo.renderer()) {
268 fClearTextureSupport = true;
269 }
270 }
271
cdalton4cd67132015-06-10 19:23:46 -0700272 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700273 * GrShaderCaps fields
274 **************************************************************************/
275
egdaniel0a482332015-10-26 08:59:10 -0700276 // This must be called after fCoreProfile is set on the GrGLCaps
277 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500278 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700279
csmartdalton008b9d82017-02-22 12:00:42 -0700280 if (!contextOptions.fSuppressPathRendering) {
281 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
282 }
egdaniel05ded892015-10-26 07:38:05 -0700283
284 // For now these two are equivalent but we could have dst read in shader via some other method.
285 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500286 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700287
288 // Enable supported shader-related caps
289 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500290 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700291 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
292 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500293 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700294 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500295 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700296 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500297 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800298 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700299 }
300 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500301 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700302
Brian Salomon1edc5b92016-11-29 13:43:46 -0500303 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700304 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800305
csmartdalton1d2aed02017-02-15 21:43:20 -0700306 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
307
Brian Salomon1edc5b92016-11-29 13:43:46 -0500308 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800309 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700310 }
311
cdalton9c3f1432016-03-11 10:07:37 -0800312 // Protect ourselves against tracking huge amounts of texture state.
313 static const uint8_t kMaxSaneSamplers = 32;
314 GrGLint maxSamplers;
315 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500316 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
317 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800318 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500319 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800320 }
321 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500322 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800323 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500324 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800325
Brian Salomonf26f7a02016-11-15 14:05:01 -0500326 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500327 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
328 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500329 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500330 shaderCaps->fImageLoadStoreSupport = true;
331 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500332 }
333 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500334 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500335 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500336 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500337 // Protect ourselves against tracking huge amounts of image state.
338 static constexpr int kMaxSaneImages = 4;
339 GrGLint maxUnits;
340 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500341 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500342 &shaderCaps->fMaxVertexImageStorages);
343 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500344 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500345 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500346 }
347 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500348 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500349 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500350 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500351 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500352 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
353 maxUnits), kMaxSaneImages);
354 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
355 shaderCaps->fMaxVertexImageStorages);
356 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
357 shaderCaps->fMaxGeometryImageStorages);
358 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
359 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500360 }
361
egdaniel05ded892015-10-26 07:38:05 -0700362 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700363 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000364 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700365
csmartdalton485a1202016-07-13 10:16:32 -0700366 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
367 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
368 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
369 // limit this decision to specific GPU families rather than basing it on the vendor alone.
370 if (!GR_GL_MUST_USE_VBO &&
371 !fIsCoreProfile &&
372 (kARM_GrGLVendor == ctxInfo.vendor() ||
373 kImagination_GrGLVendor == ctxInfo.vendor() ||
374 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
375 fPreferClientSideDynamicBuffers = true;
376 }
377
Eric Karl5c779752017-05-08 12:02:07 -0700378 if (!contextOptions.fAvoidStencilBuffers) {
379 // To reduce surface area, if we avoid stencil buffers, we also disable MSAA.
380 this->initFSAASupport(contextOptions, ctxInfo, gli);
381 this->initStencilSupport(ctxInfo);
382 }
cdalton1dd05422015-06-12 09:01:18 -0700383 this->initBlendEqationSupport(ctxInfo);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000384
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000385 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000386 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
387 // extension includes glMapBuffer.
388 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
389 fMapBufferFlags |= kSubset_MapFlag;
390 fMapBufferType = kMapBufferRange_MapBufferType;
391 } else {
392 fMapBufferType = kMapBuffer_MapBufferType;
393 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000394 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000395 // Unextended GLES2 doesn't have any buffer mapping.
396 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800397 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800398 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
399 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800400 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
401 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
402 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000403 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
404 fMapBufferFlags = kCanMap_MapFlag;
405 fMapBufferType = kMapBuffer_MapBufferType;
406 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000407 }
408
jvanverthd7a2c1f2015-12-07 07:36:44 -0800409 if (kGL_GrGLStandard == standard) {
410 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
411 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700412 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800413 } else {
414 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
415 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700416 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
417 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800418 }
419 }
420
joshualitte5b74c62015-06-01 14:17:47 -0700421 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
422 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700423 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700424#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500425 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
426 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
427 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700428 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700429#else
cdalton397536c2016-03-25 12:15:03 -0700430 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700431#endif
joshualitte5b74c62015-06-01 14:17:47 -0700432 }
433
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000434 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000435 fNPOTTextureTileSupport = true;
436 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000437 } else {
438 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000439 // ES3 has no limitations.
440 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
441 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000442 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
443 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
444 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
445 // to alllow arbitrary wrap modes, however.
446 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000447 }
448
bsalomone72bd022015-10-26 07:33:03 -0700449 // Using MIPs on this GPU seems to be a source of trouble.
450 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
451 fMipMapSupport = false;
452 }
453
bsalomon@google.combcce8922013-03-25 15:38:39 +0000454 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
455 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
456 // Our render targets are always created with textures as the color
457 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000458 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000459
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000460 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
461
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000462 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700463 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000464
robertphillips1b8e1b52015-06-24 06:54:10 -0700465#if 0
466 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
467 kQualcomm_GrGLVendor != ctxInfo.vendor();
468#endif
469
csmartdalton9bc11872016-08-09 12:42:47 -0700470 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
471 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700472 }
473
bsalomon63b21962014-11-05 07:05:34 -0800474 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800475 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400476 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
477 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800478 fUseDrawInsteadOfClear = true;
479 }
480
joshualitt83bc2292015-06-18 14:18:02 -0700481 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
482 fUseDrawInsteadOfPartialRenderTargetWrite = true;
483 }
484
bsalomonbabafcc2016-02-16 11:36:47 -0800485 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
486 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
487 fUseDrawInsteadOfPartialRenderTargetWrite = true;
488 fUseDrawInsteadOfAllRenderTargetWrites = true;
489 }
490
robertphillips63926682015-08-20 09:39:02 -0700491#ifdef SK_BUILD_FOR_WIN
492 // On ANGLE deferring flushes can lead to GPU starvation
493 fPreferVRAMUseOverFlushes = !isANGLE;
494#endif
495
bsalomon7dea7b72015-08-19 08:26:51 -0700496 if (kChromium_GrGLDriver == ctxInfo.driver()) {
497 fMustClearUploadedBufferData = true;
498 }
499
bsalomond08ea5f2015-02-20 06:58:13 -0800500 if (kGL_GrGLStandard == standard) {
501 // ARB allows mixed size FBO attachments, EXT does not.
502 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
503 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
504 fOversizedStencilSupport = true;
505 } else {
506 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
507 }
508 } else {
509 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
510 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
511 }
512
joshualitt58001552015-06-26 12:46:36 -0700513 if (kGL_GrGLStandard == standard) {
514 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
515 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700516 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700517 version >= GR_GL_VER(3, 2) ||
518 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
519 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
520 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700521 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700522 version >= GR_GL_VER(3, 0) ||
523 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
524 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
525 }
526
cdalton06604b92016-02-05 10:09:51 -0800527 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700528 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
529 ctxInfo.hasExtension("GL_ARB_draw_indirect");
530 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
531 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700532 (fDrawIndirectSupport &&
533 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700534 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700535 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800536 } else {
537 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700538 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
539 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
540 fBaseInstanceSupport = fDrawIndirectSupport &&
541 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700542 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800543 }
544
Brian Salomon1edc5b92016-11-29 13:43:46 -0500545 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800546
547 if (contextOptions.fUseShaderSwizzling) {
548 fTextureSwizzleSupport = false;
549 }
550
ethannicholas28ef4452016-03-25 09:26:03 -0700551 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700552 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
553 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700554 fSampleShadingSupport = true;
555 }
556 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
557 fSampleShadingSupport = true;
558 }
559
jvanverth84741b32016-09-30 08:39:02 -0700560 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
561 if (kGL_GrGLStandard == standard) {
562 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
563 fFenceSyncSupport = true;
564 }
565 } else if (version >= GR_GL_VER(3, 0)) {
566 fFenceSyncSupport = true;
567 }
568
Brian Osman0eb4ecb2017-05-16 13:30:11 -0400569 // Safely moving textures between contexts requires fences.
Brian Osman2c2bc112017-02-28 10:02:49 -0500570 fCrossContextTextureSupport = fFenceSyncSupport;
Brian Osman2c2bc112017-02-28 10:02:49 -0500571
brianosman131ff132016-06-07 14:22:44 -0700572 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
573 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
574 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
575 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700576 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700577 (contextOptions.fDoManualMipmapping ||
578 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700579 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
580 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700581 fDoManualMipmapping = true;
582 }
583
brianosman20471892016-12-02 06:43:32 -0800584 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800585 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
586 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800587
Brian Salomon028a9a52017-05-11 11:39:08 -0400588 // See http://crbug.com/710443
589#ifdef SK_BUILD_FOR_MAC
590 if (kIntel6xxx_GrGLRenderer == ctxInfo.renderer()) {
Eric Karlaeaf22b2017-05-18 15:08:09 -0700591 fClearToBoundaryValuesIsBroken = true;
Brian Salomon028a9a52017-05-11 11:39:08 -0400592 }
593#endif
Chris Dalton9926f4b2017-05-17 15:15:50 -0600594 if (kQualcomm_GrGLVendor == ctxInfo.vendor()) {
595 fDrawArraysBaseVertexIsBroken = true;
596 }
Brian Salomon028a9a52017-05-11 11:39:08 -0400597
bsalomoncdee0092016-01-08 13:20:12 -0800598 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
599 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800600 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700601
602 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500603 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000604}
605
egdaniel472d44e2015-10-22 08:20:00 -0700606const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
607 bool isCoreProfile) {
608 switch (generation) {
609 case k110_GrGLSLGeneration:
610 if (kGLES_GrGLStandard == standard) {
611 // ES2s shader language is based on version 1.20 but is version
612 // 1.00 of the ES language.
613 return "#version 100\n";
614 } else {
615 SkASSERT(kGL_GrGLStandard == standard);
616 return "#version 110\n";
617 }
618 case k130_GrGLSLGeneration:
619 SkASSERT(kGL_GrGLStandard == standard);
620 return "#version 130\n";
621 case k140_GrGLSLGeneration:
622 SkASSERT(kGL_GrGLStandard == standard);
623 return "#version 140\n";
624 case k150_GrGLSLGeneration:
625 SkASSERT(kGL_GrGLStandard == standard);
626 if (isCoreProfile) {
627 return "#version 150\n";
628 } else {
629 return "#version 150 compatibility\n";
630 }
631 case k330_GrGLSLGeneration:
632 if (kGLES_GrGLStandard == standard) {
633 return "#version 300 es\n";
634 } else {
635 SkASSERT(kGL_GrGLStandard == standard);
636 if (isCoreProfile) {
637 return "#version 330\n";
638 } else {
639 return "#version 330 compatibility\n";
640 }
641 }
cdalton33ad7012016-02-22 07:55:44 -0800642 case k400_GrGLSLGeneration:
643 SkASSERT(kGL_GrGLStandard == standard);
644 if (isCoreProfile) {
645 return "#version 400\n";
646 } else {
647 return "#version 400 compatibility\n";
648 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500649 case k420_GrGLSLGeneration:
650 SkASSERT(kGL_GrGLStandard == standard);
651 if (isCoreProfile) {
652 return "#version 420\n";
653 }
654 else {
655 return "#version 420 compatibility\n";
656 }
egdaniel472d44e2015-10-22 08:20:00 -0700657 case k310es_GrGLSLGeneration:
658 SkASSERT(kGLES_GrGLStandard == standard);
659 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800660 case k320es_GrGLSLGeneration:
661 SkASSERT(kGLES_GrGLStandard == standard);
662 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700663 }
664 return "<no version>";
665}
666
egdaniel05ded892015-10-26 07:38:05 -0700667void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700668 GrGLStandard standard = ctxInfo.standard();
669 GrGLVersion version = ctxInfo.version();
670
671 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500672 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700673 **************************************************************************/
674
Brian Salomon1edc5b92016-11-29 13:43:46 -0500675 GrShaderCaps* shaderCaps = fShaderCaps.get();
676 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700677 if (kGLES_GrGLStandard == standard) {
678 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500679 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
680 shaderCaps->fFBFetchSupport = true;
681 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
682 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700683 }
684 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
685 // 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 -0500686 shaderCaps->fFBFetchNeedsCustomOutput = false;
687 shaderCaps->fFBFetchSupport = true;
688 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
689 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700690 }
691 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
692 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500693 shaderCaps->fFBFetchNeedsCustomOutput = false;
694 shaderCaps->fFBFetchSupport = true;
695 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
696 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700697 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500698 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700699 }
700
egdaniel7517e452016-09-20 13:00:26 -0700701 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
702 // Galaxy S7.
703 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
704 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500705 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700706 }
707
Brian Salomon1edc5b92016-11-29 13:43:46 -0500708 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700709
cdaltonc08f1962016-02-12 12:14:06 -0800710 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500711 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800712 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500713 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800714 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
715 }
716
717 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500718 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800719 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
720 } else {
721 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500722 shaderCaps->fNoPerspectiveInterpolationSupport = true;
723 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800724 "GL_NV_shader_noperspective_interpolation";
725 }
726 }
727
cdalton33ad7012016-02-22 07:55:44 -0800728 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500729 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800730 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
731 } else {
732 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500733 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800734 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500735 shaderCaps->fMultisampleInterpolationSupport = true;
736 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800737 "GL_OES_shader_multisample_interpolation";
738 }
739 }
740
741 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500742 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800743 } else {
744 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500745 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800746 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500747 shaderCaps->fSampleVariablesSupport = true;
748 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800749 }
750 }
751
Brian Salomon1edc5b92016-11-29 13:43:46 -0500752 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700753 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
754 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500755 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700756 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
757 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800758 }
759
egdaniel472d44e2015-10-22 08:20:00 -0700760 // 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 -0500761 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700762
763 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
764 // function that may require a gradient calculation inside a conditional block may return
765 // undefined results". This appears to be an issue with the 'any' call since even the simple
766 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
767 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500768 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700769
Brian Salomon1edc5b92016-11-29 13:43:46 -0500770 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
771 shaderCaps->fGLSLGeneration,
772 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800773
Brian Salomon1edc5b92016-11-29 13:43:46 -0500774 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
775 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800776 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800777
778 // Frag Coords Convention support is not part of ES
779 // Known issue on at least some Intel platforms:
780 // http://code.google.com/p/skia/issues/detail?id=946
781 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
782 kGLES_GrGLStandard != standard &&
783 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
784 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500785 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800786 }
787
788 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500789 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800790 }
791
cdalton9c3f1432016-03-11 10:07:37 -0800792 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
793 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500794 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800795 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
796 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
797 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500798 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800799 }
800 }
801
Brian Salomon1edc5b92016-11-29 13:43:46 -0500802 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800803 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500804 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800805 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500806 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800807 }
808 }
809
cdaltonc04ce672016-03-11 14:07:38 -0800810 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500811 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800812 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500813 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700814 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
815 }
816
Brian Salomon1edc5b92016-11-29 13:43:46 -0500817 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700818 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500819 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700820 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
821 } else {
822 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
823 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500824 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700825 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500826 shaderCaps->fTexelBufferSupport = true;
827 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700828 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500829 shaderCaps->fTexelBufferSupport = true;
830 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700831 }
cdaltonc04ce672016-03-11 14:07:38 -0800832 }
833 }
834
egdaniel8dcdedc2015-11-11 06:27:20 -0800835 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
836 // the abs first in a separate expression.
837 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500838 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800839 }
840
bsalomon7ea33f52015-11-22 14:51:00 -0800841 // 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 -0800842 // thus must us -1.0 * %s.x to work correctly
843 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500844 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800845 }
egdaniel138c2632016-08-17 10:59:00 -0700846
847 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
848 // the original dst color when reading the outColor even after being written to. By using a
849 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500850 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
851 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700852 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700853
854#ifdef SK_BUILD_FOR_MAC
855 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
856 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
857 // term plan for this WAR is for it to eventually be baked into SkSL.
858 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
859#endif
egdaniel472d44e2015-10-22 08:20:00 -0700860}
861
kkinnunencfe62e32015-07-01 02:58:50 -0700862bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700863 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
864
865 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700866 return false;
867 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700868
kkinnunencfe62e32015-07-01 02:58:50 -0700869 if (kGL_GrGLStandard == ctxInfo.standard()) {
870 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
871 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
872 return false;
873 }
874 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700875 if (!hasChromiumPathRendering &&
876 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700877 return false;
878 }
879 }
880 // We only support v1.3+ of GL_NV_path_rendering which allows us to
881 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
882 // additions are detected by checking the existence of the function.
883 // We also use *Then* functions that not all drivers might have. Check
884 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800885 if (!gli->fFunctions.fStencilThenCoverFillPath ||
886 !gli->fFunctions.fStencilThenCoverStrokePath ||
887 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
888 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
889 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700890 return false;
891 }
892 return true;
893}
bsalomon1aa20292016-01-22 08:16:09 -0800894
Brian Salomon71d9d842016-11-03 13:42:00 -0400895bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800896 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800897 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800898 std::function<bool ()> bindRenderTarget,
899 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400900 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800901 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400902 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800903 return false;
904 }
bsalomon7928ef62016-01-05 10:26:39 -0800905
Brian Salomonbf7b6202016-11-11 16:08:03 -0500906 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
907 return false;
908 }
909
bsalomon76148af2016-01-12 11:13:47 -0800910 GrGLenum readFormat;
911 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400912 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800913 return false;
914 }
915
bsalomon1aa20292016-01-22 08:16:09 -0800916 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800917 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
918 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
919 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
920 // 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 -0500921 // The manual does not seem to fully match the spec as the spec allows integer formats
922 // when the bound color buffer is an integer buffer. It doesn't specify which integer
923 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500924 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
925 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
926 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800927 return false;
928 }
929 // There is also a set of allowed types, but all the types we use are in the set:
930 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
931 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
932 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
933 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
934 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
935 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
936 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800937 return true;
piotaixre4b23142014-10-02 10:57:53 -0700938 }
bsalomon7928ef62016-01-05 10:26:39 -0800939
bsalomon76148af2016-01-12 11:13:47 -0800940 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500941 switch (fConfigTable[surfaceConfig].fFormatType) {
942 case kNormalizedFixedPoint_FormatType:
943 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
944 return true;
945 }
946 break;
947 case kInteger_FormatType:
948 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
949 return true;
950 }
951 break;
952 case kFloat_FormatType:
953 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
954 return true;
955 }
956 break;
bsalomon7928ef62016-01-05 10:26:39 -0800957 }
958
Brian Salomon71d9d842016-11-03 13:42:00 -0400959 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800960 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400961 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800962 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800963 if (!bindRenderTarget()) {
964 return false;
965 }
966 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
967 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800968 rpFormat->fFormat = format;
969 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800970 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800971 }
972
Brian Salomon71d9d842016-11-03 13:42:00 -0400973 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
974 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700975}
976
Eric Karl5c779752017-05-08 12:02:07 -0700977void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
978 const GrGLInterface* gli) {
979 // We need dual source blending and the ability to disable multisample in order to support mixed
980 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
981 // renderer is available and enabled; no other path renderers support this feature.
982 if (fMultisampleDisableSupport &&
983 this->shaderCaps()->dualSourceBlendingSupport() &&
984 this->shaderCaps()->pathRenderingSupport() &&
985 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
986 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
987 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
988 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
989 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
990 kChromium_GrGLDriver == ctxInfo.driver())) {
991 fDiscardRenderTargetSupport = false;
992 fInvalidateFBType = kNone_InvalidateFBType;
993 }
994 }
995
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000996 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000997 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
998 // ES3 driver bugs on at least one device with a tiled GPU (N10).
999 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1000 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1001 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1002 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001003 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001004 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001005 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001006 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001007 fMSFBOType = kStandard_MSFBOType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001008 } else if (ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
1009 fMSFBOType = kEXT_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001010 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1011 fMSFBOType = kES_Apple_MSFBOType;
1012 }
bsalomon083617b2016-02-12 12:10:14 -08001013
1014 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
1015 // is available.
1016 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001017 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001018 kNoMSAADst_BlitFramebufferFlag |
Brian Salomone5e7eb12016-10-14 16:18:33 -04001019 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001020 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1021 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001022 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1023 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001024 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1025 kResolveMustBeFull_BlitFrambufferFlag |
1026 kNoMSAADst_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001027 kNoFormatConversion_BlitFramebufferFlag |
1028 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001029 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001030 } else {
egdanieleed519e2016-01-15 11:36:18 -08001031 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001032 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001033 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001034 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1035 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1036 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001037 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001038 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1039 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001040 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001041 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001042 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001043 }
Eric Karl5c779752017-05-08 12:02:07 -07001044
1045 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
1046 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
1047 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
1048 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
1049 }
1050 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
1051 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
1052 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
1053 // This is to guard against platforms that may not support as many samples for
1054 // glRasterSamples as they do for framebuffers.
1055 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
1056 }
1057 fMaxColorSampleCount = fMaxStencilSampleCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001058}
1059
cdalton1dd05422015-06-12 09:01:18 -07001060void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001061 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001062
1063 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1064 // for now until its own blacklists can be updated.
1065 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001066 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001067 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001068 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001069 return;
1070 }
1071
1072 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1073 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001074 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001075 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1076 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001077 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001078 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1079 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1080 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1081 return;
1082 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1083 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001084 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001085 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1086 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001087 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001088 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1089 // slow on a particular platform.
1090 } else {
1091 return; // No advanced blend support.
1092 }
1093
1094 SkASSERT(this->advancedBlendEquationSupport());
1095
csmartdalton3b88a032016-08-04 14:43:49 -07001096 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1097 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1098 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001099 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1100 (1 << kColorBurn_GrBlendEquation);
1101 }
joel.liang9764c402015-07-09 19:46:18 -07001102 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1103 // Blacklist color-burn on ARM until the fix is released.
1104 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1105 }
cdalton1dd05422015-06-12 09:01:18 -07001106}
1107
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001108namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001109const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001110}
1111
Eric Karl5c779752017-05-08 12:02:07 -07001112void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001113
1114 // Build up list of legal stencil formats (though perhaps not supported on
1115 // the particular gpu/driver) from most preferred to least.
1116
1117 // these consts are in order of most preferred to least preferred
1118 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1119
1120 static const StencilFormat
1121 // internal Format stencil bits total bits packed?
1122 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1123 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1124 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1125 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001126 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001127 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1128
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001129 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001130 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001131 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001132 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1133 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1134
1135 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1136 // require FBO support we can expect these are legal formats and don't
1137 // check. These also all support the unsized GL_STENCIL_INDEX.
1138 fStencilFormats.push_back() = gS8;
1139 fStencilFormats.push_back() = gS16;
1140 if (supportsPackedDS) {
1141 fStencilFormats.push_back() = gD24S8;
1142 }
1143 fStencilFormats.push_back() = gS4;
1144 if (supportsPackedDS) {
1145 fStencilFormats.push_back() = gDS;
1146 }
1147 } else {
1148 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1149 // for other formats.
1150 // ES doesn't support using the unsized format.
1151
1152 fStencilFormats.push_back() = gS8;
1153 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001154 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1155 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001156 fStencilFormats.push_back() = gD24S8;
1157 }
1158 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1159 fStencilFormats.push_back() = gS4;
1160 }
1161 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001162}
1163
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001164SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001165
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001166 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001167
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001168 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001169 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001170 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001171 i,
1172 fStencilFormats[i].fStencilBits,
1173 fStencilFormats[i].fTotalBits);
1174 }
1175
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001176 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001177 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001178 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001179 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001180 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001181 "IMG MS To Texture",
1182 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001183 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001184 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001185 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001186 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1187 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1188 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1189 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1190 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1191 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001192 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001193
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001194 static const char* kInvalidateFBTypeStr[] = {
1195 "None",
1196 "Discard",
1197 "Invalidate",
1198 };
1199 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1200 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1201 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1202 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001203
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001204 static const char* kMapBufferTypeStr[] = {
1205 "None",
1206 "MapBuffer",
1207 "MapBufferRange",
1208 "Chromium",
1209 };
1210 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1211 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1212 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1213 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1214 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1215
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001216 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001217 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001218 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001219 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001220 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001221 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1222 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1223 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1224 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001225
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001226 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001227 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1228 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001229 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001230 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1231 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001232 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001233 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1234 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1235 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001236 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1237 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001238 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001239 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001240 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001241 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001242 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001243
1244 r.append("Configs\n-------\n");
1245 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1246 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001247 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1248 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001249 i,
1250 fConfigTable[i].fFlags,
1251 fConfigTable[i].fFormats.fBaseInternalFormat,
1252 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001253 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1254 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001255 fConfigTable[i].fFormats.fExternalType,
1256 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001257 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001258 }
1259
jvanverthe9c0fc62015-04-29 11:18:05 -07001260 return r;
1261}
1262
jvanverthe9c0fc62015-04-29 11:18:05 -07001263static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1264 switch (p) {
1265 case kLow_GrSLPrecision:
1266 return GR_GL_LOW_FLOAT;
1267 case kMedium_GrSLPrecision:
1268 return GR_GL_MEDIUM_FLOAT;
1269 case kHigh_GrSLPrecision:
1270 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001271 default:
1272 SkFAIL("Unexpected precision type.");
1273 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001274 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001275}
1276
1277static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1278 switch (type) {
1279 case kVertex_GrShaderType:
1280 return GR_GL_VERTEX_SHADER;
1281 case kGeometry_GrShaderType:
1282 return GR_GL_GEOMETRY_SHADER;
1283 case kFragment_GrShaderType:
1284 return GR_GL_FRAGMENT_SHADER;
1285 }
1286 SkFAIL("Unknown shader type.");
1287 return -1;
1288}
1289
jvanverthcba99b82015-06-24 06:59:57 -07001290void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001291 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001292 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001293 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1294 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1295 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1296 if (kGeometry_GrShaderType != s) {
1297 GrShaderType shaderType = static_cast<GrShaderType>(s);
1298 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001299 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001300 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001301 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1302 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1303 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1304 GrGLint range[2];
1305 GrGLint bits;
1306 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1307 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001308 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1309 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1310 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001311 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001312 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001313 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001314 else if (!shaderCaps->fShaderPrecisionVaries) {
1315 shaderCaps->fShaderPrecisionVaries =
1316 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001317 }
1318 }
1319 }
1320 }
1321 }
1322 }
1323 else {
1324 // 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 -05001325 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001326 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1327 if (kGeometry_GrShaderType != s) {
1328 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001329 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1330 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1331 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001332 }
1333 }
1334 }
1335 }
1336 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1337 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1338 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1339 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001340 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001341 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001342 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1343 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001344 }
1345 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001346 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001347}
1348
bsalomon41e4384e2016-01-08 09:12:44 -08001349bool GrGLCaps::bgraIsInternalFormat() const {
1350 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1351}
1352
bsalomon76148af2016-01-12 11:13:47 -08001353bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1354 GrGLenum* internalFormat, GrGLenum* externalFormat,
1355 GrGLenum* externalType) const {
1356 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1357 externalFormat, externalType)) {
1358 return false;
1359 }
1360 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1361 return true;
1362}
1363
bsalomon76148af2016-01-12 11:13:47 -08001364bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1365 GrGLenum* externalFormat, GrGLenum* externalType) const {
1366 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1367 externalFormat, externalType)) {
1368 return false;
1369 }
1370 return true;
1371}
1372
1373bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
bsalomon76148af2016-01-12 11:13:47 -08001374 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1375 return true;
1376}
1377
1378bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1379 ExternalFormatUsage usage, GrGLenum* externalFormat,
1380 GrGLenum* externalType) const {
1381 SkASSERT(externalFormat && externalType);
bsalomon76148af2016-01-12 11:13:47 -08001382
1383 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1384 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1385
1386 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1387 // made to work in many cases using glPixelStore and what not but is not needed currently.
1388 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1389 return false;
1390 }
1391
1392 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1393 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1394
bsalomone9573312016-01-25 14:33:25 -08001395 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1396 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1397 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1398 // texture, not the red component.
1399 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1400 if (this->textureRedSupport()) {
1401 SkASSERT(GR_GL_RED == *externalFormat);
1402 *externalFormat = GR_GL_ALPHA;
1403 }
1404 }
1405
bsalomon76148af2016-01-12 11:13:47 -08001406 return true;
1407}
1408
brianosman20471892016-12-02 06:43:32 -08001409void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1410 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001411 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001412 /*
1413 Comments on renderability of configs on various GL versions.
1414 OpenGL < 3.0:
1415 no built in support for render targets.
1416 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1417 format RGB, RGBA and NV float formats we don't use.
1418 This is the following:
1419 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1420 RGB10_A2, RGBA12,RGBA16
1421 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1422 since they aren't required by later standards and the driver can simply return
1423 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1424 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1425 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1426 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1427 This adds a lot of additional renderable sized formats, including ALPHA8.
1428 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1429 16F, 32I, 32UI, and 32F variants).
1430 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1431
1432 For both the above extensions we limit ourselves to those that are also required by
1433 OpenGL 3.0.
1434
1435 OpenGL 3.0:
1436 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1437 but are not required to be supported as renderable textures/renderbuffer.
1438 Required renderable color formats:
1439 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1440 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1441 RGB10_A2.
1442 - R11F_G11F_B10F.
1443 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1444 and RG8UI.
1445 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1446 - ALPHA8
1447
1448 OpenGL 3.1, 3.2, 3.3
1449 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1450 OpengGL 3.3, 4.0, 4.1
1451 Adds RGB10_A2UI.
1452 OpengGL 4.2
1453 Adds
1454 - RGB5_A1, RGBA4
1455 - RGB565
1456 OpenGL 4.4
1457 Does away with the separate list and adds a column to the sized internal color format
1458 table. However, no new formats become required color renderable.
1459
1460 ES 2.0
1461 color renderable: RGBA4, RGB5_A1, RGB565
1462 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1463 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1464 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1465 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1466 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1467 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1468
1469 ES 3.0
1470 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1471 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1472 RGB5_A1.
1473 - RGB8 and RGB565.
1474 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1475 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1476 ES 3.1
1477 Adds RGB10_A2, RGB10_A2UI,
1478 ES 3.2
1479 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1480 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001481 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1482 ConfigInfo::kFBOColorAttachment_Flag;
1483 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001484 if (kNone_MSFBOType != fMSFBOType) {
1485 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1486 }
bsalomon41e4384e2016-01-08 09:12:44 -08001487 GrGLStandard standard = ctxInfo.standard();
1488 GrGLVersion version = ctxInfo.version();
1489
cblume790d5132016-02-29 11:13:29 -08001490 bool texStorageSupported = false;
1491 if (kGL_GrGLStandard == standard) {
1492 // The EXT version can apply to either GL or GLES.
1493 texStorageSupported = version >= GR_GL_VER(4,2) ||
1494 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1495 ctxInfo.hasExtension("GL_EXT_texture_storage");
1496 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001497 texStorageSupported = version >= GR_GL_VER(3,0) ||
1498 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001499 }
1500
1501 // TODO: remove after command buffer supports full ES 3.0
1502 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1503 kChromium_GrGLDriver == ctxInfo.driver()) {
1504 texStorageSupported = false;
1505 }
1506
cdalton74b8d322016-04-11 14:47:28 -07001507 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1508
bsalomon30447372015-12-21 09:03:05 -08001509 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1510 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001511 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001512 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001513 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001514 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001515
1516 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1517 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001518 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1519 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001520 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001521 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001522 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1523 if (kGL_GrGLStandard == standard) {
1524 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1525 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001526 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001527 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1528 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1529 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1530 }
egdaniel4999df82016-01-07 17:06:04 -08001531 }
cblume790d5132016-02-29 11:13:29 -08001532 if (texStorageSupported) {
1533 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1534 }
cdalton74b8d322016-04-11 14:47:28 -07001535 if (texelBufferSupport) {
1536 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1537 }
bsalomoncdee0092016-01-08 13:20:12 -08001538 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001539
bsalomon76148af2016-01-12 11:13:47 -08001540 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1541 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001542 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001543 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001544 if (kGL_GrGLStandard == standard) {
1545 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1546 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1547 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1548 // Since the internal format is RGBA8, it is also renderable.
1549 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1550 allRenderFlags;
1551 }
1552 } else {
1553 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1554 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1555 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1556 // The APPLE extension doesn't make this renderable.
1557 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1558 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1559 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1560 // Though, that seems to not be the case if the texture storage extension is
1561 // present. The specs don't exactly make that clear.
1562 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1563 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1564 }
1565 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1566 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001567 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001568 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001569 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001570 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1571 ConfigInfo::kRenderableWithMSAA_Flag;
1572 }
1573 }
1574 }
cblume790d5132016-02-29 11:13:29 -08001575 if (texStorageSupported) {
1576 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1577 }
bsalomoncdee0092016-01-08 13:20:12 -08001578 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001579
brianosmana6359362016-03-21 06:55:37 -07001580 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001581 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001582 if (kGL_GrGLStandard == standard) {
1583 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001584 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001585 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1586 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1587 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001588 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001589 }
1590 }
1591 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001592 if (fSRGBSupport) {
1593 fSRGBWriteControl = true;
1594 }
bsalomon41e4384e2016-01-08 09:12:44 -08001595 } else {
brianosman20471892016-12-02 06:43:32 -08001596 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1597#if defined(SK_CPU_X86)
1598 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1599 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1600 // blacklist that device (and any others that might be sharing the same driver).
1601 fSRGBSupport = false;
1602 }
1603#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001604 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1605 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001606 // See https://bug.skia.org/5329 for Adreno4xx issue.
1607 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1608 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001609 }
brianosman20471892016-12-02 06:43:32 -08001610 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1611 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1612 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001613 fSRGBSupport = false;
1614 }
brianosman20471892016-12-02 06:43:32 -08001615
1616 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1617 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1618 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1619 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1620 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1621 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1622 // affects Windows.
1623 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1624 fSRGBSupport = false;
1625 }
1626
bsalomon30447372015-12-21 09:03:05 -08001627 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1628 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1629 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1630 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001631 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1632 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001633 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001634 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001635 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001636 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1637 allRenderFlags;
1638 }
cblume790d5132016-02-29 11:13:29 -08001639 if (texStorageSupported) {
1640 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1641 }
bsalomoncdee0092016-01-08 13:20:12 -08001642 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
brianosmana6359362016-03-21 06:55:37 -07001643 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1644 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1645 // is in this format, for example).
1646 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1647 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1648 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1649 // external format is GL_BGRA.
1650 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1651 GR_GL_BGRA;
1652 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1653 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001654 if (fSRGBSupport && kGL_GrGLStandard == standard) {
brianosmana6359362016-03-21 06:55:37 -07001655 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1656 allRenderFlags;
1657 }
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001658
brianosmana6359362016-03-21 06:55:37 -07001659 if (texStorageSupported) {
1660 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1661 }
1662 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1663
Brian Salomonbf7b6202016-11-11 16:08:03 -05001664 bool hasIntegerTextures;
1665 if (standard == kGL_GrGLStandard) {
1666 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1667 ctxInfo.hasExtension("GL_EXT_texture_integer");
1668 } else {
1669 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1670 }
1671 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1672 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1673 hasIntegerTextures = false;
1674 }
1675 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1676 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1677 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1678 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1679 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1680 // We currently only support using integer textures as srcs, not for rendering (even though GL
1681 // allows it).
1682 if (hasIntegerTextures) {
1683 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1684 ConfigInfo::kFBOColorAttachment_Flag;
1685 if (texStorageSupported) {
1686 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1687 ConfigInfo::kCanUseTexStorage_Flag;
1688 }
1689 }
1690
bsalomon30447372015-12-21 09:03:05 -08001691 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1692 if (this->ES2CompatibilitySupport()) {
1693 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1694 } else {
1695 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1696 }
bsalomon76148af2016-01-12 11:13:47 -08001697 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1698 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001699 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001700 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001701 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1702 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001703 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001704 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1705 }
1706 } else {
1707 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1708 }
cblume790d5132016-02-29 11:13:29 -08001709 // 565 is not a sized internal format on desktop GL. So on desktop with
1710 // 565 we always use an unsized internal format to let the system pick
1711 // the best sized format to convert the 565 data to. Since TexStorage
1712 // only allows sized internal formats we disallow it.
1713 //
1714 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1715 // update.
1716 if (texStorageSupported && kGL_GrGLStandard != standard) {
1717 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1718 }
bsalomoncdee0092016-01-08 13:20:12 -08001719 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001720
1721 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1722 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001723 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1724 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001725 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001726 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001727 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1728 if (kGL_GrGLStandard == standard) {
1729 if (version >= GR_GL_VER(4, 2)) {
1730 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1731 }
1732 } else {
1733 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1734 }
cblume790d5132016-02-29 11:13:29 -08001735 if (texStorageSupported) {
1736 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1737 }
bsalomoncdee0092016-01-08 13:20:12 -08001738 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001739
Brian Osmanf4faccd2017-01-10 16:53:58 -05001740 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1741 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1742 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001743 if (this->textureRedSupport()) {
1744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1745 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001746 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1747 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001748 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001749 if (texelBufferSupport) {
1750 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1751 }
bsalomon30447372015-12-21 09:03:05 -08001752 } else {
1753 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1754 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001755 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1756 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001757 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001758 }
bsalomon40170072016-05-05 14:40:03 -07001759 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001760 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1761 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001762 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001763 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1764 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1765 }
cblume790d5132016-02-29 11:13:29 -08001766 if (texStorageSupported) {
1767 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1768 }
bsalomon41e4384e2016-01-08 09:12:44 -08001769
Brian Osmanf4faccd2017-01-10 16:53:58 -05001770 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1771 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1772 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001773 if (this->textureRedSupport()) {
1774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1775 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1776 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1777 GR_GL_RED;
1778 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1779 if (texelBufferSupport) {
1780 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1781 }
1782 } else {
1783 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1784 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1785 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1786 GR_GL_LUMINANCE;
1787 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1788 }
Brian Osman986563b2017-01-10 14:20:02 -05001789#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1790 if (this->textureRedSupport() ||
1791 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1792 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1793 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1794 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1795 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1796 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1797 }
1798#endif
1799 if (texStorageSupported) {
1800 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1801 }
1802
bsalomon41e4384e2016-01-08 09:12:44 -08001803 // Check for [half] floating point texture support
1804 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1805 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1806 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1807 bool hasFPTextures = false;
1808 bool hasHalfFPTextures = false;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001809 bool rgIsTexturable = false;
bsalomon41e4384e2016-01-08 09:12:44 -08001810 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001811 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001812
1813 if (kGL_GrGLStandard == standard) {
1814 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1815 hasFPTextures = true;
1816 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001817 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001818 }
1819 } else {
1820 if (version >= GR_GL_VER(3, 1)) {
1821 hasFPTextures = true;
1822 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001823 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001824 } else {
1825 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1826 ctxInfo.hasExtension("GL_OES_texture_float")) {
1827 hasFPTextures = true;
1828 }
1829 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1830 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1831 hasHalfFPTextures = true;
1832 }
1833 }
1834 }
bsalomon30447372015-12-21 09:03:05 -08001835
csmartdalton6aa0e112017-02-08 16:14:11 -05001836 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1837 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1838 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1839 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1840 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1841 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1842 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1843 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1844 if (hasFPTextures) {
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001845 fConfigTable[fpconfig].fFlags = rgIsTexturable ? ConfigInfo::kTextureable_Flag : 0;
csmartdalton6aa0e112017-02-08 16:14:11 -05001846 // For now we only enable rendering to float on desktop, because on ES we'd have to
1847 // solve many precision issues and no clients actually want this yet.
1848 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1849 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1850 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1851 }
bsalomon41e4384e2016-01-08 09:12:44 -08001852 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001853 if (texStorageSupported) {
1854 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1855 }
1856 if (texelBufferSupport) {
1857 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1858 }
1859 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001860 }
bsalomon30447372015-12-21 09:03:05 -08001861
1862 if (this->textureRedSupport()) {
1863 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1864 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001865 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1866 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001867 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001868 if (texelBufferSupport) {
1869 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1870 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1871 }
bsalomon30447372015-12-21 09:03:05 -08001872 } else {
1873 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1874 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001875 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1876 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001877 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001878 }
Brian Osman3a887252016-11-17 13:27:31 -05001879 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1880 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1881 // returned when we query, but that turns into a bigger refactor, so just work around it.
1882 if (kGL_GrGLStandard == ctxInfo.standard() ||
1883 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001884 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1885 } else {
1886 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1887 }
bsalomon7928ef62016-01-05 10:26:39 -08001888 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001889 if (texStorageSupported) {
1890 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1891 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001892 if (hasHalfFPTextures) {
1893 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1894 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1895 // GL_RED internal format.
1896 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1897 (this->textureRedSupport() &&
1898 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1899 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1900 }
1901 }
bsalomon30447372015-12-21 09:03:05 -08001902
1903 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1904 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001905 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1906 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001907 // See comment above, re: ANGLE and ES3.
1908 if (kGL_GrGLStandard == ctxInfo.standard() ||
1909 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001910 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1911 } else {
1912 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1913 }
bsalomon7928ef62016-01-05 10:26:39 -08001914 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001915 if (hasHalfFPTextures) {
1916 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1917 // ES requires 3.2 or EXT_color_buffer_half_float.
1918 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1919 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1920 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1921 }
1922 }
cblume790d5132016-02-29 11:13:29 -08001923 if (texStorageSupported) {
1924 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1925 }
cdalton74b8d322016-04-11 14:47:28 -07001926 if (texelBufferSupport) {
1927 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1928 }
bsalomoncdee0092016-01-08 13:20:12 -08001929 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001930
bsalomon30447372015-12-21 09:03:05 -08001931 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1932
1933 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001934 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1935 ctxInfo.version() >= GR_GL_VER(3,0));
1936 // All ES versions (thus far) require sized internal formats for render buffers.
1937 // TODO: Always use sized internal format?
1938 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1939
bsalomon30447372015-12-21 09:03:05 -08001940 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001941 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1942 // param to glTex[Sub]Image.
1943 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1944 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1945 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1946 fConfigTable[i].fFormats.fSizedInternalFormat :
1947 fConfigTable[i].fFormats.fBaseInternalFormat;
1948 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001949 fConfigTable[i].fFormats.fSizedInternalFormat :
1950 fConfigTable[i].fFormats.fBaseInternalFormat;
1951 }
1952 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1953 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1954 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1955 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1956 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001957 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001958 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001959
1960 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1961 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1962 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1963 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001964 }
1965
1966 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1967 // as a base format.
1968 // GL_EXT_texture_format_BGRA8888:
1969 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1970 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1971 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001972 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08001973 // ES 2.0: the extension makes BGRA an external format but not an internal format.
1974 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
1975 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08001976 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08001977 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
1978 }
1979
bsalomoncdee0092016-01-08 13:20:12 -08001980 // If we don't have texture swizzle support then the shader generator must insert the
1981 // swizzle into shader code.
1982 if (!this->textureSwizzleSupport()) {
1983 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001984 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08001985 }
1986 }
1987
bsalomon7f9b2e42016-01-12 13:29:26 -08001988 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
1989 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
1990 // gets written to the single component.
1991 if (this->textureRedSupport()) {
1992 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1993 GrPixelConfig config = static_cast<GrPixelConfig>(i);
1994 if (GrPixelConfigIsAlphaOnly(config) &&
1995 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001996 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08001997 }
1998 }
1999 }
2000
Brian Salomonf9f45122016-11-29 11:59:17 -05002001 // We currently only support images on rgba textures formats. We could add additional formats
2002 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2003 // (e.g. where we use GL_RED textures to implement alpha configs).
2004 if (this->shaderCaps()->imageLoadStoreSupport()) {
2005 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2006 ConfigInfo::kCanUseAsImageStorage_Flag;
2007 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2008 // immutable via TexStorage. We create non-integer textures as mutable textures using
2009 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2010 // storage support for non-integer textures.
2011 if (kGL_GrGLStandard == ctxInfo.standard()) {
2012 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2013 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2014 ConfigInfo::kCanUseAsImageStorage_Flag;
2015 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2016 }
2017 }
2018
bsalomon30447372015-12-21 09:03:05 -08002019#ifdef SK_DEBUG
2020 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002021 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002022 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002023 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2024 // renderable.
2025 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2026 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002027 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2028 fConfigTable[i].fFormats.fBaseInternalFormat);
2029 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002030 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002031 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2032 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2033 fConfigTable[i].fFormats.fExternalFormat[j]);
2034 }
2035 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002036 }
2037#endif
2038}
2039
Robert Phillipsbf25d432017-04-07 10:08:53 -04002040bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Eric Karl74480882017-04-03 14:49:05 -07002041 bool* rectsMustMatch, bool* disallowSubrect) const {
2042 // By default, we don't require rects to match.
2043 *rectsMustMatch = false;
2044
2045 // By default, we allow subrects.
2046 *disallowSubrect = false;
2047
Brian Salomon467921e2017-03-06 16:17:12 -05002048 // If the src is a texture, we can implement the blit as a draw assuming the config is
2049 // renderable.
Robert Phillipsbf25d432017-04-07 10:08:53 -04002050 if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) {
2051 desc->fOrigin = kBottomLeft_GrSurfaceOrigin;
Brian Salomon467921e2017-03-06 16:17:12 -05002052 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2053 desc->fConfig = src->config();
2054 return true;
2055 }
2056
Robert Phillipsbf25d432017-04-07 10:08:53 -04002057 {
2058 // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were
2059 // wrapped. In that case the proxy would already be instantiated.
2060 const GrTexture* srcTexture = src->priv().peekTexture();
2061 const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture);
2062 if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) {
2063 // Not supported for FBO blit or CopyTexSubImage
2064 return false;
2065 }
Brian Salomon467921e2017-03-06 16:17:12 -05002066 }
2067
2068 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2069 // possible and we return false to fallback to creating a render target dst for render-to-
2070 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2071 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2072 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002073 bool rectsMustMatchForBlitFramebuffer = false;
2074 bool disallowSubrectForBlitFramebuffer = false;
2075 if (src->numColorSamples() &&
2076 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2077 rectsMustMatchForBlitFramebuffer = true;
2078 disallowSubrectForBlitFramebuffer = true;
2079 // Mirroring causes rects to mismatch later, don't allow it.
2080 originForBlitFramebuffer = src->origin();
2081 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2082 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2083 rectsMustMatchForBlitFramebuffer = true;
2084 // Mirroring causes rects to mismatch later, don't allow it.
2085 originForBlitFramebuffer = src->origin();
2086 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002087 originForBlitFramebuffer = src->origin();
2088 }
2089
2090 // Check for format issues with glCopyTexSubImage2D
2091 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2092 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2093 // then we set up for that, otherwise fail.
2094 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2095 desc->fOrigin = originForBlitFramebuffer;
2096 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002097 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2098 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002099 return true;
2100 }
2101 return false;
2102 }
2103
Robert Phillipsbf25d432017-04-07 10:08:53 -04002104 {
Brian Salomon63e79732017-05-15 21:23:13 -04002105 bool srcIsMSAARenderbuffer = GrFSAAType::kUnifiedMSAA == src->fsaaType() &&
2106 this->usesMSAARenderBuffers();
Robert Phillipsbf25d432017-04-07 10:08:53 -04002107 if (srcIsMSAARenderbuffer) {
2108 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO
2109 // blit or fail.
2110 if (this->canConfigBeFBOColorAttachment(src->config())) {
2111 desc->fOrigin = originForBlitFramebuffer;
2112 desc->fConfig = src->config();
2113 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2114 *disallowSubrect = disallowSubrectForBlitFramebuffer;
2115 return true;
2116 }
2117 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05002118 }
Brian Salomon467921e2017-03-06 16:17:12 -05002119 }
2120
2121 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2122 desc->fConfig = src->config();
2123 desc->fOrigin = src->origin();
2124 desc->fFlags = kNone_GrSurfaceFlags;
2125 return true;
2126}
2127
csmartdaltone0d36292016-07-29 08:14:20 -07002128void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2129 if (options.fEnableInstancedRendering) {
2130 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2131#ifndef SK_BUILD_FOR_MAC
2132 // OS X doesn't seem to write correctly to floating point textures when using
2133 // glDraw*Indirect, regardless of the underlying GPU.
2134 fAvoidInstancedDrawsToFPTargets = true;
2135#endif
2136 }
2137}