blob: f4e50628d0a126a745646a59b89d48bb7bf31a7f [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;
Chris Dalton9926f4b2017-05-17 15:15:50 -060057 fDrawArraysBaseVertexIsBroken = false;
piotaixre4b23142014-10-02 10:57:53 -070058
Brian Salomone5e7eb12016-10-14 16:18:33 -040059 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080060
Brian Salomon94efbf52016-11-29 13:43:05 -050061 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070062
cdalton4cd67132015-06-10 19:23:46 -070063 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000064}
65
cdalton4cd67132015-06-10 19:23:46 -070066void GrGLCaps::init(const GrContextOptions& contextOptions,
67 const GrGLContextInfo& ctxInfo,
68 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000069 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000070 GrGLVersion version = ctxInfo.version();
71
bsalomon@google.combcce8922013-03-25 15:38:39 +000072 /**************************************************************************
73 * Caps specific to GrGLCaps
74 **************************************************************************/
75
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000076 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000077 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
78 &fMaxFragmentUniformVectors);
79 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000080 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000081 GrGLint max;
82 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
83 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000084 if (version >= GR_GL_VER(3, 2)) {
85 GrGLint profileMask;
86 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
87 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
88 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000089 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000090 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000091
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000092 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000093 fUnpackRowLengthSupport = true;
94 fUnpackFlipYSupport = false;
95 fPackRowLengthSupport = true;
96 fPackFlipYSupport = false;
97 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000098 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
99 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000100 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +0000101 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
102 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000103 fPackFlipYSupport =
104 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
105 }
106
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000107 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000108 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
109
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000110 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700111 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
112 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
113 ctxInfo.hasExtension("GL_NV_texture_barrier");
114 } else {
115 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
116 }
117
cdaltoneb79eea2016-02-26 10:39:34 -0800118 if (kGL_GrGLStandard == standard) {
119 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
120 ctxInfo.hasExtension("GL_ARB_texture_multisample");
121 } else {
122 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
123 }
124
Brian Salomon0ee6f952017-01-19 15:52:24 -0500125 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800126 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500127 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800128 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000129 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
130 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800131 } else {
132 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
133 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000134 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000135 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000136 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000137 ctxInfo.hasExtension("GL_ARB_imaging");
138
egdaniel9250d242015-05-18 13:04:26 -0700139 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
140 // Thus we are blacklisting this extension for now on Adreno4xx devices.
141 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
142 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
143 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
144 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000145 fDiscardRenderTargetSupport = true;
146 fInvalidateFBType = kInvalidate_InvalidateFBType;
147 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
148 fDiscardRenderTargetSupport = true;
149 fInvalidateFBType = kDiscard_InvalidateFBType;
150 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000151
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000152 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
153 fFullClearIsFree = true;
154 }
155
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000156 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000157 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800158 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
159 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000160 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000161 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
162 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000163 }
164
cdalton626e1ff2015-06-12 13:56:46 -0700165 if (kGL_GrGLStandard == standard) {
166 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
167 } else {
168 fDirectStateAccessSupport = false;
169 }
170
171 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
172 fDebugSupport = true;
173 } else {
174 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
175 }
176
jvanverth3f801cb2014-12-16 09:49:38 -0800177 if (kGL_GrGLStandard == standard) {
178 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
179 }
180 else {
181 fES2CompatibilitySupport = true;
182 }
183
cdalton0edea2c2015-05-21 08:27:44 -0700184 if (kGL_GrGLStandard == standard) {
185 fMultisampleDisableSupport = true;
186 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700187 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700188 }
189
kkinnunend94708e2015-07-30 22:47:04 -0700190 if (kGL_GrGLStandard == standard) {
191 if (version >= GR_GL_VER(3, 0)) {
192 fBindFragDataLocationSupport = true;
193 }
194 } else {
195 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
196 fBindFragDataLocationSupport = true;
197 }
joshualittc1f56b52015-06-22 12:31:31 -0700198 }
199
joshualitt7bdd70a2015-10-01 06:28:11 -0700200 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
201
kkinnunene06ed252016-02-16 23:15:40 -0800202 if (kGL_GrGLStandard == standard) {
203 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
204 // We also require textureSize() support for rectangle 2D samplers which was added in
205 // GLSL 1.40.
206 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
207 fRectangleTextureSupport = true;
208 }
bsalomone179a912016-01-20 06:18:10 -0800209 }
kkinnunene06ed252016-02-16 23:15:40 -0800210 } else {
211 // Command buffer exposes this in GL ES context for Chromium reasons,
212 // but it should not be used. Also, at the time of writing command buffer
213 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800214 }
215
bsalomoncdee0092016-01-08 13:20:12 -0800216 if (kGL_GrGLStandard == standard) {
217 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
218 fTextureSwizzleSupport = true;
219 }
220 } else {
221 if (version >= GR_GL_VER(3,0)) {
222 fTextureSwizzleSupport = true;
223 }
224 }
225
cblume09bd2c02016-03-01 14:08:28 -0800226 if (kGL_GrGLStandard == standard) {
227 fMipMapLevelAndLodControlSupport = true;
228 } else if (kGLES_GrGLStandard == standard) {
229 if (version >= GR_GL_VER(3,0)) {
230 fMipMapLevelAndLodControlSupport = true;
231 }
232 }
233
bsalomon88c7b982015-07-31 11:20:16 -0700234#ifdef SK_BUILD_FOR_WIN
235 // We're assuming that on Windows Chromium we're using ANGLE.
236 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
237 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700238 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700239 fRGBA8888PixelsOpsAreSlow = isANGLE;
240 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
241 // check DX11 ANGLE.
242 fPartialFBOReadIsSlow = isANGLE;
243#endif
244
ericrkb4ecabd2016-03-11 15:18:20 -0800245 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
246 bool isMAC = false;
247#ifdef SK_BUILD_FOR_MAC
248 isMAC = true;
249#endif
250
251 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
252 // vis-versa.
253 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
254
cdalton4cd67132015-06-10 19:23:46 -0700255 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700256 * GrShaderCaps fields
257 **************************************************************************/
258
egdaniel0a482332015-10-26 08:59:10 -0700259 // This must be called after fCoreProfile is set on the GrGLCaps
260 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500261 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700262
csmartdalton008b9d82017-02-22 12:00:42 -0700263 if (!contextOptions.fSuppressPathRendering) {
264 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
265 }
egdaniel05ded892015-10-26 07:38:05 -0700266
267 // For now these two are equivalent but we could have dst read in shader via some other method.
268 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500269 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700270
271 // Enable supported shader-related caps
272 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500273 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700274 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
275 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500276 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700277 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500278 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700279 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500280 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800281 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700282 }
283 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500284 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700285
Brian Salomon1edc5b92016-11-29 13:43:46 -0500286 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700287 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800288
csmartdalton1d2aed02017-02-15 21:43:20 -0700289 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
290
Brian Salomon1edc5b92016-11-29 13:43:46 -0500291 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800292 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700293 }
294
cdalton9c3f1432016-03-11 10:07:37 -0800295 // Protect ourselves against tracking huge amounts of texture state.
296 static const uint8_t kMaxSaneSamplers = 32;
297 GrGLint maxSamplers;
298 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500299 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
300 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800301 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500302 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800303 }
304 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500305 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800306 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500307 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800308
Brian Salomonf26f7a02016-11-15 14:05:01 -0500309 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500310 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
311 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500312 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500313 shaderCaps->fImageLoadStoreSupport = true;
314 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500315 }
316 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500317 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500318 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500319 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500320 // Protect ourselves against tracking huge amounts of image state.
321 static constexpr int kMaxSaneImages = 4;
322 GrGLint maxUnits;
323 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500324 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500325 &shaderCaps->fMaxVertexImageStorages);
326 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500327 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500328 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500329 }
330 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500331 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500332 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500333 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500334 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500335 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
336 maxUnits), kMaxSaneImages);
337 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
338 shaderCaps->fMaxVertexImageStorages);
339 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
340 shaderCaps->fMaxGeometryImageStorages);
341 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
342 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500343 }
344
egdaniel05ded892015-10-26 07:38:05 -0700345 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700346 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000347 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700348
csmartdalton485a1202016-07-13 10:16:32 -0700349 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
350 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
351 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
352 // limit this decision to specific GPU families rather than basing it on the vendor alone.
353 if (!GR_GL_MUST_USE_VBO &&
354 !fIsCoreProfile &&
355 (kARM_GrGLVendor == ctxInfo.vendor() ||
356 kImagination_GrGLVendor == ctxInfo.vendor() ||
357 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
358 fPreferClientSideDynamicBuffers = true;
359 }
360
Eric Karl5c779752017-05-08 12:02:07 -0700361 if (!contextOptions.fAvoidStencilBuffers) {
362 // To reduce surface area, if we avoid stencil buffers, we also disable MSAA.
363 this->initFSAASupport(contextOptions, ctxInfo, gli);
364 this->initStencilSupport(ctxInfo);
365 }
cdalton1dd05422015-06-12 09:01:18 -0700366 this->initBlendEqationSupport(ctxInfo);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000367
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000368 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000369 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
370 // extension includes glMapBuffer.
371 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
372 fMapBufferFlags |= kSubset_MapFlag;
373 fMapBufferType = kMapBufferRange_MapBufferType;
374 } else {
375 fMapBufferType = kMapBuffer_MapBufferType;
376 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000377 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000378 // Unextended GLES2 doesn't have any buffer mapping.
379 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800380 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800381 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
382 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800383 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
384 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
385 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000386 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
387 fMapBufferFlags = kCanMap_MapFlag;
388 fMapBufferType = kMapBuffer_MapBufferType;
389 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000390 }
391
jvanverthd7a2c1f2015-12-07 07:36:44 -0800392 if (kGL_GrGLStandard == standard) {
393 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
394 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700395 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800396 } else {
397 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
398 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700399 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
400 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800401 }
402 }
403
joshualitte5b74c62015-06-01 14:17:47 -0700404 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
405 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700406 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700407#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500408 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
409 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
410 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700411 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700412#else
cdalton397536c2016-03-25 12:15:03 -0700413 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700414#endif
joshualitte5b74c62015-06-01 14:17:47 -0700415 }
416
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000417 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000418 fNPOTTextureTileSupport = true;
419 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000420 } else {
421 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000422 // ES3 has no limitations.
423 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
424 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000425 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
426 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
427 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
428 // to alllow arbitrary wrap modes, however.
429 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000430 }
431
bsalomone72bd022015-10-26 07:33:03 -0700432 // Using MIPs on this GPU seems to be a source of trouble.
433 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
434 fMipMapSupport = false;
435 }
436
bsalomon@google.combcce8922013-03-25 15:38:39 +0000437 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
438 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
439 // Our render targets are always created with textures as the color
440 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000441 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000442
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000443 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
444
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000445 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700446 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000447
robertphillips1b8e1b52015-06-24 06:54:10 -0700448#if 0
449 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
450 kQualcomm_GrGLVendor != ctxInfo.vendor();
451#endif
452
csmartdalton9bc11872016-08-09 12:42:47 -0700453 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
454 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700455 }
456
bsalomon63b21962014-11-05 07:05:34 -0800457 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800458 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400459 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
460 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800461 fUseDrawInsteadOfClear = true;
462 }
463
joshualitt83bc2292015-06-18 14:18:02 -0700464 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
465 fUseDrawInsteadOfPartialRenderTargetWrite = true;
466 }
467
bsalomonbabafcc2016-02-16 11:36:47 -0800468 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
469 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
470 fUseDrawInsteadOfPartialRenderTargetWrite = true;
471 fUseDrawInsteadOfAllRenderTargetWrites = true;
472 }
473
robertphillips63926682015-08-20 09:39:02 -0700474#ifdef SK_BUILD_FOR_WIN
475 // On ANGLE deferring flushes can lead to GPU starvation
476 fPreferVRAMUseOverFlushes = !isANGLE;
477#endif
478
bsalomon7dea7b72015-08-19 08:26:51 -0700479 if (kChromium_GrGLDriver == ctxInfo.driver()) {
480 fMustClearUploadedBufferData = true;
481 }
482
bsalomond08ea5f2015-02-20 06:58:13 -0800483 if (kGL_GrGLStandard == standard) {
484 // ARB allows mixed size FBO attachments, EXT does not.
485 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
486 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
487 fOversizedStencilSupport = true;
488 } else {
489 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
490 }
491 } else {
492 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
493 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
494 }
495
joshualitt58001552015-06-26 12:46:36 -0700496 if (kGL_GrGLStandard == standard) {
497 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
498 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700499 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700500 version >= GR_GL_VER(3, 2) ||
501 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
502 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
503 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700504 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700505 version >= GR_GL_VER(3, 0) ||
506 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
507 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
508 }
509
cdalton06604b92016-02-05 10:09:51 -0800510 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700511 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
512 ctxInfo.hasExtension("GL_ARB_draw_indirect");
513 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
514 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700515 (fDrawIndirectSupport &&
516 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700517 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700518 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800519 } else {
520 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700521 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
522 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
523 fBaseInstanceSupport = fDrawIndirectSupport &&
524 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700525 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800526 }
527
Brian Salomon1edc5b92016-11-29 13:43:46 -0500528 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800529
530 if (contextOptions.fUseShaderSwizzling) {
531 fTextureSwizzleSupport = false;
532 }
533
ethannicholas28ef4452016-03-25 09:26:03 -0700534 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700535 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
536 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700537 fSampleShadingSupport = true;
538 }
539 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
540 fSampleShadingSupport = true;
541 }
542
jvanverth84741b32016-09-30 08:39:02 -0700543 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
544 if (kGL_GrGLStandard == standard) {
545 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
546 fFenceSyncSupport = true;
547 }
548 } else if (version >= GR_GL_VER(3, 0)) {
549 fFenceSyncSupport = true;
550 }
551
Brian Osman0eb4ecb2017-05-16 13:30:11 -0400552 // Safely moving textures between contexts requires fences.
Brian Osman2c2bc112017-02-28 10:02:49 -0500553 fCrossContextTextureSupport = fFenceSyncSupport;
Brian Osman2c2bc112017-02-28 10:02:49 -0500554
brianosman131ff132016-06-07 14:22:44 -0700555 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
556 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
557 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
558 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700559 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700560 (contextOptions.fDoManualMipmapping ||
561 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700562 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
563 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700564 fDoManualMipmapping = true;
565 }
566
brianosman20471892016-12-02 06:43:32 -0800567 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800568 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
569 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800570
Brian Salomon028a9a52017-05-11 11:39:08 -0400571 // See http://crbug.com/710443
572#ifdef SK_BUILD_FOR_MAC
573 if (kIntel6xxx_GrGLRenderer == ctxInfo.renderer()) {
Eric Karlaeaf22b2017-05-18 15:08:09 -0700574 fClearToBoundaryValuesIsBroken = true;
Brian Salomon028a9a52017-05-11 11:39:08 -0400575 }
576#endif
Chris Dalton9926f4b2017-05-17 15:15:50 -0600577 if (kQualcomm_GrGLVendor == ctxInfo.vendor()) {
578 fDrawArraysBaseVertexIsBroken = true;
579 }
Brian Salomon028a9a52017-05-11 11:39:08 -0400580
bsalomoncdee0092016-01-08 13:20:12 -0800581 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
582 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800583 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700584
585 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500586 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000587}
588
egdaniel472d44e2015-10-22 08:20:00 -0700589const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
590 bool isCoreProfile) {
591 switch (generation) {
592 case k110_GrGLSLGeneration:
593 if (kGLES_GrGLStandard == standard) {
594 // ES2s shader language is based on version 1.20 but is version
595 // 1.00 of the ES language.
596 return "#version 100\n";
597 } else {
598 SkASSERT(kGL_GrGLStandard == standard);
599 return "#version 110\n";
600 }
601 case k130_GrGLSLGeneration:
602 SkASSERT(kGL_GrGLStandard == standard);
603 return "#version 130\n";
604 case k140_GrGLSLGeneration:
605 SkASSERT(kGL_GrGLStandard == standard);
606 return "#version 140\n";
607 case k150_GrGLSLGeneration:
608 SkASSERT(kGL_GrGLStandard == standard);
609 if (isCoreProfile) {
610 return "#version 150\n";
611 } else {
612 return "#version 150 compatibility\n";
613 }
614 case k330_GrGLSLGeneration:
615 if (kGLES_GrGLStandard == standard) {
616 return "#version 300 es\n";
617 } else {
618 SkASSERT(kGL_GrGLStandard == standard);
619 if (isCoreProfile) {
620 return "#version 330\n";
621 } else {
622 return "#version 330 compatibility\n";
623 }
624 }
cdalton33ad7012016-02-22 07:55:44 -0800625 case k400_GrGLSLGeneration:
626 SkASSERT(kGL_GrGLStandard == standard);
627 if (isCoreProfile) {
628 return "#version 400\n";
629 } else {
630 return "#version 400 compatibility\n";
631 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500632 case k420_GrGLSLGeneration:
633 SkASSERT(kGL_GrGLStandard == standard);
634 if (isCoreProfile) {
635 return "#version 420\n";
636 }
637 else {
638 return "#version 420 compatibility\n";
639 }
egdaniel472d44e2015-10-22 08:20:00 -0700640 case k310es_GrGLSLGeneration:
641 SkASSERT(kGLES_GrGLStandard == standard);
642 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800643 case k320es_GrGLSLGeneration:
644 SkASSERT(kGLES_GrGLStandard == standard);
645 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700646 }
647 return "<no version>";
648}
649
egdaniel05ded892015-10-26 07:38:05 -0700650void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700651 GrGLStandard standard = ctxInfo.standard();
652 GrGLVersion version = ctxInfo.version();
653
654 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500655 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700656 **************************************************************************/
657
Brian Salomon1edc5b92016-11-29 13:43:46 -0500658 GrShaderCaps* shaderCaps = fShaderCaps.get();
659 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700660 if (kGLES_GrGLStandard == standard) {
661 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500662 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
663 shaderCaps->fFBFetchSupport = true;
664 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
665 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700666 }
667 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
668 // 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 -0500669 shaderCaps->fFBFetchNeedsCustomOutput = false;
670 shaderCaps->fFBFetchSupport = true;
671 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
672 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700673 }
674 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
675 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500676 shaderCaps->fFBFetchNeedsCustomOutput = false;
677 shaderCaps->fFBFetchSupport = true;
678 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
679 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700680 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500681 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700682 }
683
egdaniel7517e452016-09-20 13:00:26 -0700684 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
685 // Galaxy S7.
686 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
687 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500688 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700689 }
690
Brian Salomon1edc5b92016-11-29 13:43:46 -0500691 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700692
cdaltonc08f1962016-02-12 12:14:06 -0800693 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500694 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800695 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500696 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800697 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
698 }
699
700 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500701 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800702 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
703 } else {
704 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500705 shaderCaps->fNoPerspectiveInterpolationSupport = true;
706 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800707 "GL_NV_shader_noperspective_interpolation";
708 }
709 }
710
cdalton33ad7012016-02-22 07:55:44 -0800711 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500712 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800713 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
714 } else {
715 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500716 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800717 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500718 shaderCaps->fMultisampleInterpolationSupport = true;
719 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800720 "GL_OES_shader_multisample_interpolation";
721 }
722 }
723
724 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500725 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800726 } else {
727 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500728 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800729 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500730 shaderCaps->fSampleVariablesSupport = true;
731 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800732 }
733 }
734
Brian Salomon1edc5b92016-11-29 13:43:46 -0500735 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700736 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
737 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500738 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700739 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
740 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800741 }
742
egdaniel472d44e2015-10-22 08:20:00 -0700743 // 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 -0500744 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700745
746 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
747 // function that may require a gradient calculation inside a conditional block may return
748 // undefined results". This appears to be an issue with the 'any' call since even the simple
749 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
750 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500751 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700752
Brian Salomon1edc5b92016-11-29 13:43:46 -0500753 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
754 shaderCaps->fGLSLGeneration,
755 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800756
Brian Salomon1edc5b92016-11-29 13:43:46 -0500757 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
758 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800759 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800760
761 // Frag Coords Convention support is not part of ES
762 // Known issue on at least some Intel platforms:
763 // http://code.google.com/p/skia/issues/detail?id=946
764 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
765 kGLES_GrGLStandard != standard &&
766 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
767 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500768 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800769 }
770
771 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500772 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800773 }
774
cdalton9c3f1432016-03-11 10:07:37 -0800775 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
776 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500777 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800778 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
779 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
780 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500781 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800782 }
783 }
784
Brian Salomon1edc5b92016-11-29 13:43:46 -0500785 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800786 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500787 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800788 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500789 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800790 }
791 }
792
cdaltonc04ce672016-03-11 14:07:38 -0800793 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500794 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800795 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500796 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700797 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
798 }
799
Brian Salomon1edc5b92016-11-29 13:43:46 -0500800 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700801 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500802 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700803 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
804 } else {
805 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
806 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500807 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700808 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500809 shaderCaps->fTexelBufferSupport = true;
810 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700811 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500812 shaderCaps->fTexelBufferSupport = true;
813 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700814 }
cdaltonc04ce672016-03-11 14:07:38 -0800815 }
816 }
817
egdaniel8dcdedc2015-11-11 06:27:20 -0800818 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
819 // the abs first in a separate expression.
820 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500821 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800822 }
823
bsalomon7ea33f52015-11-22 14:51:00 -0800824 // 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 -0800825 // thus must us -1.0 * %s.x to work correctly
826 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500827 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800828 }
egdaniel138c2632016-08-17 10:59:00 -0700829
830 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
831 // the original dst color when reading the outColor even after being written to. By using a
832 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500833 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
834 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700835 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700836
837#ifdef SK_BUILD_FOR_MAC
838 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
839 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
840 // term plan for this WAR is for it to eventually be baked into SkSL.
841 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
842#endif
egdaniel472d44e2015-10-22 08:20:00 -0700843}
844
kkinnunencfe62e32015-07-01 02:58:50 -0700845bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700846 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
847
848 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700849 return false;
850 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700851
kkinnunencfe62e32015-07-01 02:58:50 -0700852 if (kGL_GrGLStandard == ctxInfo.standard()) {
853 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
854 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
855 return false;
856 }
857 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700858 if (!hasChromiumPathRendering &&
859 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700860 return false;
861 }
862 }
863 // We only support v1.3+ of GL_NV_path_rendering which allows us to
864 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
865 // additions are detected by checking the existence of the function.
866 // We also use *Then* functions that not all drivers might have. Check
867 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800868 if (!gli->fFunctions.fStencilThenCoverFillPath ||
869 !gli->fFunctions.fStencilThenCoverStrokePath ||
870 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
871 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
872 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700873 return false;
874 }
875 return true;
876}
bsalomon1aa20292016-01-22 08:16:09 -0800877
Brian Salomon71d9d842016-11-03 13:42:00 -0400878bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800879 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800880 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800881 std::function<bool ()> bindRenderTarget,
882 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400883 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800884 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400885 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800886 return false;
887 }
bsalomon7928ef62016-01-05 10:26:39 -0800888
Brian Salomonbf7b6202016-11-11 16:08:03 -0500889 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
890 return false;
891 }
892
bsalomon76148af2016-01-12 11:13:47 -0800893 GrGLenum readFormat;
894 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400895 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800896 return false;
897 }
898
bsalomon1aa20292016-01-22 08:16:09 -0800899 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800900 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
901 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
902 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
903 // 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 -0500904 // The manual does not seem to fully match the spec as the spec allows integer formats
905 // when the bound color buffer is an integer buffer. It doesn't specify which integer
906 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500907 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
908 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
909 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800910 return false;
911 }
912 // There is also a set of allowed types, but all the types we use are in the set:
913 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
914 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
915 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
916 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
917 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
918 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
919 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800920 return true;
piotaixre4b23142014-10-02 10:57:53 -0700921 }
bsalomon7928ef62016-01-05 10:26:39 -0800922
bsalomon76148af2016-01-12 11:13:47 -0800923 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500924 switch (fConfigTable[surfaceConfig].fFormatType) {
925 case kNormalizedFixedPoint_FormatType:
926 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
927 return true;
928 }
929 break;
930 case kInteger_FormatType:
931 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
932 return true;
933 }
934 break;
935 case kFloat_FormatType:
936 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
937 return true;
938 }
939 break;
bsalomon7928ef62016-01-05 10:26:39 -0800940 }
941
Brian Salomon71d9d842016-11-03 13:42:00 -0400942 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800943 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400944 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800945 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800946 if (!bindRenderTarget()) {
947 return false;
948 }
949 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
950 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800951 rpFormat->fFormat = format;
952 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800953 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800954 }
955
Brian Salomon71d9d842016-11-03 13:42:00 -0400956 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
957 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700958}
959
Eric Karl5c779752017-05-08 12:02:07 -0700960void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
961 const GrGLInterface* gli) {
962 // We need dual source blending and the ability to disable multisample in order to support mixed
963 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
964 // renderer is available and enabled; no other path renderers support this feature.
965 if (fMultisampleDisableSupport &&
966 this->shaderCaps()->dualSourceBlendingSupport() &&
967 this->shaderCaps()->pathRenderingSupport() &&
968 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
969 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
970 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
971 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
972 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
973 kChromium_GrGLDriver == ctxInfo.driver())) {
974 fDiscardRenderTargetSupport = false;
975 fInvalidateFBType = kNone_InvalidateFBType;
976 }
977 }
978
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000979 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000980 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
981 // ES3 driver bugs on at least one device with a tiled GPU (N10).
982 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
983 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
984 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
985 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800986 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700987 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -0400988 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400989 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -0400990 fMSFBOType = kStandard_MSFBOType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -0400991 } else if (ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
992 fMSFBOType = kEXT_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000993 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
994 fMSFBOType = kES_Apple_MSFBOType;
995 }
bsalomon083617b2016-02-12 12:10:14 -0800996
997 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
998 // is available.
999 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -04001000 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001001 kNoMSAADst_BlitFramebufferFlag |
Brian Salomone5e7eb12016-10-14 16:18:33 -04001002 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -04001003 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
1004 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -08001005 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
1006 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -04001007 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
1008 kResolveMustBeFull_BlitFrambufferFlag |
1009 kNoMSAADst_BlitFramebufferFlag |
Eric Karl74480882017-04-03 14:49:05 -07001010 kNoFormatConversion_BlitFramebufferFlag |
1011 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001012 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001013 } else {
egdanieleed519e2016-01-15 11:36:18 -08001014 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001015 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001016 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001017 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1018 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1019 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001020 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001021 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1022 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001023 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001024 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001025 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001026 }
Eric Karl5c779752017-05-08 12:02:07 -07001027
1028 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
1029 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
1030 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
1031 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
1032 }
1033 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
1034 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
1035 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
1036 // This is to guard against platforms that may not support as many samples for
1037 // glRasterSamples as they do for framebuffers.
1038 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
1039 }
1040 fMaxColorSampleCount = fMaxStencilSampleCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001041}
1042
cdalton1dd05422015-06-12 09:01:18 -07001043void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001044 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001045
1046 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1047 // for now until its own blacklists can be updated.
1048 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001049 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001050 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001051 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001052 return;
1053 }
1054
1055 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1056 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001057 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001058 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1059 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001060 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001061 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1062 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1063 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1064 return;
1065 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1066 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001067 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001068 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1069 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001070 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001071 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1072 // slow on a particular platform.
1073 } else {
1074 return; // No advanced blend support.
1075 }
1076
1077 SkASSERT(this->advancedBlendEquationSupport());
1078
csmartdalton3b88a032016-08-04 14:43:49 -07001079 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1080 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1081 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001082 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1083 (1 << kColorBurn_GrBlendEquation);
1084 }
joel.liang9764c402015-07-09 19:46:18 -07001085 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1086 // Blacklist color-burn on ARM until the fix is released.
1087 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1088 }
cdalton1dd05422015-06-12 09:01:18 -07001089}
1090
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001091namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001092const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001093}
1094
Eric Karl5c779752017-05-08 12:02:07 -07001095void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001096
1097 // Build up list of legal stencil formats (though perhaps not supported on
1098 // the particular gpu/driver) from most preferred to least.
1099
1100 // these consts are in order of most preferred to least preferred
1101 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1102
1103 static const StencilFormat
1104 // internal Format stencil bits total bits packed?
1105 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1106 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1107 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1108 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001109 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001110 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1111
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001112 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001113 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001114 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001115 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1116 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1117
1118 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1119 // require FBO support we can expect these are legal formats and don't
1120 // check. These also all support the unsized GL_STENCIL_INDEX.
1121 fStencilFormats.push_back() = gS8;
1122 fStencilFormats.push_back() = gS16;
1123 if (supportsPackedDS) {
1124 fStencilFormats.push_back() = gD24S8;
1125 }
1126 fStencilFormats.push_back() = gS4;
1127 if (supportsPackedDS) {
1128 fStencilFormats.push_back() = gDS;
1129 }
1130 } else {
1131 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1132 // for other formats.
1133 // ES doesn't support using the unsized format.
1134
1135 fStencilFormats.push_back() = gS8;
1136 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001137 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1138 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001139 fStencilFormats.push_back() = gD24S8;
1140 }
1141 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1142 fStencilFormats.push_back() = gS4;
1143 }
1144 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001145}
1146
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001147SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001148
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001149 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001150
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001151 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001152 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001153 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001154 i,
1155 fStencilFormats[i].fStencilBits,
1156 fStencilFormats[i].fTotalBits);
1157 }
1158
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001159 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001160 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001161 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001162 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001163 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001164 "IMG MS To Texture",
1165 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001166 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001167 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001168 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001169 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1170 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1171 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1172 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1173 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1174 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001175 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001176
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001177 static const char* kInvalidateFBTypeStr[] = {
1178 "None",
1179 "Discard",
1180 "Invalidate",
1181 };
1182 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1183 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1184 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1185 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001186
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001187 static const char* kMapBufferTypeStr[] = {
1188 "None",
1189 "MapBuffer",
1190 "MapBufferRange",
1191 "Chromium",
1192 };
1193 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1194 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1195 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1196 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1197 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1198
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001199 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001200 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001201 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001202 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001203 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001204 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1205 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1206 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1207 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001208
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001209 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001210 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1211 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001212 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001213 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1214 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001215 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001216 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1217 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1218 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001219 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1220 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001221 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001222 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001223 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001224 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001225 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001226
1227 r.append("Configs\n-------\n");
1228 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1229 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001230 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1231 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001232 i,
1233 fConfigTable[i].fFlags,
1234 fConfigTable[i].fFormats.fBaseInternalFormat,
1235 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001236 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1237 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001238 fConfigTable[i].fFormats.fExternalType,
1239 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001240 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001241 }
1242
jvanverthe9c0fc62015-04-29 11:18:05 -07001243 return r;
1244}
1245
jvanverthe9c0fc62015-04-29 11:18:05 -07001246static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1247 switch (p) {
1248 case kLow_GrSLPrecision:
1249 return GR_GL_LOW_FLOAT;
1250 case kMedium_GrSLPrecision:
1251 return GR_GL_MEDIUM_FLOAT;
1252 case kHigh_GrSLPrecision:
1253 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001254 default:
1255 SkFAIL("Unexpected precision type.");
1256 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001257 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001258}
1259
1260static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1261 switch (type) {
1262 case kVertex_GrShaderType:
1263 return GR_GL_VERTEX_SHADER;
1264 case kGeometry_GrShaderType:
1265 return GR_GL_GEOMETRY_SHADER;
1266 case kFragment_GrShaderType:
1267 return GR_GL_FRAGMENT_SHADER;
1268 }
1269 SkFAIL("Unknown shader type.");
1270 return -1;
1271}
1272
jvanverthcba99b82015-06-24 06:59:57 -07001273void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001274 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001275 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001276 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1277 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1278 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1279 if (kGeometry_GrShaderType != s) {
1280 GrShaderType shaderType = static_cast<GrShaderType>(s);
1281 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001282 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001283 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001284 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1285 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1286 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1287 GrGLint range[2];
1288 GrGLint bits;
1289 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1290 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001291 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1292 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1293 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001294 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001295 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001296 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001297 else if (!shaderCaps->fShaderPrecisionVaries) {
1298 shaderCaps->fShaderPrecisionVaries =
1299 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001300 }
1301 }
1302 }
1303 }
1304 }
1305 }
1306 else {
1307 // 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 -05001308 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001309 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1310 if (kGeometry_GrShaderType != s) {
1311 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001312 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1313 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1314 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001315 }
1316 }
1317 }
1318 }
1319 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1320 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1321 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1322 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001323 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001324 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001325 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1326 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001327 }
1328 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001329 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001330}
1331
bsalomon41e4384e2016-01-08 09:12:44 -08001332bool GrGLCaps::bgraIsInternalFormat() const {
1333 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1334}
1335
bsalomon76148af2016-01-12 11:13:47 -08001336bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1337 GrGLenum* internalFormat, GrGLenum* externalFormat,
1338 GrGLenum* externalType) const {
1339 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1340 externalFormat, externalType)) {
1341 return false;
1342 }
1343 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1344 return true;
1345}
1346
1347bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1348 GrGLenum* internalFormat) const {
1349 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1350 return false;
1351 }
1352 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1353 return true;
1354}
1355
1356bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1357 GrGLenum* externalFormat, GrGLenum* externalType) const {
1358 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1359 externalFormat, externalType)) {
1360 return false;
1361 }
1362 return true;
1363}
1364
1365bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1366 if (GrPixelConfigIsCompressed(config)) {
1367 return false;
1368 }
1369 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1370 return true;
1371}
1372
1373bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1374 ExternalFormatUsage usage, GrGLenum* externalFormat,
1375 GrGLenum* externalType) const {
1376 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001377 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001378 return false;
1379 }
1380
1381 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1382 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1383
1384 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1385 // made to work in many cases using glPixelStore and what not but is not needed currently.
1386 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1387 return false;
1388 }
1389
1390 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1391 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1392
bsalomone9573312016-01-25 14:33:25 -08001393 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1394 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1395 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1396 // texture, not the red component.
1397 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1398 if (this->textureRedSupport()) {
1399 SkASSERT(GR_GL_RED == *externalFormat);
1400 *externalFormat = GR_GL_ALPHA;
1401 }
1402 }
1403
bsalomon76148af2016-01-12 11:13:47 -08001404 return true;
1405}
1406
brianosman20471892016-12-02 06:43:32 -08001407void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1408 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001409 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001410 /*
1411 Comments on renderability of configs on various GL versions.
1412 OpenGL < 3.0:
1413 no built in support for render targets.
1414 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1415 format RGB, RGBA and NV float formats we don't use.
1416 This is the following:
1417 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1418 RGB10_A2, RGBA12,RGBA16
1419 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1420 since they aren't required by later standards and the driver can simply return
1421 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1422 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1423 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1424 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1425 This adds a lot of additional renderable sized formats, including ALPHA8.
1426 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1427 16F, 32I, 32UI, and 32F variants).
1428 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1429
1430 For both the above extensions we limit ourselves to those that are also required by
1431 OpenGL 3.0.
1432
1433 OpenGL 3.0:
1434 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1435 but are not required to be supported as renderable textures/renderbuffer.
1436 Required renderable color formats:
1437 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1438 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1439 RGB10_A2.
1440 - R11F_G11F_B10F.
1441 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1442 and RG8UI.
1443 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1444 - ALPHA8
1445
1446 OpenGL 3.1, 3.2, 3.3
1447 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1448 OpengGL 3.3, 4.0, 4.1
1449 Adds RGB10_A2UI.
1450 OpengGL 4.2
1451 Adds
1452 - RGB5_A1, RGBA4
1453 - RGB565
1454 OpenGL 4.4
1455 Does away with the separate list and adds a column to the sized internal color format
1456 table. However, no new formats become required color renderable.
1457
1458 ES 2.0
1459 color renderable: RGBA4, RGB5_A1, RGB565
1460 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1461 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1462 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1463 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1464 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1465 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1466
1467 ES 3.0
1468 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1469 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1470 RGB5_A1.
1471 - RGB8 and RGB565.
1472 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1473 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1474 ES 3.1
1475 Adds RGB10_A2, RGB10_A2UI,
1476 ES 3.2
1477 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1478 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001479 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1480 ConfigInfo::kFBOColorAttachment_Flag;
1481 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001482 if (kNone_MSFBOType != fMSFBOType) {
1483 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1484 }
bsalomon41e4384e2016-01-08 09:12:44 -08001485 GrGLStandard standard = ctxInfo.standard();
1486 GrGLVersion version = ctxInfo.version();
1487
cblume790d5132016-02-29 11:13:29 -08001488 bool texStorageSupported = false;
1489 if (kGL_GrGLStandard == standard) {
1490 // The EXT version can apply to either GL or GLES.
1491 texStorageSupported = version >= GR_GL_VER(4,2) ||
1492 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1493 ctxInfo.hasExtension("GL_EXT_texture_storage");
1494 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001495 texStorageSupported = version >= GR_GL_VER(3,0) ||
1496 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001497 }
1498
1499 // TODO: remove after command buffer supports full ES 3.0
1500 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1501 kChromium_GrGLDriver == ctxInfo.driver()) {
1502 texStorageSupported = false;
1503 }
1504
cdalton74b8d322016-04-11 14:47:28 -07001505 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1506
bsalomon30447372015-12-21 09:03:05 -08001507 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1508 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001509 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001510 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001511 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001512 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001513
1514 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1515 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001516 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1517 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001518 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001519 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001520 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1521 if (kGL_GrGLStandard == standard) {
1522 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1523 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001524 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001525 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1526 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1527 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1528 }
egdaniel4999df82016-01-07 17:06:04 -08001529 }
cblume790d5132016-02-29 11:13:29 -08001530 if (texStorageSupported) {
1531 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1532 }
cdalton74b8d322016-04-11 14:47:28 -07001533 if (texelBufferSupport) {
1534 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1535 }
bsalomoncdee0092016-01-08 13:20:12 -08001536 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001537
bsalomon76148af2016-01-12 11:13:47 -08001538 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1539 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001540 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001541 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001542 if (kGL_GrGLStandard == standard) {
1543 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1544 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1545 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1546 // Since the internal format is RGBA8, it is also renderable.
1547 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1548 allRenderFlags;
1549 }
1550 } else {
1551 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1552 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1553 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1554 // The APPLE extension doesn't make this renderable.
1555 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1556 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1557 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1558 // Though, that seems to not be the case if the texture storage extension is
1559 // present. The specs don't exactly make that clear.
1560 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1561 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1562 }
1563 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1564 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001565 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001566 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001567 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001568 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1569 ConfigInfo::kRenderableWithMSAA_Flag;
1570 }
1571 }
1572 }
cblume790d5132016-02-29 11:13:29 -08001573 if (texStorageSupported) {
1574 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1575 }
bsalomoncdee0092016-01-08 13:20:12 -08001576 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001577
brianosmana6359362016-03-21 06:55:37 -07001578 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001579 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001580 if (kGL_GrGLStandard == standard) {
1581 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001582 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001583 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1584 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1585 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001586 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001587 }
1588 }
1589 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001590 if (fSRGBSupport) {
1591 fSRGBWriteControl = true;
1592 }
bsalomon41e4384e2016-01-08 09:12:44 -08001593 } else {
brianosman20471892016-12-02 06:43:32 -08001594 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
1595#if defined(SK_CPU_X86)
1596 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1597 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1598 // blacklist that device (and any others that might be sharing the same driver).
1599 fSRGBSupport = false;
1600 }
1601#endif
bsalomon41e4384e2016-01-08 09:12:44 -08001602 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1603 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001604 // See https://bug.skia.org/5329 for Adreno4xx issue.
1605 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1606 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001607 }
brianosman20471892016-12-02 06:43:32 -08001608 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1609 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1610 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001611 fSRGBSupport = false;
1612 }
brianosman20471892016-12-02 06:43:32 -08001613
1614 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1615 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1616 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1617 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1618 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1619 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1620 // affects Windows.
1621 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1622 fSRGBSupport = false;
1623 }
1624
bsalomon30447372015-12-21 09:03:05 -08001625 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1626 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1627 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1628 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001629 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1630 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001631 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001632 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001633 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001634 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1635 allRenderFlags;
1636 }
cblume790d5132016-02-29 11:13:29 -08001637 if (texStorageSupported) {
1638 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1639 }
bsalomoncdee0092016-01-08 13:20:12 -08001640 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
brianosmana6359362016-03-21 06:55:37 -07001641 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1642 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1643 // is in this format, for example).
1644 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1645 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1646 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1647 // external format is GL_BGRA.
1648 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1649 GR_GL_BGRA;
1650 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1651 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001652 if (fSRGBSupport && kGL_GrGLStandard == standard) {
brianosmana6359362016-03-21 06:55:37 -07001653 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1654 allRenderFlags;
1655 }
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001656
brianosmana6359362016-03-21 06:55:37 -07001657 if (texStorageSupported) {
1658 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1659 }
1660 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1661
Brian Salomonbf7b6202016-11-11 16:08:03 -05001662 bool hasIntegerTextures;
1663 if (standard == kGL_GrGLStandard) {
1664 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1665 ctxInfo.hasExtension("GL_EXT_texture_integer");
1666 } else {
1667 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1668 }
1669 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1670 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1671 hasIntegerTextures = false;
1672 }
1673 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1674 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1675 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1676 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1677 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1678 // We currently only support using integer textures as srcs, not for rendering (even though GL
1679 // allows it).
1680 if (hasIntegerTextures) {
1681 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1682 ConfigInfo::kFBOColorAttachment_Flag;
1683 if (texStorageSupported) {
1684 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1685 ConfigInfo::kCanUseTexStorage_Flag;
1686 }
1687 }
1688
bsalomon30447372015-12-21 09:03:05 -08001689 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1690 if (this->ES2CompatibilitySupport()) {
1691 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1692 } else {
1693 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1694 }
bsalomon76148af2016-01-12 11:13:47 -08001695 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1696 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001697 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001698 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001699 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1700 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001701 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001702 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1703 }
1704 } else {
1705 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1706 }
cblume790d5132016-02-29 11:13:29 -08001707 // 565 is not a sized internal format on desktop GL. So on desktop with
1708 // 565 we always use an unsized internal format to let the system pick
1709 // the best sized format to convert the 565 data to. Since TexStorage
1710 // only allows sized internal formats we disallow it.
1711 //
1712 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1713 // update.
1714 if (texStorageSupported && kGL_GrGLStandard != standard) {
1715 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1716 }
bsalomoncdee0092016-01-08 13:20:12 -08001717 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001718
1719 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1720 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001721 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1722 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001723 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001724 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001725 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1726 if (kGL_GrGLStandard == standard) {
1727 if (version >= GR_GL_VER(4, 2)) {
1728 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1729 }
1730 } else {
1731 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1732 }
cblume790d5132016-02-29 11:13:29 -08001733 if (texStorageSupported) {
1734 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1735 }
bsalomoncdee0092016-01-08 13:20:12 -08001736 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001737
Brian Osmanf4faccd2017-01-10 16:53:58 -05001738 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1739 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1740 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001741 if (this->textureRedSupport()) {
1742 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1743 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001744 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1745 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001746 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001747 if (texelBufferSupport) {
1748 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1749 }
bsalomon30447372015-12-21 09:03:05 -08001750 } else {
1751 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1752 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001753 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1754 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001755 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001756 }
bsalomon40170072016-05-05 14:40:03 -07001757 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001758 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1759 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001760 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001761 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1762 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1763 }
cblume790d5132016-02-29 11:13:29 -08001764 if (texStorageSupported) {
1765 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1766 }
bsalomon41e4384e2016-01-08 09:12:44 -08001767
Brian Osmanf4faccd2017-01-10 16:53:58 -05001768 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1769 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1770 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001771 if (this->textureRedSupport()) {
1772 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1773 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1774 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1775 GR_GL_RED;
1776 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1777 if (texelBufferSupport) {
1778 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1779 }
1780 } else {
1781 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1782 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1783 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1784 GR_GL_LUMINANCE;
1785 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1786 }
Brian Osman986563b2017-01-10 14:20:02 -05001787#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1788 if (this->textureRedSupport() ||
1789 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1790 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1791 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1792 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1793 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1794 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1795 }
1796#endif
1797 if (texStorageSupported) {
1798 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1799 }
1800
bsalomon41e4384e2016-01-08 09:12:44 -08001801 // Check for [half] floating point texture support
1802 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1803 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1804 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1805 bool hasFPTextures = false;
1806 bool hasHalfFPTextures = false;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001807 bool rgIsTexturable = false;
bsalomon41e4384e2016-01-08 09:12:44 -08001808 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001809 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001810
1811 if (kGL_GrGLStandard == standard) {
1812 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1813 hasFPTextures = true;
1814 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001815 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001816 }
1817 } else {
1818 if (version >= GR_GL_VER(3, 1)) {
1819 hasFPTextures = true;
1820 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001821 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001822 } else {
1823 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1824 ctxInfo.hasExtension("GL_OES_texture_float")) {
1825 hasFPTextures = true;
1826 }
1827 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1828 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1829 hasHalfFPTextures = true;
1830 }
1831 }
1832 }
bsalomon30447372015-12-21 09:03:05 -08001833
csmartdalton6aa0e112017-02-08 16:14:11 -05001834 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1835 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1836 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1837 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1838 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1839 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1840 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1841 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1842 if (hasFPTextures) {
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001843 fConfigTable[fpconfig].fFlags = rgIsTexturable ? ConfigInfo::kTextureable_Flag : 0;
csmartdalton6aa0e112017-02-08 16:14:11 -05001844 // For now we only enable rendering to float on desktop, because on ES we'd have to
1845 // solve many precision issues and no clients actually want this yet.
1846 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1847 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1848 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1849 }
bsalomon41e4384e2016-01-08 09:12:44 -08001850 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001851 if (texStorageSupported) {
1852 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1853 }
1854 if (texelBufferSupport) {
1855 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1856 }
1857 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001858 }
bsalomon30447372015-12-21 09:03:05 -08001859
1860 if (this->textureRedSupport()) {
1861 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1862 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001863 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1864 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001865 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001866 if (texelBufferSupport) {
1867 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1868 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1869 }
bsalomon30447372015-12-21 09:03:05 -08001870 } else {
1871 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1872 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001873 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1874 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001875 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001876 }
Brian Osman3a887252016-11-17 13:27:31 -05001877 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1878 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1879 // returned when we query, but that turns into a bigger refactor, so just work around it.
1880 if (kGL_GrGLStandard == ctxInfo.standard() ||
1881 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001882 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1883 } else {
1884 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1885 }
bsalomon7928ef62016-01-05 10:26:39 -08001886 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001887 if (texStorageSupported) {
1888 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1889 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001890 if (hasHalfFPTextures) {
1891 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1892 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1893 // GL_RED internal format.
1894 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1895 (this->textureRedSupport() &&
1896 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1897 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1898 }
1899 }
bsalomon30447372015-12-21 09:03:05 -08001900
1901 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1902 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001903 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1904 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001905 // See comment above, re: ANGLE and ES3.
1906 if (kGL_GrGLStandard == ctxInfo.standard() ||
1907 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001908 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1909 } else {
1910 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1911 }
bsalomon7928ef62016-01-05 10:26:39 -08001912 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001913 if (hasHalfFPTextures) {
1914 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1915 // ES requires 3.2 or EXT_color_buffer_half_float.
1916 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1917 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1918 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1919 }
1920 }
cblume790d5132016-02-29 11:13:29 -08001921 if (texStorageSupported) {
1922 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1923 }
cdalton74b8d322016-04-11 14:47:28 -07001924 if (texelBufferSupport) {
1925 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1926 }
bsalomoncdee0092016-01-08 13:20:12 -08001927 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001928
1929 // Compressed texture support
1930
1931 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1932 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1933
1934 // TODO: Fix command buffer bindings and remove this.
1935 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001936
1937 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001938 // Below we set the external formats and types to 0.
Robert Phillipsb34727f2017-02-10 14:44:58 -05001939 {
1940 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1941 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat =
1942 GR_GL_COMPRESSED_ETC1_RGB8;
1943 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
1944 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
1945 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1946 if (kGL_GrGLStandard == standard) {
1947 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1948 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1949 }
1950 } else {
1951 if (version >= GR_GL_VER(3, 0) ||
1952 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1953 // ETC2 is a superset of ETC1, so we can just check for that, too.
1954 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1955 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1956 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1957 }
bsalomon41e4384e2016-01-08 09:12:44 -08001958 }
Robert Phillipsb34727f2017-02-10 14:44:58 -05001959 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001960 }
bsalomon30447372015-12-21 09:03:05 -08001961
1962 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1963
1964 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001965 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1966 ctxInfo.version() >= GR_GL_VER(3,0));
1967 // All ES versions (thus far) require sized internal formats for render buffers.
1968 // TODO: Always use sized internal format?
1969 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1970
bsalomon30447372015-12-21 09:03:05 -08001971 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001972 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1973 // param to glTex[Sub]Image.
1974 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1975 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1976 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1977 fConfigTable[i].fFormats.fSizedInternalFormat :
1978 fConfigTable[i].fFormats.fBaseInternalFormat;
1979 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001980 fConfigTable[i].fFormats.fSizedInternalFormat :
1981 fConfigTable[i].fFormats.fBaseInternalFormat;
1982 }
1983 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1984 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1985 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1986 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1987 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001988 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001989 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001990
1991 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1992 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1993 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1994 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001995 }
1996
1997 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1998 // as a base format.
1999 // GL_EXT_texture_format_BGRA8888:
2000 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2001 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2002 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002003 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002004 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2005 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2006 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002007 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002008 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2009 }
2010
bsalomoncdee0092016-01-08 13:20:12 -08002011 // If we don't have texture swizzle support then the shader generator must insert the
2012 // swizzle into shader code.
2013 if (!this->textureSwizzleSupport()) {
2014 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002015 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002016 }
2017 }
2018
bsalomon7f9b2e42016-01-12 13:29:26 -08002019 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2020 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2021 // gets written to the single component.
2022 if (this->textureRedSupport()) {
2023 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2024 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2025 if (GrPixelConfigIsAlphaOnly(config) &&
2026 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002027 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002028 }
2029 }
2030 }
2031
Brian Salomonf9f45122016-11-29 11:59:17 -05002032 // We currently only support images on rgba textures formats. We could add additional formats
2033 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2034 // (e.g. where we use GL_RED textures to implement alpha configs).
2035 if (this->shaderCaps()->imageLoadStoreSupport()) {
2036 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2037 ConfigInfo::kCanUseAsImageStorage_Flag;
2038 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2039 // immutable via TexStorage. We create non-integer textures as mutable textures using
2040 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2041 // storage support for non-integer textures.
2042 if (kGL_GrGLStandard == ctxInfo.standard()) {
2043 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2044 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2045 ConfigInfo::kCanUseAsImageStorage_Flag;
2046 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2047 }
2048 }
2049
bsalomon30447372015-12-21 09:03:05 -08002050#ifdef SK_DEBUG
2051 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002052 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002053 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002054 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2055 // renderable.
2056 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2057 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002058 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2059 fConfigTable[i].fFormats.fBaseInternalFormat);
2060 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002061 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002062 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2063 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2064 fConfigTable[i].fFormats.fExternalFormat[j]);
2065 }
2066 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002067 }
2068#endif
2069}
2070
Robert Phillipsbf25d432017-04-07 10:08:53 -04002071bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Eric Karl74480882017-04-03 14:49:05 -07002072 bool* rectsMustMatch, bool* disallowSubrect) const {
2073 // By default, we don't require rects to match.
2074 *rectsMustMatch = false;
2075
2076 // By default, we allow subrects.
2077 *disallowSubrect = false;
2078
Brian Salomon467921e2017-03-06 16:17:12 -05002079 // If the src is a texture, we can implement the blit as a draw assuming the config is
2080 // renderable.
Robert Phillipsbf25d432017-04-07 10:08:53 -04002081 if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) {
2082 desc->fOrigin = kBottomLeft_GrSurfaceOrigin;
Brian Salomon467921e2017-03-06 16:17:12 -05002083 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2084 desc->fConfig = src->config();
2085 return true;
2086 }
2087
Robert Phillipsbf25d432017-04-07 10:08:53 -04002088 {
2089 // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were
2090 // wrapped. In that case the proxy would already be instantiated.
2091 const GrTexture* srcTexture = src->priv().peekTexture();
2092 const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture);
2093 if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) {
2094 // Not supported for FBO blit or CopyTexSubImage
2095 return false;
2096 }
Brian Salomon467921e2017-03-06 16:17:12 -05002097 }
2098
2099 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2100 // possible and we return false to fallback to creating a render target dst for render-to-
2101 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2102 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2103 GrSurfaceOrigin originForBlitFramebuffer = kDefault_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002104 bool rectsMustMatchForBlitFramebuffer = false;
2105 bool disallowSubrectForBlitFramebuffer = false;
2106 if (src->numColorSamples() &&
2107 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2108 rectsMustMatchForBlitFramebuffer = true;
2109 disallowSubrectForBlitFramebuffer = true;
2110 // Mirroring causes rects to mismatch later, don't allow it.
2111 originForBlitFramebuffer = src->origin();
2112 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2113 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2114 rectsMustMatchForBlitFramebuffer = true;
2115 // Mirroring causes rects to mismatch later, don't allow it.
2116 originForBlitFramebuffer = src->origin();
2117 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002118 originForBlitFramebuffer = src->origin();
2119 }
2120
2121 // Check for format issues with glCopyTexSubImage2D
2122 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2123 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2124 // then we set up for that, otherwise fail.
2125 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2126 desc->fOrigin = originForBlitFramebuffer;
2127 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002128 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2129 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002130 return true;
2131 }
2132 return false;
2133 }
2134
Robert Phillipsbf25d432017-04-07 10:08:53 -04002135 {
Brian Salomon63e79732017-05-15 21:23:13 -04002136 bool srcIsMSAARenderbuffer = GrFSAAType::kUnifiedMSAA == src->fsaaType() &&
2137 this->usesMSAARenderBuffers();
Robert Phillipsbf25d432017-04-07 10:08:53 -04002138 if (srcIsMSAARenderbuffer) {
2139 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO
2140 // blit or fail.
2141 if (this->canConfigBeFBOColorAttachment(src->config())) {
2142 desc->fOrigin = originForBlitFramebuffer;
2143 desc->fConfig = src->config();
2144 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2145 *disallowSubrect = disallowSubrectForBlitFramebuffer;
2146 return true;
2147 }
2148 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05002149 }
Brian Salomon467921e2017-03-06 16:17:12 -05002150 }
2151
2152 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2153 desc->fConfig = src->config();
2154 desc->fOrigin = src->origin();
2155 desc->fFlags = kNone_GrSurfaceFlags;
2156 return true;
2157}
2158
csmartdaltone0d36292016-07-29 08:14:20 -07002159void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2160 if (options.fEnableInstancedRendering) {
2161 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2162#ifndef SK_BUILD_FOR_MAC
2163 // OS X doesn't seem to write correctly to floating point textures when using
2164 // glDraw*Indirect, regardless of the underlying GPU.
2165 fAvoidInstancedDrawsToFPTargets = true;
2166#endif
2167 }
2168}