blob: 8287580fbe0d5d7694362f1696a13d4d6e4eb345 [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;
Robert Phillips5ab72762017-06-07 12:04:18 -040036 fAlpha8IsRenderable = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000037 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000038 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070039 fDirectStateAccessSupport = false;
40 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080041 fES2CompatibilitySupport = false;
cdalton06604b92016-02-05 10:09:51 -080042 fDrawIndirectSupport = false;
43 fMultiDrawIndirectSupport = false;
44 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
brianosman20471892016-12-02 06:43:32 -080054 fSRGBDecodeDisableSupport = false;
brianosman851c2382016-12-07 10:03:25 -080055 fSRGBDecodeDisableAffectsMipmaps = false;
Eric Karlaeaf22b2017-05-18 15:08:09 -070056 fClearToBoundaryValuesIsBroken = false;
Brian Salomond17b4a62017-05-23 16:53:47 -040057 fClearTextureSupport = false;
Chris Dalton9926f4b2017-05-17 15:15:50 -060058 fDrawArraysBaseVertexIsBroken = false;
Mike Klein31550db2017-06-06 23:29:53 +000059 fUseDrawToClearStencilClip = false;
Brian Salomon6d9c88b2017-06-12 10:24:42 -040060 fRequiresCullFaceEnableDisableWhenDrawingLinesAfterNonLines = false;
piotaixre4b23142014-10-02 10:57:53 -070061
Brian Salomone5e7eb12016-10-14 16:18:33 -040062 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080063
Brian Salomon94efbf52016-11-29 13:43:05 -050064 fShaderCaps.reset(new GrShaderCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070065
cdalton4cd67132015-06-10 19:23:46 -070066 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000067}
68
cdalton4cd67132015-06-10 19:23:46 -070069void GrGLCaps::init(const GrContextOptions& contextOptions,
70 const GrGLContextInfo& ctxInfo,
71 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000072 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000073 GrGLVersion version = ctxInfo.version();
74
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000075 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000076 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
77 &fMaxFragmentUniformVectors);
78 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000079 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000080 GrGLint max;
81 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
82 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000083 if (version >= GR_GL_VER(3, 2)) {
84 GrGLint profileMask;
85 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
86 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
87 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000088 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000089 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000090
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000091 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000092 fUnpackRowLengthSupport = true;
93 fUnpackFlipYSupport = false;
94 fPackRowLengthSupport = true;
95 fPackFlipYSupport = false;
96 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000097 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
98 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000099 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +0000100 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
101 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000102 fPackFlipYSupport =
103 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
104 }
105
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000106 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000107 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
108
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000109 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700110 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
111 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
112 ctxInfo.hasExtension("GL_NV_texture_barrier");
113 } else {
114 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
115 }
116
cdaltoneb79eea2016-02-26 10:39:34 -0800117 if (kGL_GrGLStandard == standard) {
118 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
119 ctxInfo.hasExtension("GL_ARB_texture_multisample");
120 } else {
121 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
122 }
123
Brian Salomon0ee6f952017-01-19 15:52:24 -0500124 // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800125 // and GL_RG on FBO textures.
Brian Salomon0ee6f952017-01-19 15:52:24 -0500126 if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800127 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000128 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
129 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800130 } else {
131 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
132 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000133 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000134 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000135 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000136 ctxInfo.hasExtension("GL_ARB_imaging");
137
egdaniel9250d242015-05-18 13:04:26 -0700138 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
139 // Thus we are blacklisting this extension for now on Adreno4xx devices.
140 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
141 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
142 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
143 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000144 fDiscardRenderTargetSupport = true;
145 fInvalidateFBType = kInvalidate_InvalidateFBType;
146 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
147 fDiscardRenderTargetSupport = true;
148 fInvalidateFBType = kDiscard_InvalidateFBType;
149 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000150
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000151 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
152 fFullClearIsFree = true;
153 }
154
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000155 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000156 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800157 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
158 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000159 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000160 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
161 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000162 }
163
cdalton626e1ff2015-06-12 13:56:46 -0700164 if (kGL_GrGLStandard == standard) {
165 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
166 } else {
167 fDirectStateAccessSupport = false;
168 }
169
170 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
171 fDebugSupport = true;
172 } else {
173 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
174 }
175
jvanverth3f801cb2014-12-16 09:49:38 -0800176 if (kGL_GrGLStandard == standard) {
177 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
178 }
179 else {
180 fES2CompatibilitySupport = true;
181 }
182
cdalton0edea2c2015-05-21 08:27:44 -0700183 if (kGL_GrGLStandard == standard) {
184 fMultisampleDisableSupport = true;
185 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700186 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700187 }
188
kkinnunend94708e2015-07-30 22:47:04 -0700189 if (kGL_GrGLStandard == standard) {
Chris Dalton1d616352017-05-31 12:51:23 -0600190 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
191 // instanced arrays, but we could make this more granular if we wanted
192 fInstanceAttribSupport =
193 version >= GR_GL_VER(3, 2) ||
194 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
195 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
196 } else {
197 fInstanceAttribSupport =
198 version >= GR_GL_VER(3, 0) ||
199 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
200 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
201 }
202
203 if (kGL_GrGLStandard == standard) {
kkinnunend94708e2015-07-30 22:47:04 -0700204 if (version >= GR_GL_VER(3, 0)) {
205 fBindFragDataLocationSupport = true;
206 }
207 } else {
208 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
209 fBindFragDataLocationSupport = true;
210 }
joshualittc1f56b52015-06-22 12:31:31 -0700211 }
212
joshualitt7bdd70a2015-10-01 06:28:11 -0700213 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
214
kkinnunene06ed252016-02-16 23:15:40 -0800215 if (kGL_GrGLStandard == standard) {
216 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
217 // We also require textureSize() support for rectangle 2D samplers which was added in
218 // GLSL 1.40.
219 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
220 fRectangleTextureSupport = true;
221 }
bsalomone179a912016-01-20 06:18:10 -0800222 }
kkinnunene06ed252016-02-16 23:15:40 -0800223 } else {
224 // Command buffer exposes this in GL ES context for Chromium reasons,
225 // but it should not be used. Also, at the time of writing command buffer
226 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800227 }
228
bsalomoncdee0092016-01-08 13:20:12 -0800229 if (kGL_GrGLStandard == standard) {
230 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
231 fTextureSwizzleSupport = true;
232 }
233 } else {
234 if (version >= GR_GL_VER(3,0)) {
235 fTextureSwizzleSupport = true;
236 }
237 }
238
cblume09bd2c02016-03-01 14:08:28 -0800239 if (kGL_GrGLStandard == standard) {
240 fMipMapLevelAndLodControlSupport = true;
241 } else if (kGLES_GrGLStandard == standard) {
242 if (version >= GR_GL_VER(3,0)) {
243 fMipMapLevelAndLodControlSupport = true;
244 }
245 }
246
bsalomon88c7b982015-07-31 11:20:16 -0700247#ifdef SK_BUILD_FOR_WIN
248 // We're assuming that on Windows Chromium we're using ANGLE.
249 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
250 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700251 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700252 fRGBA8888PixelsOpsAreSlow = isANGLE;
253 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
254 // check DX11 ANGLE.
255 fPartialFBOReadIsSlow = isANGLE;
256#endif
257
ericrkb4ecabd2016-03-11 15:18:20 -0800258 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
259 bool isMAC = false;
260#ifdef SK_BUILD_FOR_MAC
261 isMAC = true;
262#endif
263
264 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
265 // vis-versa.
266 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
267
Brian Salomond17b4a62017-05-23 16:53:47 -0400268 if (kGL_GrGLStandard == standard) {
269 if (version >= GR_GL_VER(4,4) || ctxInfo.hasExtension("GL_ARB_clear_texture")) {
270 // glClearTexImage seems to have a bug in NVIDIA drivers that was fixed sometime between
271 // 340.96 and 367.57.
272 if (ctxInfo.driver() != kNVIDIA_GrGLDriver ||
273 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(367, 57)) {
274 fClearTextureSupport = true;
275 }
276 }
277 } else if (ctxInfo.hasExtension("GL_EXT_clear_texture")) {
278 // Calling glClearTexImage crashes on the NexusPlayer.
279 if (kPowerVRRogue_GrGLRenderer != ctxInfo.renderer()) {
280 fClearTextureSupport = true;
281 }
282 }
283
cdalton4cd67132015-06-10 19:23:46 -0700284 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700285 * GrShaderCaps fields
286 **************************************************************************/
287
egdaniel0a482332015-10-26 08:59:10 -0700288 // This must be called after fCoreProfile is set on the GrGLCaps
289 this->initGLSL(ctxInfo);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500290 GrShaderCaps* shaderCaps = fShaderCaps.get();
egdaniel0a482332015-10-26 08:59:10 -0700291
csmartdalton008b9d82017-02-22 12:00:42 -0700292 if (!contextOptions.fSuppressPathRendering) {
293 shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
294 }
egdaniel05ded892015-10-26 07:38:05 -0700295
296 // For now these two are equivalent but we could have dst read in shader via some other method.
297 // Before setting this, initGLSL() must have been called.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500298 shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport;
egdaniel05ded892015-10-26 07:38:05 -0700299
300 // Enable supported shader-related caps
301 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500302 shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
egdaniel05ded892015-10-26 07:38:05 -0700303 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
304 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
Brian Salomon1edc5b92016-11-29 13:43:46 -0500305 shaderCaps->fShaderDerivativeSupport = true;
egdaniel05ded892015-10-26 07:38:05 -0700306 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
Brian Salomon1edc5b92016-11-29 13:43:46 -0500307 shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
egdaniel05ded892015-10-26 07:38:05 -0700308 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
Brian Salomon1edc5b92016-11-29 13:43:46 -0500309 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800310 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700311 }
312 else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500313 shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
egdaniel05ded892015-10-26 07:38:05 -0700314
Brian Salomon1edc5b92016-11-29 13:43:46 -0500315 shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
egdaniel05ded892015-10-26 07:38:05 -0700316 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800317
csmartdalton1d2aed02017-02-15 21:43:20 -0700318 shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader");
319
Brian Salomon1edc5b92016-11-29 13:43:46 -0500320 shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
cdalton793dc262016-02-08 10:11:47 -0800321 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700322 }
323
cdalton9c3f1432016-03-11 10:07:37 -0800324 // Protect ourselves against tracking huge amounts of texture state.
325 static const uint8_t kMaxSaneSamplers = 32;
326 GrGLint maxSamplers;
327 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500328 shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
329 if (shaderCaps->fGeometryShaderSupport) {
cdalton9c3f1432016-03-11 10:07:37 -0800330 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500331 shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800332 }
333 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500334 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800335 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500336 shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
cdalton9c3f1432016-03-11 10:07:37 -0800337
Brian Salomonf26f7a02016-11-15 14:05:01 -0500338 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500339 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
340 if (!shaderCaps->fImageLoadStoreSupport &&
Brian Salomonf26f7a02016-11-15 14:05:01 -0500341 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500342 shaderCaps->fImageLoadStoreSupport = true;
343 shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
Brian Salomonf26f7a02016-11-15 14:05:01 -0500344 }
345 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500346 shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500347 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500348 if (shaderCaps->fImageLoadStoreSupport) {
Brian Salomonf26f7a02016-11-15 14:05:01 -0500349 // Protect ourselves against tracking huge amounts of image state.
350 static constexpr int kMaxSaneImages = 4;
351 GrGLint maxUnits;
352 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
Brian Salomonf9f45122016-11-29 11:59:17 -0500353 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500354 &shaderCaps->fMaxVertexImageStorages);
355 if (shaderCaps->fGeometryShaderSupport) {
Brian Salomonf9f45122016-11-29 11:59:17 -0500356 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500357 &shaderCaps->fMaxGeometryImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500358 }
359 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500360 &shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf9f45122016-11-29 11:59:17 -0500361 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS,
Brian Salomon1edc5b92016-11-29 13:43:46 -0500362 &shaderCaps->fMaxCombinedImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500363 // We use one unit for every image uniform
Brian Salomon1edc5b92016-11-29 13:43:46 -0500364 shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages,
365 maxUnits), kMaxSaneImages);
366 shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits,
367 shaderCaps->fMaxVertexImageStorages);
368 shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits,
369 shaderCaps->fMaxGeometryImageStorages);
370 shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits,
371 shaderCaps->fMaxFragmentImageStorages);
Brian Salomonf26f7a02016-11-15 14:05:01 -0500372 }
373
csmartdalton485a1202016-07-13 10:16:32 -0700374 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
375 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
376 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
377 // limit this decision to specific GPU families rather than basing it on the vendor alone.
378 if (!GR_GL_MUST_USE_VBO &&
379 !fIsCoreProfile &&
380 (kARM_GrGLVendor == ctxInfo.vendor() ||
381 kImagination_GrGLVendor == ctxInfo.vendor() ||
382 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
383 fPreferClientSideDynamicBuffers = true;
384 }
385
Eric Karl5c779752017-05-08 12:02:07 -0700386 if (!contextOptions.fAvoidStencilBuffers) {
387 // To reduce surface area, if we avoid stencil buffers, we also disable MSAA.
388 this->initFSAASupport(contextOptions, ctxInfo, gli);
389 this->initStencilSupport(ctxInfo);
390 }
Greg Danielcd2f5122017-05-25 10:50:40 -0400391
392 // Setup blit framebuffer
393 if (kGL_GrGLStandard != ctxInfo.standard()) {
394 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
395 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
396 kNoMSAADst_BlitFramebufferFlag |
397 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
398 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
399 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
400 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
401 // limitations.
402 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
403 kResolveMustBeFull_BlitFrambufferFlag |
404 kNoMSAADst_BlitFramebufferFlag |
405 kNoFormatConversion_BlitFramebufferFlag |
406 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
407 }
408 } else {
409 if (fUsesMixedSamples ||
410 ctxInfo.version() >= GR_GL_VER(3,0) ||
411 ctxInfo.hasExtension("GL_ARB_framebuffer_object") ||
412 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
413 fBlitFramebufferFlags = 0;
414 }
415 }
416
cdalton1dd05422015-06-12 09:01:18 -0700417 this->initBlendEqationSupport(ctxInfo);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000418
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000419 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000420 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
421 // extension includes glMapBuffer.
422 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
423 fMapBufferFlags |= kSubset_MapFlag;
424 fMapBufferType = kMapBufferRange_MapBufferType;
425 } else {
426 fMapBufferType = kMapBuffer_MapBufferType;
427 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000428 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000429 // Unextended GLES2 doesn't have any buffer mapping.
430 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800431 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800432 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
433 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800434 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
435 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
436 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000437 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
438 fMapBufferFlags = kCanMap_MapFlag;
439 fMapBufferType = kMapBuffer_MapBufferType;
440 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000441 }
442
Brian Salomone03a7292017-06-08 11:00:50 -0400443 // We found that the Galaxy J5 with an Adreno 306 running 6.0.1 has a bug where
444 // GL_INVALID_OPERATION thrown by glDrawArrays when using a buffer that was mapped. The same bug
445 // did not reproduce on a Nexus7 2013 with a 320 running Android M with driver 127.0. It's
446 // unclear whether this really affects a wide range of devices.
447 if (ctxInfo.renderer() == kAdreno3xx_GrGLRenderer && ctxInfo.driver() == kQualcomm_GrGLDriver &&
448 ctxInfo.driverVersion() > GR_GL_DRIVER_VER(127, 0)) {
449 fMapBufferType = kNone_MapBufferType;
450 fMapBufferFlags = kNone_MapFlags;
451 }
452
jvanverthd7a2c1f2015-12-07 07:36:44 -0800453 if (kGL_GrGLStandard == standard) {
454 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
455 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700456 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800457 } else {
458 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
459 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700460 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
461 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800462 }
463 }
464
joshualitte5b74c62015-06-01 14:17:47 -0700465 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
466 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700467 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700468#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500469 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
470 // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and
471 // using a small subset.
cdalton397536c2016-03-25 12:15:03 -0700472 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700473#else
cdalton397536c2016-03-25 12:15:03 -0700474 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700475#endif
joshualitte5b74c62015-06-01 14:17:47 -0700476 }
477
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000478 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000479 fNPOTTextureTileSupport = true;
480 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000481 } else {
482 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000483 // ES3 has no limitations.
484 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
485 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000486 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
487 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
488 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
489 // to alllow arbitrary wrap modes, however.
490 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000491 }
492
bsalomone72bd022015-10-26 07:33:03 -0700493 // Using MIPs on this GPU seems to be a source of trouble.
494 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
495 fMipMapSupport = false;
496 }
497
bsalomon@google.combcce8922013-03-25 15:38:39 +0000498 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
499 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
500 // Our render targets are always created with textures as the color
501 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000502 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000503
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000504 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
505
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000506 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700507 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000508
robertphillips1b8e1b52015-06-24 06:54:10 -0700509#if 0
510 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
511 kQualcomm_GrGLVendor != ctxInfo.vendor();
512#endif
513
csmartdalton9bc11872016-08-09 12:42:47 -0700514 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
515 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700516 }
517
bsalomon63b21962014-11-05 07:05:34 -0800518 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800519 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
Brian Salomon1b52df32017-03-24 18:49:09 -0400520 (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() &&
521 ctxInfo.driver() != kChromium_GrGLDriver)) {
bsalomon63b21962014-11-05 07:05:34 -0800522 fUseDrawInsteadOfClear = true;
523 }
524
joshualitt83bc2292015-06-18 14:18:02 -0700525 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomonfdd11702017-05-31 15:59:40 +0000526 fUseDrawInsteadOfPartialRenderTargetWrite = true;
Brian Salomonb52fa022017-06-07 09:42:52 -0400527 // This is known to be fixed sometime between driver 145.0 and 219.0
528 if (ctxInfo.driver() == kQualcomm_GrGLDriver &&
529 ctxInfo.driverVersion() <= GR_GL_DRIVER_VER(219, 0)) {
530 fUseDrawToClearStencilClip = true;
531 }
joshualitt83bc2292015-06-18 14:18:02 -0700532 }
533
Brian Salomonaf971de2017-06-08 16:11:33 -0400534 // This was reproduced on the following configurations:
535 // - A Galaxy J5 (Adreno 306) running Android 6 with driver 140.0
536 // - A Nexus 7 2013 (Adreno 320) running Android 5 with driver 104.0
537 // - A Nexus 7 2013 (Adreno 320) running Android 6 with driver 127.0
Brian Salomon6d9c88b2017-06-12 10:24:42 -0400538 // - A Nexus 5 (Adreno 330) running Android 6 with driver 127.0
Brian Salomonaf971de2017-06-08 16:11:33 -0400539 // and not produced on:
540 // - A Nexus 7 2013 (Adreno 320) running Android 4 with driver 53.0
Brian Salomon6d9c88b2017-06-12 10:24:42 -0400541 // The particular lines that get dropped from test images varies across different devices.
Brian Salomonaf971de2017-06-08 16:11:33 -0400542 if (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() && kQualcomm_GrGLDriver == ctxInfo.driver() &&
543 ctxInfo.driverVersion() > GR_GL_DRIVER_VER(53, 0)) {
Brian Salomon6d9c88b2017-06-12 10:24:42 -0400544 fRequiresCullFaceEnableDisableWhenDrawingLinesAfterNonLines = true;
Brian Salomonaf971de2017-06-08 16:11:33 -0400545 }
546
bsalomonbabafcc2016-02-16 11:36:47 -0800547 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
548 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomonfdd11702017-05-31 15:59:40 +0000549 fUseDrawInsteadOfPartialRenderTargetWrite = true;
bsalomonbabafcc2016-02-16 11:36:47 -0800550 fUseDrawInsteadOfAllRenderTargetWrites = true;
551 }
552
robertphillips63926682015-08-20 09:39:02 -0700553#ifdef SK_BUILD_FOR_WIN
554 // On ANGLE deferring flushes can lead to GPU starvation
555 fPreferVRAMUseOverFlushes = !isANGLE;
556#endif
557
bsalomon7dea7b72015-08-19 08:26:51 -0700558 if (kChromium_GrGLDriver == ctxInfo.driver()) {
559 fMustClearUploadedBufferData = true;
560 }
561
bsalomond08ea5f2015-02-20 06:58:13 -0800562 if (kGL_GrGLStandard == standard) {
563 // ARB allows mixed size FBO attachments, EXT does not.
564 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
565 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
566 fOversizedStencilSupport = true;
567 } else {
568 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
569 }
570 } else {
571 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
572 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
573 }
574
joshualitt58001552015-06-26 12:46:36 -0700575 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700576 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
577 ctxInfo.hasExtension("GL_ARB_draw_indirect");
578 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
579 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700580 (fDrawIndirectSupport &&
581 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700582 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700583 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800584 } else {
585 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700586 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
587 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
588 fBaseInstanceSupport = fDrawIndirectSupport &&
589 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700590 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800591 }
592
Brian Salomon1edc5b92016-11-29 13:43:46 -0500593 this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800594
595 if (contextOptions.fUseShaderSwizzling) {
596 fTextureSwizzleSupport = false;
597 }
598
ethannicholas28ef4452016-03-25 09:26:03 -0700599 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700600 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
601 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700602 fSampleShadingSupport = true;
603 }
604 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
605 fSampleShadingSupport = true;
606 }
607
jvanverth84741b32016-09-30 08:39:02 -0700608 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
609 if (kGL_GrGLStandard == standard) {
610 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
611 fFenceSyncSupport = true;
612 }
613 } else if (version >= GR_GL_VER(3, 0)) {
614 fFenceSyncSupport = true;
615 }
616
Brian Osman0eb4ecb2017-05-16 13:30:11 -0400617 // Safely moving textures between contexts requires fences.
Brian Osman2c2bc112017-02-28 10:02:49 -0500618 fCrossContextTextureSupport = fFenceSyncSupport;
Brian Osman2c2bc112017-02-28 10:02:49 -0500619
brianosman131ff132016-06-07 14:22:44 -0700620 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
621 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
622 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
623 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700624 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700625 (contextOptions.fDoManualMipmapping ||
626 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700627 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
628 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700629 fDoManualMipmapping = true;
630 }
631
brianosman20471892016-12-02 06:43:32 -0800632 fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode");
brianosman851c2382016-12-07 10:03:25 -0800633 fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport &&
634 kChromium_GrGLDriver != ctxInfo.driver();
brianosman20471892016-12-02 06:43:32 -0800635
Brian Salomon028a9a52017-05-11 11:39:08 -0400636 // See http://crbug.com/710443
637#ifdef SK_BUILD_FOR_MAC
638 if (kIntel6xxx_GrGLRenderer == ctxInfo.renderer()) {
Eric Karlaeaf22b2017-05-18 15:08:09 -0700639 fClearToBoundaryValuesIsBroken = true;
Brian Salomon028a9a52017-05-11 11:39:08 -0400640 }
641#endif
Chris Dalton9926f4b2017-05-17 15:15:50 -0600642 if (kQualcomm_GrGLVendor == ctxInfo.vendor()) {
643 fDrawArraysBaseVertexIsBroken = true;
644 }
Brian Salomon028a9a52017-05-11 11:39:08 -0400645
bsalomoncdee0092016-01-08 13:20:12 -0800646 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
647 // already been detected.
brianosman20471892016-12-02 06:43:32 -0800648 this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps);
cdalton4cd67132015-06-10 19:23:46 -0700649
650 this->applyOptionsOverrides(contextOptions);
Brian Salomon1edc5b92016-11-29 13:43:46 -0500651 shaderCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000652}
653
egdaniel472d44e2015-10-22 08:20:00 -0700654const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
655 bool isCoreProfile) {
656 switch (generation) {
657 case k110_GrGLSLGeneration:
658 if (kGLES_GrGLStandard == standard) {
659 // ES2s shader language is based on version 1.20 but is version
660 // 1.00 of the ES language.
661 return "#version 100\n";
662 } else {
663 SkASSERT(kGL_GrGLStandard == standard);
664 return "#version 110\n";
665 }
666 case k130_GrGLSLGeneration:
667 SkASSERT(kGL_GrGLStandard == standard);
668 return "#version 130\n";
669 case k140_GrGLSLGeneration:
670 SkASSERT(kGL_GrGLStandard == standard);
671 return "#version 140\n";
672 case k150_GrGLSLGeneration:
673 SkASSERT(kGL_GrGLStandard == standard);
674 if (isCoreProfile) {
675 return "#version 150\n";
676 } else {
677 return "#version 150 compatibility\n";
678 }
679 case k330_GrGLSLGeneration:
680 if (kGLES_GrGLStandard == standard) {
681 return "#version 300 es\n";
682 } else {
683 SkASSERT(kGL_GrGLStandard == standard);
684 if (isCoreProfile) {
685 return "#version 330\n";
686 } else {
687 return "#version 330 compatibility\n";
688 }
689 }
cdalton33ad7012016-02-22 07:55:44 -0800690 case k400_GrGLSLGeneration:
691 SkASSERT(kGL_GrGLStandard == standard);
692 if (isCoreProfile) {
693 return "#version 400\n";
694 } else {
695 return "#version 400 compatibility\n";
696 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500697 case k420_GrGLSLGeneration:
698 SkASSERT(kGL_GrGLStandard == standard);
699 if (isCoreProfile) {
700 return "#version 420\n";
701 }
702 else {
703 return "#version 420 compatibility\n";
704 }
egdaniel472d44e2015-10-22 08:20:00 -0700705 case k310es_GrGLSLGeneration:
706 SkASSERT(kGLES_GrGLStandard == standard);
707 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800708 case k320es_GrGLSLGeneration:
709 SkASSERT(kGLES_GrGLStandard == standard);
710 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700711 }
712 return "<no version>";
713}
714
egdaniel05ded892015-10-26 07:38:05 -0700715void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700716 GrGLStandard standard = ctxInfo.standard();
717 GrGLVersion version = ctxInfo.version();
718
719 /**************************************************************************
Brian Salomon1edc5b92016-11-29 13:43:46 -0500720 * Caps specific to GrShaderCaps
egdaniel472d44e2015-10-22 08:20:00 -0700721 **************************************************************************/
722
Brian Salomon1edc5b92016-11-29 13:43:46 -0500723 GrShaderCaps* shaderCaps = fShaderCaps.get();
724 shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700725 if (kGLES_GrGLStandard == standard) {
726 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500727 shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
728 shaderCaps->fFBFetchSupport = true;
729 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
730 shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700731 }
732 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
733 // 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 -0500734 shaderCaps->fFBFetchNeedsCustomOutput = false;
735 shaderCaps->fFBFetchSupport = true;
736 shaderCaps->fFBFetchColorName = "gl_LastFragData[0]";
737 shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700738 }
739 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
740 // The arm extension also requires an additional flag which we will set onResetContext
Brian Salomon1edc5b92016-11-29 13:43:46 -0500741 shaderCaps->fFBFetchNeedsCustomOutput = false;
742 shaderCaps->fFBFetchSupport = true;
743 shaderCaps->fFBFetchColorName = "gl_LastFragColorARM";
744 shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
egdaniel472d44e2015-10-22 08:20:00 -0700745 }
Brian Salomon1edc5b92016-11-29 13:43:46 -0500746 shaderCaps->fUsesPrecisionModifiers = true;
egdaniel472d44e2015-10-22 08:20:00 -0700747 }
748
egdaniel7517e452016-09-20 13:00:26 -0700749 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
750 // Galaxy S7.
751 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
752 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500753 shaderCaps->fFBFetchSupport = false;
egdaniel7517e452016-09-20 13:00:26 -0700754 }
755
Brian Salomon1edc5b92016-11-29 13:43:46 -0500756 shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
egdaniel472d44e2015-10-22 08:20:00 -0700757
cdaltonc08f1962016-02-12 12:14:06 -0800758 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500759 shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc08f1962016-02-12 12:14:06 -0800760 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500761 shaderCaps->fFlatInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800762 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
763 }
764
765 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500766 shaderCaps->fNoPerspectiveInterpolationSupport =
cdaltonc08f1962016-02-12 12:14:06 -0800767 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
768 } else {
769 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500770 shaderCaps->fNoPerspectiveInterpolationSupport = true;
771 shaderCaps->fNoPerspectiveInterpolationExtensionString =
cdaltonc08f1962016-02-12 12:14:06 -0800772 "GL_NV_shader_noperspective_interpolation";
773 }
774 }
775
cdalton33ad7012016-02-22 07:55:44 -0800776 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500777 shaderCaps->fMultisampleInterpolationSupport =
cdalton4a98cdb2016-03-01 12:12:20 -0800778 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
779 } else {
780 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500781 shaderCaps->fMultisampleInterpolationSupport = true;
cdalton4a98cdb2016-03-01 12:12:20 -0800782 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500783 shaderCaps->fMultisampleInterpolationSupport = true;
784 shaderCaps->fMultisampleInterpolationExtensionString =
cdalton4a98cdb2016-03-01 12:12:20 -0800785 "GL_OES_shader_multisample_interpolation";
786 }
787 }
788
789 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500790 shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
cdalton33ad7012016-02-22 07:55:44 -0800791 } else {
792 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500793 shaderCaps->fSampleVariablesSupport = true;
cdalton33ad7012016-02-22 07:55:44 -0800794 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500795 shaderCaps->fSampleVariablesSupport = true;
796 shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
cdalton33ad7012016-02-22 07:55:44 -0800797 }
798 }
799
Brian Salomon1edc5b92016-11-29 13:43:46 -0500800 if (shaderCaps->fSampleVariablesSupport &&
csmartdaltonf848c9c2016-06-15 12:42:13 -0700801 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
802 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500803 shaderCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700804 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
805 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800806 }
807
egdaniel472d44e2015-10-22 08:20:00 -0700808 // 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 -0500809 shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700810
811 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
812 // function that may require a gradient calculation inside a conditional block may return
813 // undefined results". This appears to be an issue with the 'any' call since even the simple
814 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
815 // from our GrTextureDomain processor.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500816 shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
egdaniel472d44e2015-10-22 08:20:00 -0700817
Brian Salomon1edc5b92016-11-29 13:43:46 -0500818 shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard,
819 shaderCaps->fGLSLGeneration,
820 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800821
Brian Salomon1edc5b92016-11-29 13:43:46 -0500822 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) {
823 shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
egdaniel574a4c12015-11-02 06:22:44 -0800824 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800825
826 // Frag Coords Convention support is not part of ES
827 // Known issue on at least some Intel platforms:
828 // http://code.google.com/p/skia/issues/detail?id=946
829 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
830 kGLES_GrGLStandard != standard &&
831 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
832 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500833 shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
egdaniel8dcdedc2015-11-11 06:27:20 -0800834 }
835
836 if (kGLES_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500837 shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
egdaniel8dcdedc2015-11-11 06:27:20 -0800838 }
839
cdalton9c3f1432016-03-11 10:07:37 -0800840 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
841 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500842 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800843 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
844 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
845 // At least one driver has been found that has this extension without the "GL_" prefix.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500846 shaderCaps->fExternalTextureSupport = true;
cdalton9c3f1432016-03-11 10:07:37 -0800847 }
848 }
849
Brian Salomon1edc5b92016-11-29 13:43:46 -0500850 if (shaderCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800851 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500852 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
bsalomon7ea33f52015-11-22 14:51:00 -0800853 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500854 shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
bsalomon7ea33f52015-11-22 14:51:00 -0800855 }
856 }
857
cdaltonc04ce672016-03-11 14:07:38 -0800858 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500859 shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800860 } else {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500861 shaderCaps->fTexelFetchSupport =
cdaltonf8a6ce82016-04-11 13:02:05 -0700862 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
863 }
864
Brian Salomon1edc5b92016-11-29 13:43:46 -0500865 if (shaderCaps->fTexelFetchSupport) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700866 if (kGL_GrGLStandard == standard) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500867 shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700868 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
869 } else {
870 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
871 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500872 shaderCaps->fTexelBufferSupport = true;
cdaltonf8a6ce82016-04-11 13:02:05 -0700873 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500874 shaderCaps->fTexelBufferSupport = true;
875 shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700876 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500877 shaderCaps->fTexelBufferSupport = true;
878 shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
cdaltonf8a6ce82016-04-11 13:02:05 -0700879 }
cdaltonc04ce672016-03-11 14:07:38 -0800880 }
881 }
882
Chris Dalton1d616352017-05-31 12:51:23 -0600883 if (kGL_GrGLStandard == standard) {
884 shaderCaps->fVertexIDSupport = true;
885 } else {
886 // Desktop GLSL 3.30 == ES GLSL 3.00.
887 shaderCaps->fVertexIDSupport = ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
888 }
889
egdaniel8dcdedc2015-11-11 06:27:20 -0800890 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
891 // the abs first in a separate expression.
892 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500893 shaderCaps->fCanUseMinAndAbsTogether = false;
egdaniel8dcdedc2015-11-11 06:27:20 -0800894 }
895
bsalomon7ea33f52015-11-22 14:51:00 -0800896 // 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 -0800897 // thus must us -1.0 * %s.x to work correctly
898 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
Brian Salomon1edc5b92016-11-29 13:43:46 -0500899 shaderCaps->fMustForceNegatedAtanParamToFloat = true;
egdaniel8dcdedc2015-11-11 06:27:20 -0800900 }
egdaniel138c2632016-08-17 10:59:00 -0700901
902 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
903 // the original dst color when reading the outColor even after being written to. By using a
904 // local outColor we can work around this bug.
Brian Salomon1edc5b92016-11-29 13:43:46 -0500905 if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
906 shaderCaps->fRequiresLocalOutputColorForFBFetch = true;
egdaniel138c2632016-08-17 10:59:00 -0700907 }
csmartdalton2e777ea2017-02-15 10:41:27 -0700908
909#ifdef SK_BUILD_FOR_MAC
910 // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To
911 // work around this, we always use a single invocation and wrap the shader in a loop. The long-
912 // term plan for this WAR is for it to eventually be baked into SkSL.
913 shaderCaps->fMustImplementGSInvocationsWithLoop = true;
914#endif
Brian Osmanac1e4962017-05-25 11:34:38 -0400915
916 // Newer Mali GPUs do incorrect static analysis in specific situations: If there is uniform
917 // color, and that uniform contains an opaque color, and the output of the shader is only based
918 // on that uniform plus soemthing un-trackable (like a texture read), the compiler will deduce
919 // that the shader always outputs opaque values. In that case, it appears to remove the shader
920 // based blending code it normally injects, turning SrcOver into Src. To fix this, we always
921 // insert an extra bit of math on the uniform that confuses the compiler just enough...
922 if (kMaliT_GrGLRenderer == ctxInfo.renderer()) {
923 shaderCaps->fMustObfuscateUniformColor = true;
924 }
egdaniel472d44e2015-10-22 08:20:00 -0700925}
926
kkinnunencfe62e32015-07-01 02:58:50 -0700927bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700928 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
929
930 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700931 return false;
932 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700933
kkinnunencfe62e32015-07-01 02:58:50 -0700934 if (kGL_GrGLStandard == ctxInfo.standard()) {
935 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
936 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
937 return false;
938 }
939 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700940 if (!hasChromiumPathRendering &&
941 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700942 return false;
943 }
944 }
945 // We only support v1.3+ of GL_NV_path_rendering which allows us to
946 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
947 // additions are detected by checking the existence of the function.
948 // We also use *Then* functions that not all drivers might have. Check
949 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800950 if (!gli->fFunctions.fStencilThenCoverFillPath ||
951 !gli->fFunctions.fStencilThenCoverStrokePath ||
952 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
953 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
954 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700955 return false;
956 }
957 return true;
958}
bsalomon1aa20292016-01-22 08:16:09 -0800959
Brian Salomon71d9d842016-11-03 13:42:00 -0400960bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800961 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800962 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800963 std::function<bool ()> bindRenderTarget,
964 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400965 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800966 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400967 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800968 return false;
969 }
bsalomon7928ef62016-01-05 10:26:39 -0800970
Brian Salomonbf7b6202016-11-11 16:08:03 -0500971 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
972 return false;
973 }
974
bsalomon76148af2016-01-12 11:13:47 -0800975 GrGLenum readFormat;
976 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400977 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800978 return false;
979 }
980
bsalomon1aa20292016-01-22 08:16:09 -0800981 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800982 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
983 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
984 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
985 // 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 -0500986 // The manual does not seem to fully match the spec as the spec allows integer formats
987 // when the bound color buffer is an integer buffer. It doesn't specify which integer
988 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
csmartdalton6aa0e112017-02-08 16:14:11 -0500989 if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB &&
990 readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA &&
991 readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800992 return false;
993 }
994 // There is also a set of allowed types, but all the types we use are in the set:
995 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
996 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
997 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
998 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
999 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
1000 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
1001 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -08001002 return true;
piotaixre4b23142014-10-02 10:57:53 -07001003 }
bsalomon7928ef62016-01-05 10:26:39 -08001004
bsalomon76148af2016-01-12 11:13:47 -08001005 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -05001006 switch (fConfigTable[surfaceConfig].fFormatType) {
1007 case kNormalizedFixedPoint_FormatType:
1008 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
1009 return true;
1010 }
1011 break;
1012 case kInteger_FormatType:
1013 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
1014 return true;
1015 }
1016 break;
1017 case kFloat_FormatType:
1018 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
1019 return true;
1020 }
1021 break;
bsalomon7928ef62016-01-05 10:26:39 -08001022 }
1023
Brian Salomon71d9d842016-11-03 13:42:00 -04001024 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -08001025 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -04001026 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -08001027 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -08001028 if (!bindRenderTarget()) {
1029 return false;
1030 }
1031 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
1032 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -08001033 rpFormat->fFormat = format;
1034 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -08001035 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -08001036 }
1037
Brian Salomon71d9d842016-11-03 13:42:00 -04001038 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
1039 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -07001040}
1041
Eric Karl5c779752017-05-08 12:02:07 -07001042void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo,
1043 const GrGLInterface* gli) {
1044 // We need dual source blending and the ability to disable multisample in order to support mixed
1045 // samples in every corner case. We only use mixed samples if the stencil-and-cover path
1046 // renderer is available and enabled; no other path renderers support this feature.
1047 if (fMultisampleDisableSupport &&
1048 this->shaderCaps()->dualSourceBlendingSupport() &&
1049 this->shaderCaps()->pathRenderingSupport() &&
1050 (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) {
1051 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
Robert Phillips3b3307f2017-05-24 07:44:02 -04001052 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
Eric Karl5c779752017-05-08 12:02:07 -07001053 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
1054 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
1055 kChromium_GrGLDriver == ctxInfo.driver())) {
1056 fDiscardRenderTargetSupport = false;
1057 fInvalidateFBType = kNone_InvalidateFBType;
1058 }
1059 }
1060
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001061 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001062 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
1063 // ES3 driver bugs on at least one device with a tiled GPU (N10).
1064 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
1065 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
1066 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
1067 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -08001068 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001069 fMSFBOType = kMixedSamples_MSFBOType;
Robert Phillips5ab72762017-06-07 12:04:18 -04001070 } else if (ctxInfo.version() >= GR_GL_VER(3,0)) {
1071 fMSFBOType = kStandard_MSFBOType;
1072 fAlpha8IsRenderable = true;
1073 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001074 fMSFBOType = kStandard_MSFBOType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001075 } else if (ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Robert Phillips5ab72762017-06-07 12:04:18 -04001076 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00001077 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
1078 fMSFBOType = kES_Apple_MSFBOType;
1079 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001080 } else {
egdanieleed519e2016-01-15 11:36:18 -08001081 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001082 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -04001083 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1084 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
Robert Phillips5ab72762017-06-07 12:04:18 -04001085
Brian Salomon00731b42016-10-14 11:30:51 -04001086 fMSFBOType = kStandard_MSFBOType;
Robert Phillips5ab72762017-06-07 12:04:18 -04001087 if (!fIsCoreProfile && ctxInfo.renderer() != kOSMesa_GrGLRenderer) {
1088 // Core profile removes ALPHA8 support.
1089 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
1090 // However, osmesa fails if it is used even when GL_ARB_framebuffer_object is
1091 // present.
1092 fAlpha8IsRenderable = true;
1093 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001094 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1095 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Robert Phillips5ab72762017-06-07 12:04:18 -04001096 fMSFBOType = kStandard_MSFBOType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001097 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001098 }
Eric Karl5c779752017-05-08 12:02:07 -07001099
Robert Phillips3b3307f2017-05-24 07:44:02 -04001100 // We disable MSAA across the board for Intel GPUs
1101 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
1102 fMSFBOType = kNone_MSFBOType;
1103 }
1104
Eric Karl5c779752017-05-08 12:02:07 -07001105 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
1106 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
1107 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
1108 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
1109 }
1110 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
1111 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
1112 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
1113 // This is to guard against platforms that may not support as many samples for
1114 // glRasterSamples as they do for framebuffers.
1115 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
1116 }
1117 fMaxColorSampleCount = fMaxStencilSampleCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001118}
1119
cdalton1dd05422015-06-12 09:01:18 -07001120void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001121 GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get());
cdalton1dd05422015-06-12 09:01:18 -07001122
1123 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1124 // for now until its own blacklists can be updated.
1125 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001126 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001127 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001128 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001129 return;
1130 }
1131
1132 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1133 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001134 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001135 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1136 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001137 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001138 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1139 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1140 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1141 return;
1142 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1143 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001144 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001145 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1146 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001147 shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction;
cdalton1dd05422015-06-12 09:01:18 -07001148 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1149 // slow on a particular platform.
1150 } else {
1151 return; // No advanced blend support.
1152 }
1153
1154 SkASSERT(this->advancedBlendEquationSupport());
1155
csmartdalton3b88a032016-08-04 14:43:49 -07001156 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1157 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1158 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001159 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1160 (1 << kColorBurn_GrBlendEquation);
1161 }
joel.liang9764c402015-07-09 19:46:18 -07001162 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1163 // Blacklist color-burn on ARM until the fix is released.
1164 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1165 }
cdalton1dd05422015-06-12 09:01:18 -07001166}
1167
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001168namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001169const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001170}
1171
Eric Karl5c779752017-05-08 12:02:07 -07001172void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001173
1174 // Build up list of legal stencil formats (though perhaps not supported on
1175 // the particular gpu/driver) from most preferred to least.
1176
1177 // these consts are in order of most preferred to least preferred
1178 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1179
1180 static const StencilFormat
1181 // internal Format stencil bits total bits packed?
1182 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1183 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1184 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1185 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001186 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001187 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1188
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001189 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001190 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001191 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001192 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1193 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1194
1195 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1196 // require FBO support we can expect these are legal formats and don't
1197 // check. These also all support the unsized GL_STENCIL_INDEX.
1198 fStencilFormats.push_back() = gS8;
1199 fStencilFormats.push_back() = gS16;
1200 if (supportsPackedDS) {
1201 fStencilFormats.push_back() = gD24S8;
1202 }
1203 fStencilFormats.push_back() = gS4;
1204 if (supportsPackedDS) {
1205 fStencilFormats.push_back() = gDS;
1206 }
1207 } else {
1208 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1209 // for other formats.
1210 // ES doesn't support using the unsized format.
1211
1212 fStencilFormats.push_back() = gS8;
1213 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001214 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1215 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001216 fStencilFormats.push_back() = gD24S8;
1217 }
1218 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1219 fStencilFormats.push_back() = gS4;
1220 }
1221 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001222}
1223
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001224SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001225
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001226 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001227
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001228 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001229 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001230 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001231 i,
1232 fStencilFormats[i].fStencilBits,
1233 fStencilFormats[i].fTotalBits);
1234 }
1235
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001236 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001237 "None",
Brian Salomon00731b42016-10-14 11:30:51 -04001238 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001239 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001240 "IMG MS To Texture",
1241 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001242 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001243 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001244 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Robert Phillips5ab72762017-06-07 12:04:18 -04001245 GR_STATIC_ASSERT(1 == kStandard_MSFBOType);
1246 GR_STATIC_ASSERT(2 == kES_Apple_MSFBOType);
1247 GR_STATIC_ASSERT(3 == kES_IMG_MsToTexture_MSFBOType);
1248 GR_STATIC_ASSERT(4 == kES_EXT_MsToTexture_MSFBOType);
1249 GR_STATIC_ASSERT(5 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001250 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001251
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001252 static const char* kInvalidateFBTypeStr[] = {
1253 "None",
1254 "Discard",
1255 "Invalidate",
1256 };
1257 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1258 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1259 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1260 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001261
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001262 static const char* kMapBufferTypeStr[] = {
1263 "None",
1264 "MapBuffer",
1265 "MapBufferRange",
1266 "Chromium",
1267 };
1268 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1269 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1270 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1271 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1272 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1273
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001274 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001275 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001276 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001277 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001278 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001279 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1280 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1281 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1282 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001283
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001284 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001285 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
Robert Phillips5ab72762017-06-07 12:04:18 -04001286 r.appendf("Alpha8 is renderable: %s\n", (fAlpha8IsRenderable ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001287 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001288 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001289 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1290 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
cdalton06604b92016-02-05 10:09:51 -08001291 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1292 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1293 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001294 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1295 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001296 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001297 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001298 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001299 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001300 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001301
1302 r.append("Configs\n-------\n");
1303 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1304 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001305 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1306 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001307 i,
1308 fConfigTable[i].fFlags,
1309 fConfigTable[i].fFormats.fBaseInternalFormat,
1310 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001311 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1312 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001313 fConfigTable[i].fFormats.fExternalType,
1314 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001315 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001316 }
1317
jvanverthe9c0fc62015-04-29 11:18:05 -07001318 return r;
1319}
1320
jvanverthe9c0fc62015-04-29 11:18:05 -07001321static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1322 switch (p) {
1323 case kLow_GrSLPrecision:
1324 return GR_GL_LOW_FLOAT;
1325 case kMedium_GrSLPrecision:
1326 return GR_GL_MEDIUM_FLOAT;
1327 case kHigh_GrSLPrecision:
1328 return GR_GL_HIGH_FLOAT;
Brian Osman33aa2c72017-04-05 09:26:15 -04001329 default:
1330 SkFAIL("Unexpected precision type.");
1331 return -1;
jvanverthe9c0fc62015-04-29 11:18:05 -07001332 }
jvanverthe9c0fc62015-04-29 11:18:05 -07001333}
1334
1335static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1336 switch (type) {
1337 case kVertex_GrShaderType:
1338 return GR_GL_VERTEX_SHADER;
1339 case kGeometry_GrShaderType:
1340 return GR_GL_GEOMETRY_SHADER;
1341 case kFragment_GrShaderType:
1342 return GR_GL_FRAGMENT_SHADER;
1343 }
1344 SkFAIL("Unknown shader type.");
1345 return -1;
1346}
1347
jvanverthcba99b82015-06-24 06:59:57 -07001348void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001349 const GrGLInterface* intf,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001350 GrShaderCaps* shaderCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001351 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1352 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1353 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1354 if (kGeometry_GrShaderType != s) {
1355 GrShaderType shaderType = static_cast<GrShaderType>(s);
1356 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001357 GrShaderCaps::PrecisionInfo* first = nullptr;
Brian Salomon1edc5b92016-11-29 13:43:46 -05001358 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001359 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1360 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1361 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1362 GrGLint range[2];
1363 GrGLint bits;
1364 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1365 if (bits) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001366 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1367 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1368 shaderCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001369 if (!first) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001370 first = &shaderCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001371 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001372 else if (!shaderCaps->fShaderPrecisionVaries) {
1373 shaderCaps->fShaderPrecisionVaries =
1374 (*first != shaderCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001375 }
1376 }
1377 }
1378 }
1379 }
1380 }
1381 else {
1382 // 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 -05001383 shaderCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001384 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1385 if (kGeometry_GrShaderType != s) {
1386 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001387 shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1388 shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1389 shaderCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001390 }
1391 }
1392 }
1393 }
1394 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1395 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1396 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1397 // are recommended against.
Brian Salomon1edc5b92016-11-29 13:43:46 -05001398 if (shaderCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001399 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05001400 shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
1401 shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001402 }
1403 }
Brian Salomon1edc5b92016-11-29 13:43:46 -05001404 shaderCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001405}
1406
bsalomon41e4384e2016-01-08 09:12:44 -08001407bool GrGLCaps::bgraIsInternalFormat() const {
1408 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1409}
1410
bsalomon76148af2016-01-12 11:13:47 -08001411bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1412 GrGLenum* internalFormat, GrGLenum* externalFormat,
1413 GrGLenum* externalType) const {
1414 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1415 externalFormat, externalType)) {
1416 return false;
1417 }
1418 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1419 return true;
1420}
1421
bsalomon76148af2016-01-12 11:13:47 -08001422bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1423 GrGLenum* externalFormat, GrGLenum* externalType) const {
1424 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1425 externalFormat, externalType)) {
1426 return false;
1427 }
1428 return true;
1429}
1430
1431bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
bsalomon76148af2016-01-12 11:13:47 -08001432 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1433 return true;
1434}
1435
1436bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1437 ExternalFormatUsage usage, GrGLenum* externalFormat,
1438 GrGLenum* externalType) const {
1439 SkASSERT(externalFormat && externalType);
bsalomon76148af2016-01-12 11:13:47 -08001440
1441 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1442 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1443
1444 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1445 // made to work in many cases using glPixelStore and what not but is not needed currently.
1446 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1447 return false;
1448 }
1449
1450 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1451 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1452
bsalomone9573312016-01-25 14:33:25 -08001453 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1454 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1455 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1456 // texture, not the red component.
1457 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1458 if (this->textureRedSupport()) {
1459 SkASSERT(GR_GL_RED == *externalFormat);
1460 *externalFormat = GR_GL_ALPHA;
1461 }
1462 }
1463
bsalomon76148af2016-01-12 11:13:47 -08001464 return true;
1465}
1466
brianosman20471892016-12-02 06:43:32 -08001467void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions,
1468 const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
Brian Salomon1edc5b92016-11-29 13:43:46 -05001469 GrShaderCaps* shaderCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001470 /*
1471 Comments on renderability of configs on various GL versions.
1472 OpenGL < 3.0:
1473 no built in support for render targets.
1474 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1475 format RGB, RGBA and NV float formats we don't use.
1476 This is the following:
1477 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1478 RGB10_A2, RGBA12,RGBA16
1479 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1480 since they aren't required by later standards and the driver can simply return
1481 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1482 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1483 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1484 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1485 This adds a lot of additional renderable sized formats, including ALPHA8.
1486 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1487 16F, 32I, 32UI, and 32F variants).
1488 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1489
1490 For both the above extensions we limit ourselves to those that are also required by
1491 OpenGL 3.0.
1492
1493 OpenGL 3.0:
1494 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1495 but are not required to be supported as renderable textures/renderbuffer.
1496 Required renderable color formats:
1497 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1498 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1499 RGB10_A2.
1500 - R11F_G11F_B10F.
1501 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1502 and RG8UI.
1503 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1504 - ALPHA8
1505
1506 OpenGL 3.1, 3.2, 3.3
1507 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1508 OpengGL 3.3, 4.0, 4.1
1509 Adds RGB10_A2UI.
1510 OpengGL 4.2
1511 Adds
1512 - RGB5_A1, RGBA4
1513 - RGB565
1514 OpenGL 4.4
1515 Does away with the separate list and adds a column to the sized internal color format
1516 table. However, no new formats become required color renderable.
1517
1518 ES 2.0
1519 color renderable: RGBA4, RGB5_A1, RGB565
1520 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1521 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1522 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1523 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1524 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1525 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1526
1527 ES 3.0
1528 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1529 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1530 RGB5_A1.
1531 - RGB8 and RGB565.
1532 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1533 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1534 ES 3.1
1535 Adds RGB10_A2, RGB10_A2UI,
1536 ES 3.2
1537 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1538 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001539 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1540 ConfigInfo::kFBOColorAttachment_Flag;
1541 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001542 if (kNone_MSFBOType != fMSFBOType) {
1543 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1544 }
bsalomon41e4384e2016-01-08 09:12:44 -08001545 GrGLStandard standard = ctxInfo.standard();
1546 GrGLVersion version = ctxInfo.version();
1547
cblume790d5132016-02-29 11:13:29 -08001548 bool texStorageSupported = false;
1549 if (kGL_GrGLStandard == standard) {
1550 // The EXT version can apply to either GL or GLES.
1551 texStorageSupported = version >= GR_GL_VER(4,2) ||
1552 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1553 ctxInfo.hasExtension("GL_EXT_texture_storage");
1554 } else {
Brian Salomon3ab83e22016-11-28 13:14:00 -05001555 texStorageSupported = version >= GR_GL_VER(3,0) ||
1556 ctxInfo.hasExtension("GL_EXT_texture_storage");
cblume790d5132016-02-29 11:13:29 -08001557 }
1558
1559 // TODO: remove after command buffer supports full ES 3.0
1560 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1561 kChromium_GrGLDriver == ctxInfo.driver()) {
1562 texStorageSupported = false;
1563 }
1564
cdalton74b8d322016-04-11 14:47:28 -07001565 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1566
bsalomon30447372015-12-21 09:03:05 -08001567 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1568 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001569 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001570 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001571 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001572 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001573
1574 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1575 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001576 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1577 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001578 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001579 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001580 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1581 if (kGL_GrGLStandard == standard) {
1582 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1583 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001584 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001585 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1586 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1587 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1588 }
egdaniel4999df82016-01-07 17:06:04 -08001589 }
cblume790d5132016-02-29 11:13:29 -08001590 if (texStorageSupported) {
1591 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1592 }
cdalton74b8d322016-04-11 14:47:28 -07001593 if (texelBufferSupport) {
1594 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1595 }
bsalomoncdee0092016-01-08 13:20:12 -08001596 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001597
bsalomon76148af2016-01-12 11:13:47 -08001598 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1599 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001600 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001601 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001602 if (kGL_GrGLStandard == standard) {
1603 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1604 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1605 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1606 // Since the internal format is RGBA8, it is also renderable.
1607 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1608 allRenderFlags;
1609 }
1610 } else {
1611 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1612 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1613 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
Brian Osman48c99192017-06-02 08:45:06 -04001614 // This APPLE extension introduces complexity on ES2. It leaves the internal format
1615 // as RGBA, but allows BGRA as the external format. From testing, it appears that the
1616 // driver remembers the external format when the texture is created (with TexImage).
1617 // If you then try to upload data in the other swizzle (with TexSubImage), it fails.
1618 // We could work around this, but it adds even more state tracking to code that is
1619 // already too tricky. Instead, we opt not to support BGRA on ES2 with this extension.
1620 // This also side-steps some ambiguous interactions with the texture storage extension.
1621 if (version >= GR_GL_VER(3,0)) {
1622 // The APPLE extension doesn't make this renderable.
1623 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon41e4384e2016-01-08 09:12:44 -08001624 }
1625 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1626 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001627 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001628 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001629 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001630 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1631 ConfigInfo::kRenderableWithMSAA_Flag;
1632 }
1633 }
1634 }
Brian Osman48c99192017-06-02 08:45:06 -04001635
1636 bool isX86PowerVR = false;
1637#if defined(SK_CPU_X86)
1638 if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) {
1639 isX86PowerVR = true;
1640 }
1641#endif
1642
1643 // Adreno 3xx, 4xx, 5xx, and NexusPlayer all fail if we try to use TexStorage with BGRA
1644 if (texStorageSupported &&
1645 kAdreno3xx_GrGLRenderer != ctxInfo.renderer() &&
1646 kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1647 kAdreno5xx_GrGLRenderer != ctxInfo.renderer() &&
1648 !isX86PowerVR) {
1649 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
cblume790d5132016-02-29 11:13:29 -08001650 }
bsalomoncdee0092016-01-08 13:20:12 -08001651 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001652
brianosmana6359362016-03-21 06:55:37 -07001653 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001654 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001655 if (kGL_GrGLStandard == standard) {
1656 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001657 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001658 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1659 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1660 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001661 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001662 }
1663 }
1664 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001665 if (fSRGBSupport) {
1666 fSRGBWriteControl = true;
1667 }
bsalomon41e4384e2016-01-08 09:12:44 -08001668 } else {
brianosman20471892016-12-02 06:43:32 -08001669 fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB");
Brian Osman48c99192017-06-02 08:45:06 -04001670 // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to
1671 // blacklist that device (and any others that might be sharing the same driver).
1672 if (isX86PowerVR) {
brianosman20471892016-12-02 06:43:32 -08001673 fSRGBSupport = false;
1674 }
bsalomon41e4384e2016-01-08 09:12:44 -08001675 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1676 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001677 // See https://bug.skia.org/5329 for Adreno4xx issue.
1678 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1679 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001680 }
brianosman20471892016-12-02 06:43:32 -08001681 if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) {
1682 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients
1683 // can opt-out of that requirement, if they intend to always do linear blending.
brianosmana6359362016-03-21 06:55:37 -07001684 fSRGBSupport = false;
1685 }
brianosman20471892016-12-02 06:43:32 -08001686
1687 // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable
1688 // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace,
1689 // and sBGRA is basically impossible to support on any version of ES (with our current code).
1690 // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair
1691 // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what
1692 // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily
1693 // affects Windows.
1694 if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) {
1695 fSRGBSupport = false;
1696 }
1697
Brian Osman48c99192017-06-02 08:45:06 -04001698 // ES2 Command Buffer has several TexStorage restrictions. It appears to fail for any format
1699 // not explicitly allowed by GL_EXT_texture_storage, particularly those from other extensions.
1700 bool isCommandBufferES2 = kChromium_GrGLDriver == ctxInfo.driver() && version < GR_GL_VER(3, 0);
1701
Brian Osman67999392017-05-31 16:19:34 -04001702 uint32_t srgbRenderFlags = allRenderFlags;
1703 // MacPro devices with AMD cards fail to create MSAA sRGB render buffers
1704#if defined(SK_BUILD_FOR_MAC)
1705 if (kATI_GrGLVendor == ctxInfo.vendor()) {
1706 srgbRenderFlags &= ~ConfigInfo::kRenderableWithMSAA_Flag;
1707 }
1708#endif
1709
bsalomon30447372015-12-21 09:03:05 -08001710 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1711 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1712 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1713 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001714 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1715 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001716 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001717 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001718 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001719 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Osman67999392017-05-31 16:19:34 -04001720 srgbRenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001721 }
Brian Osman48c99192017-06-02 08:45:06 -04001722 // ES2 Command Buffer does not allow TexStorage with SRGB8_ALPHA8_EXT
1723 if (texStorageSupported && !isCommandBufferES2) {
cblume790d5132016-02-29 11:13:29 -08001724 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1725 }
bsalomoncdee0092016-01-08 13:20:12 -08001726 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
brianosmana6359362016-03-21 06:55:37 -07001727 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1728 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1729 // is in this format, for example).
1730 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1731 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1732 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1733 // external format is GL_BGRA.
1734 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1735 GR_GL_BGRA;
1736 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1737 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001738 if (fSRGBSupport && kGL_GrGLStandard == standard) {
brianosmana6359362016-03-21 06:55:37 -07001739 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Osman67999392017-05-31 16:19:34 -04001740 srgbRenderFlags;
brianosmana6359362016-03-21 06:55:37 -07001741 }
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001742
brianosmana6359362016-03-21 06:55:37 -07001743 if (texStorageSupported) {
1744 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1745 }
1746 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1747
Brian Salomonbf7b6202016-11-11 16:08:03 -05001748 bool hasIntegerTextures;
1749 if (standard == kGL_GrGLStandard) {
1750 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1751 ctxInfo.hasExtension("GL_EXT_texture_integer");
1752 } else {
1753 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1754 }
1755 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1756 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1757 hasIntegerTextures = false;
1758 }
1759 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1760 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1761 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1762 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1763 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1764 // We currently only support using integer textures as srcs, not for rendering (even though GL
1765 // allows it).
1766 if (hasIntegerTextures) {
1767 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1768 ConfigInfo::kFBOColorAttachment_Flag;
1769 if (texStorageSupported) {
1770 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1771 ConfigInfo::kCanUseTexStorage_Flag;
1772 }
1773 }
1774
bsalomon30447372015-12-21 09:03:05 -08001775 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1776 if (this->ES2CompatibilitySupport()) {
1777 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1778 } else {
1779 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1780 }
bsalomon76148af2016-01-12 11:13:47 -08001781 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1782 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001783 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001784 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001785 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1786 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001787 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001788 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1789 }
1790 } else {
1791 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1792 }
cblume790d5132016-02-29 11:13:29 -08001793 // 565 is not a sized internal format on desktop GL. So on desktop with
1794 // 565 we always use an unsized internal format to let the system pick
1795 // the best sized format to convert the 565 data to. Since TexStorage
1796 // only allows sized internal formats we disallow it.
1797 //
1798 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1799 // update.
1800 if (texStorageSupported && kGL_GrGLStandard != standard) {
1801 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1802 }
bsalomoncdee0092016-01-08 13:20:12 -08001803 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001804
1805 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1806 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001807 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1808 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001809 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001810 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001811 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1812 if (kGL_GrGLStandard == standard) {
1813 if (version >= GR_GL_VER(4, 2)) {
1814 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1815 }
1816 } else {
1817 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1818 }
cblume790d5132016-02-29 11:13:29 -08001819 if (texStorageSupported) {
1820 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1821 }
bsalomoncdee0092016-01-08 13:20:12 -08001822 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001823
Brian Osmanf4faccd2017-01-10 16:53:58 -05001824 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1825 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1826 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon30447372015-12-21 09:03:05 -08001827 if (this->textureRedSupport()) {
1828 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1829 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001830 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1831 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001832 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001833 if (texelBufferSupport) {
1834 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1835 }
Robert Phillips5ab72762017-06-07 12:04:18 -04001836 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
bsalomon30447372015-12-21 09:03:05 -08001837 } else {
1838 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1839 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001840 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1841 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001842 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
Robert Phillips5ab72762017-06-07 12:04:18 -04001843 if (fAlpha8IsRenderable) {
1844 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1845 }
bsalomon30447372015-12-21 09:03:05 -08001846 }
Robert Phillips5ab72762017-06-07 12:04:18 -04001847
Brian Osman48c99192017-06-02 08:45:06 -04001848 // ES2 Command Buffer does not allow TexStorage with R8_EXT (so Alpha_8 and Gray_8)
1849 if (texStorageSupported && !isCommandBufferES2) {
cblume790d5132016-02-29 11:13:29 -08001850 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1851 }
bsalomon41e4384e2016-01-08 09:12:44 -08001852
Brian Osmanf4faccd2017-01-10 16:53:58 -05001853 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1854 fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1855 fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
Brian Osman986563b2017-01-10 14:20:02 -05001856 if (this->textureRedSupport()) {
1857 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1858 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
1859 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1860 GR_GL_RED;
1861 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA();
1862 if (texelBufferSupport) {
1863 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1864 }
1865 } else {
1866 fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE;
1867 fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8;
1868 fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1869 GR_GL_LUMINANCE;
1870 fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1871 }
Brian Osman986563b2017-01-10 14:20:02 -05001872#if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster
1873 if (this->textureRedSupport() ||
1874 (kDesktop_ARB_MSFBOType == this->msFBOType() &&
1875 ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1876 // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable.
1877 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
1878 // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case.
1879 fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags;
1880 }
1881#endif
Brian Osman48c99192017-06-02 08:45:06 -04001882 if (texStorageSupported && !isCommandBufferES2) {
Brian Osman986563b2017-01-10 14:20:02 -05001883 fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1884 }
1885
bsalomon41e4384e2016-01-08 09:12:44 -08001886 // Check for [half] floating point texture support
1887 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1888 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1889 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1890 bool hasFPTextures = false;
1891 bool hasHalfFPTextures = false;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001892 bool rgIsTexturable = false;
bsalomon41e4384e2016-01-08 09:12:44 -08001893 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001894 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001895
1896 if (kGL_GrGLStandard == standard) {
1897 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1898 hasFPTextures = true;
1899 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001900 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001901 }
1902 } else {
1903 if (version >= GR_GL_VER(3, 1)) {
1904 hasFPTextures = true;
1905 hasHalfFPTextures = true;
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001906 rgIsTexturable = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001907 } else {
1908 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1909 ctxInfo.hasExtension("GL_OES_texture_float")) {
1910 hasFPTextures = true;
1911 }
1912 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1913 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1914 hasHalfFPTextures = true;
1915 }
1916 }
1917 }
bsalomon30447372015-12-21 09:03:05 -08001918
csmartdalton6aa0e112017-02-08 16:14:11 -05001919 for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) {
1920 const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG;
1921 fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format;
1922 fConfigTable[fpconfig].fFormats.fSizedInternalFormat =
1923 kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F;
1924 fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format;
1925 fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT;
1926 fConfigTable[fpconfig].fFormatType = kFloat_FormatType;
1927 if (hasFPTextures) {
Robert Phillipsb7b7e5f2017-05-22 13:23:19 -04001928 fConfigTable[fpconfig].fFlags = rgIsTexturable ? ConfigInfo::kTextureable_Flag : 0;
csmartdalton6aa0e112017-02-08 16:14:11 -05001929 // For now we only enable rendering to float on desktop, because on ES we'd have to
1930 // solve many precision issues and no clients actually want this yet.
1931 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1932 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1933 fConfigTable[fpconfig].fFlags |= fpRenderFlags;
1934 }
bsalomon41e4384e2016-01-08 09:12:44 -08001935 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001936 if (texStorageSupported) {
1937 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1938 }
1939 if (texelBufferSupport) {
1940 fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1941 }
1942 fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001943 }
bsalomon30447372015-12-21 09:03:05 -08001944
1945 if (this->textureRedSupport()) {
1946 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1947 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001948 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1949 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001950 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001951 if (texelBufferSupport) {
1952 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1953 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1954 }
bsalomon30447372015-12-21 09:03:05 -08001955 } else {
1956 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1957 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001958 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1959 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001960 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001961 }
Brian Osman3a887252016-11-17 13:27:31 -05001962 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1963 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1964 // returned when we query, but that turns into a bigger refactor, so just work around it.
1965 if (kGL_GrGLStandard == ctxInfo.standard() ||
1966 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001967 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1968 } else {
1969 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1970 }
bsalomon7928ef62016-01-05 10:26:39 -08001971 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
cblume790d5132016-02-29 11:13:29 -08001972 if (texStorageSupported) {
1973 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1974 }
csmartdalton6aa0e112017-02-08 16:14:11 -05001975 if (hasHalfFPTextures) {
1976 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1977 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1978 // GL_RED internal format.
1979 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) ||
1980 (this->textureRedSupport() &&
1981 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1982 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1983 }
1984 }
bsalomon30447372015-12-21 09:03:05 -08001985
1986 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1987 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001988 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1989 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001990 // See comment above, re: ANGLE and ES3.
1991 if (kGL_GrGLStandard == ctxInfo.standard() ||
1992 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001993 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1994 } else {
1995 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1996 }
bsalomon7928ef62016-01-05 10:26:39 -08001997 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001998 if (hasHalfFPTextures) {
1999 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
2000 // ES requires 3.2 or EXT_color_buffer_half_float.
2001 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
2002 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
2003 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
2004 }
2005 }
cblume790d5132016-02-29 11:13:29 -08002006 if (texStorageSupported) {
2007 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
2008 }
cdalton74b8d322016-04-11 14:47:28 -07002009 if (texelBufferSupport) {
2010 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
2011 }
bsalomoncdee0092016-01-08 13:20:12 -08002012 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08002013
bsalomon30447372015-12-21 09:03:05 -08002014 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
2015
2016 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08002017 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
2018 ctxInfo.version() >= GR_GL_VER(3,0));
2019 // All ES versions (thus far) require sized internal formats for render buffers.
2020 // TODO: Always use sized internal format?
2021 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
2022
bsalomon30447372015-12-21 09:03:05 -08002023 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08002024 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
2025 // param to glTex[Sub]Image.
2026 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
2027 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
2028 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
2029 fConfigTable[i].fFormats.fSizedInternalFormat :
2030 fConfigTable[i].fFormats.fBaseInternalFormat;
2031 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08002032 fConfigTable[i].fFormats.fSizedInternalFormat :
2033 fConfigTable[i].fFormats.fBaseInternalFormat;
2034 }
2035 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
2036 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
2037 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
2038 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
2039 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08002040 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08002041 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07002042
2043 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
2044 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
2045 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
2046 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08002047 }
2048
2049 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
2050 // as a base format.
2051 // GL_EXT_texture_format_BGRA8888:
2052 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
2053 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
2054 // formats.
halcanary9d524f22016-03-29 09:03:52 -07002055 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002056 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2057 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2058 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002059 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002060 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2061 }
2062
bsalomoncdee0092016-01-08 13:20:12 -08002063 // If we don't have texture swizzle support then the shader generator must insert the
2064 // swizzle into shader code.
2065 if (!this->textureSwizzleSupport()) {
2066 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002067 shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
bsalomoncdee0092016-01-08 13:20:12 -08002068 }
2069 }
2070
bsalomon7f9b2e42016-01-12 13:29:26 -08002071 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2072 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2073 // gets written to the single component.
2074 if (this->textureRedSupport()) {
2075 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2076 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2077 if (GrPixelConfigIsAlphaOnly(config) &&
2078 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
Brian Salomon1edc5b92016-11-29 13:43:46 -05002079 shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
bsalomon7f9b2e42016-01-12 13:29:26 -08002080 }
2081 }
2082 }
2083
Brian Salomonf9f45122016-11-29 11:59:17 -05002084 // We currently only support images on rgba textures formats. We could add additional formats
2085 // if desired. The shader builder would have to be updated to add swizzles where appropriate
2086 // (e.g. where we use GL_RED textures to implement alpha configs).
2087 if (this->shaderCaps()->imageLoadStoreSupport()) {
2088 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
2089 ConfigInfo::kCanUseAsImageStorage_Flag;
2090 // In OpenGL ES a texture may only be used with BindImageTexture if it has been made
2091 // immutable via TexStorage. We create non-integer textures as mutable textures using
2092 // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image
2093 // storage support for non-integer textures.
2094 if (kGL_GrGLStandard == ctxInfo.standard()) {
2095 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2096 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |=
2097 ConfigInfo::kCanUseAsImageStorage_Flag;
2098 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag;
2099 }
2100 }
2101
bsalomon30447372015-12-21 09:03:05 -08002102#ifdef SK_DEBUG
2103 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002104 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002105 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002106 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2107 // renderable.
2108 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2109 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002110 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2111 fConfigTable[i].fFormats.fBaseInternalFormat);
2112 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002113 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002114 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2115 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2116 fConfigTable[i].fFormats.fExternalFormat[j]);
2117 }
2118 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002119 }
2120#endif
2121}
2122
Robert Phillipsbf25d432017-04-07 10:08:53 -04002123bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc,
Eric Karl74480882017-04-03 14:49:05 -07002124 bool* rectsMustMatch, bool* disallowSubrect) const {
2125 // By default, we don't require rects to match.
2126 *rectsMustMatch = false;
2127
2128 // By default, we allow subrects.
2129 *disallowSubrect = false;
2130
Brian Salomon467921e2017-03-06 16:17:12 -05002131 // If the src is a texture, we can implement the blit as a draw assuming the config is
2132 // renderable.
Robert Phillipsbf25d432017-04-07 10:08:53 -04002133 if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) {
2134 desc->fOrigin = kBottomLeft_GrSurfaceOrigin;
Brian Salomon467921e2017-03-06 16:17:12 -05002135 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2136 desc->fConfig = src->config();
2137 return true;
2138 }
2139
Robert Phillipsbf25d432017-04-07 10:08:53 -04002140 {
2141 // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were
2142 // wrapped. In that case the proxy would already be instantiated.
2143 const GrTexture* srcTexture = src->priv().peekTexture();
2144 const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture);
2145 if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) {
2146 // Not supported for FBO blit or CopyTexSubImage
2147 return false;
2148 }
Brian Salomon467921e2017-03-06 16:17:12 -05002149 }
2150
2151 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2152 // possible and we return false to fallback to creating a render target dst for render-to-
2153 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2154 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
Robert Phillipsbb581ce2017-05-29 15:05:15 -04002155 GrSurfaceOrigin originForBlitFramebuffer = kTopLeft_GrSurfaceOrigin;
Eric Karl74480882017-04-03 14:49:05 -07002156 bool rectsMustMatchForBlitFramebuffer = false;
2157 bool disallowSubrectForBlitFramebuffer = false;
2158 if (src->numColorSamples() &&
2159 (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) {
2160 rectsMustMatchForBlitFramebuffer = true;
2161 disallowSubrectForBlitFramebuffer = true;
2162 // Mirroring causes rects to mismatch later, don't allow it.
2163 originForBlitFramebuffer = src->origin();
2164 } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() &
2165 kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) {
2166 rectsMustMatchForBlitFramebuffer = true;
2167 // Mirroring causes rects to mismatch later, don't allow it.
2168 originForBlitFramebuffer = src->origin();
2169 } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) {
Brian Salomon467921e2017-03-06 16:17:12 -05002170 originForBlitFramebuffer = src->origin();
2171 }
2172
2173 // Check for format issues with glCopyTexSubImage2D
2174 if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) {
2175 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2176 // then we set up for that, otherwise fail.
2177 if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) {
2178 desc->fOrigin = originForBlitFramebuffer;
2179 desc->fConfig = kBGRA_8888_GrPixelConfig;
Eric Karl74480882017-04-03 14:49:05 -07002180 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2181 *disallowSubrect = disallowSubrectForBlitFramebuffer;
Brian Salomon467921e2017-03-06 16:17:12 -05002182 return true;
2183 }
2184 return false;
2185 }
2186
Robert Phillipsbf25d432017-04-07 10:08:53 -04002187 {
Brian Salomon63e79732017-05-15 21:23:13 -04002188 bool srcIsMSAARenderbuffer = GrFSAAType::kUnifiedMSAA == src->fsaaType() &&
2189 this->usesMSAARenderBuffers();
Robert Phillipsbf25d432017-04-07 10:08:53 -04002190 if (srcIsMSAARenderbuffer) {
2191 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO
2192 // blit or fail.
2193 if (this->canConfigBeFBOColorAttachment(src->config())) {
2194 desc->fOrigin = originForBlitFramebuffer;
2195 desc->fConfig = src->config();
2196 *rectsMustMatch = rectsMustMatchForBlitFramebuffer;
2197 *disallowSubrect = disallowSubrectForBlitFramebuffer;
2198 return true;
2199 }
2200 return false;
Brian Salomon467921e2017-03-06 16:17:12 -05002201 }
Brian Salomon467921e2017-03-06 16:17:12 -05002202 }
2203
2204 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2205 desc->fConfig = src->config();
2206 desc->fOrigin = src->origin();
2207 desc->fFlags = kNone_GrSurfaceFlags;
2208 return true;
2209}
2210
csmartdaltone0d36292016-07-29 08:14:20 -07002211void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2212 if (options.fEnableInstancedRendering) {
2213 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2214#ifndef SK_BUILD_FOR_MAC
2215 // OS X doesn't seem to write correctly to floating point textures when using
2216 // glDraw*Indirect, regardless of the underlying GPU.
2217 fAvoidInstancedDrawsToFPTargets = true;
2218#endif
2219 }
2220}