blob: 9f24e5099df4271f1fb4c651e56046c9ae5cee30 [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
8
9#include "GrGLCaps.h"
joshualittb4384b92014-10-21 12:53:15 -070010
egdanielb7e7d572015-11-04 04:23:53 -080011#include "GrContextOptions.h"
robertphillips@google.com6177e692013-02-28 20:16:25 +000012#include "GrGLContext.h"
bsalomon1aa20292016-01-22 08:16:09 -080013#include "GrGLRenderTarget.h"
jvanverthcba99b82015-06-24 06:59:57 -070014#include "glsl/GrGLSLCaps.h"
csmartdaltone0d36292016-07-29 08:14:20 -070015#include "instanced/GLInstancedRendering.h"
bsalomon@google.comc9668ec2012-04-11 18:16:41 +000016#include "SkTSearch.h"
bsalomon@google.com20f7f172013-05-17 19:05:03 +000017#include "SkTSort.h"
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000018
bsalomon682c2692015-05-22 14:01:46 -070019GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions,
20 const GrGLContextInfo& ctxInfo,
21 const GrGLInterface* glInterface) : INHERITED(contextOptions) {
bsalomon1aa20292016-01-22 08:16:09 -080022 fStandard = ctxInfo.standard();
23
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000024 fStencilFormats.reset();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000025 fMSFBOType = kNone_MSFBOType;
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +000026 fInvalidateFBType = kNone_InvalidateFBType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +000027 fMapBufferType = kNone_MapBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -080028 fTransferBufferType = kNone_TransferBufferType;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000029 fMaxFragmentUniformVectors = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000030 fUnpackRowLengthSupport = false;
31 fUnpackFlipYSupport = false;
32 fPackRowLengthSupport = false;
33 fPackFlipYSupport = false;
34 fTextureUsageSupport = false;
robertphillips@google.com443e5a52012-04-30 20:01:21 +000035 fTextureRedSupport = false;
bsalomon@google.come76b7cc2012-06-18 12:47:06 +000036 fImagingSupport = false;
bsalomon@google.com07631cf2013-03-05 14:14:58 +000037 fVertexArrayObjectSupport = false;
cdalton626e1ff2015-06-12 13:56:46 -070038 fDirectStateAccessSupport = false;
39 fDebugSupport = false;
jvanverth3f801cb2014-12-16 09:49:38 -080040 fES2CompatibilitySupport = false;
csmartdalton4c18b622016-07-29 12:19:28 -070041 fDrawInstancedSupport = false;
cdalton06604b92016-02-05 10:09:51 -080042 fDrawIndirectSupport = false;
43 fMultiDrawIndirectSupport = false;
44 fBaseInstanceSupport = false;
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +000045 fIsCoreProfile = false;
joshualittc1f56b52015-06-22 12:31:31 -070046 fBindFragDataLocationSupport = false;
bsalomone5286e02016-01-14 09:24:09 -080047 fRectangleTextureSupport = false;
bsalomoncdee0092016-01-08 13:20:12 -080048 fTextureSwizzleSupport = false;
bsalomon88c7b982015-07-31 11:20:16 -070049 fRGBA8888PixelsOpsAreSlow = false;
50 fPartialFBOReadIsSlow = false;
cblume09bd2c02016-03-01 14:08:28 -080051 fMipMapLevelAndLodControlSupport = false;
ericrkb4ecabd2016-03-11 15:18:20 -080052 fRGBAToBGRAReadbackConversionsAreSlow = false;
brianosman09563ce2016-06-02 08:59:34 -070053 fDoManualMipmapping = false;
piotaixre4b23142014-10-02 10:57:53 -070054
Brian Salomone5e7eb12016-10-14 16:18:33 -040055 fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -080056
halcanary385fe4d2015-08-26 13:07:48 -070057 fShaderCaps.reset(new GrGLSLCaps(contextOptions));
bsalomon4ee6bd82015-05-27 13:23:23 -070058
cdalton4cd67132015-06-10 19:23:46 -070059 this->init(contextOptions, ctxInfo, glInterface);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000060}
61
cdalton4cd67132015-06-10 19:23:46 -070062void GrGLCaps::init(const GrContextOptions& contextOptions,
63 const GrGLContextInfo& ctxInfo,
64 const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000065 GrGLStandard standard = ctxInfo.standard();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000066 GrGLVersion version = ctxInfo.version();
67
bsalomon@google.combcce8922013-03-25 15:38:39 +000068 /**************************************************************************
69 * Caps specific to GrGLCaps
70 **************************************************************************/
71
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000072 if (kGLES_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000073 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS,
74 &fMaxFragmentUniformVectors);
75 } else {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000076 SkASSERT(kGL_GrGLStandard == standard);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000077 GrGLint max;
78 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max);
79 fMaxFragmentUniformVectors = max / 4;
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +000080 if (version >= GR_GL_VER(3, 2)) {
81 GrGLint profileMask;
82 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask);
83 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT);
84 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000085 }
bsalomon@google.com60da4172012-06-01 19:25:00 +000086 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes);
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000087
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +000088 if (kGL_GrGLStandard == standard) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000089 fUnpackRowLengthSupport = true;
90 fUnpackFlipYSupport = false;
91 fPackRowLengthSupport = true;
92 fPackFlipYSupport = false;
93 } else {
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000094 fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) ||
95 ctxInfo.hasExtension("GL_EXT_unpack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000096 fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy");
commit-bot@chromium.orgdc3134c2013-08-16 16:12:23 +000097 fPackRowLengthSupport = version >= GR_GL_VER(3,0) ||
98 ctxInfo.hasExtension("GL_NV_pack_subimage");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +000099 fPackFlipYSupport =
100 ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order");
101 }
102
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000103 fTextureUsageSupport = (kGLES_GrGLStandard == standard) &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000104 ctxInfo.hasExtension("GL_ANGLE_texture_usage");
105
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000106 if (kGL_GrGLStandard == standard) {
cdaltonfd4167d2015-04-21 11:45:56 -0700107 fTextureBarrierSupport = version >= GR_GL_VER(4,5) ||
108 ctxInfo.hasExtension("GL_ARB_texture_barrier") ||
109 ctxInfo.hasExtension("GL_NV_texture_barrier");
110 } else {
111 fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier");
112 }
113
cdaltoneb79eea2016-02-26 10:39:34 -0800114 if (kGL_GrGLStandard == standard) {
115 fSampleLocationsSupport = version >= GR_GL_VER(3,2) ||
116 ctxInfo.hasExtension("GL_ARB_texture_multisample");
117 } else {
118 fSampleLocationsSupport = version >= GR_GL_VER(3,1);
119 }
120
halcanary9d524f22016-03-29 09:03:52 -0700121 // ARB_texture_rg is part of OpenGL 3.0, but mesa doesn't support GL_RED
hendrikwa0d5ad72014-12-02 07:30:30 -0800122 // and GL_RG on FBO textures.
cdalton1acea862015-06-02 13:05:52 -0700123 if (kMesa_GrGLDriver != ctxInfo.driver()) {
hendrikwa0d5ad72014-12-02 07:30:30 -0800124 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000125 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
126 ctxInfo.hasExtension("GL_ARB_texture_rg");
hendrikwa0d5ad72014-12-02 07:30:30 -0800127 } else {
128 fTextureRedSupport = version >= GR_GL_VER(3,0) ||
129 ctxInfo.hasExtension("GL_EXT_texture_rg");
commit-bot@chromium.org459104c2013-06-14 14:42:56 +0000130 }
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000131 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000132 fImagingSupport = kGL_GrGLStandard == standard &&
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000133 ctxInfo.hasExtension("GL_ARB_imaging");
134
egdaniel9250d242015-05-18 13:04:26 -0700135 // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand.
136 // Thus we are blacklisting this extension for now on Adreno4xx devices.
137 if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
138 ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) ||
139 (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) ||
140 ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +0000141 fDiscardRenderTargetSupport = true;
142 fInvalidateFBType = kInvalidate_InvalidateFBType;
143 } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) {
144 fDiscardRenderTargetSupport = true;
145 fInvalidateFBType = kDiscard_InvalidateFBType;
146 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +0000147
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000148 if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) {
149 fFullClearIsFree = true;
150 }
151
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000152 if (kGL_GrGLStandard == standard) {
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000153 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
tomhudson612e9262014-11-24 11:22:36 -0800154 ctxInfo.hasExtension("GL_ARB_vertex_array_object") ||
155 ctxInfo.hasExtension("GL_APPLE_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000156 } else {
commit-bot@chromium.org2276c012013-08-16 15:53:33 +0000157 fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) ||
158 ctxInfo.hasExtension("GL_OES_vertex_array_object");
bsalomon@google.com07631cf2013-03-05 14:14:58 +0000159 }
160
cdalton626e1ff2015-06-12 13:56:46 -0700161 if (kGL_GrGLStandard == standard) {
162 fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access");
163 } else {
164 fDirectStateAccessSupport = false;
165 }
166
167 if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) {
168 fDebugSupport = true;
169 } else {
170 fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug");
171 }
172
jvanverth3f801cb2014-12-16 09:49:38 -0800173 if (kGL_GrGLStandard == standard) {
174 fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility");
175 }
176 else {
177 fES2CompatibilitySupport = true;
178 }
179
cdalton0edea2c2015-05-21 08:27:44 -0700180 if (kGL_GrGLStandard == standard) {
181 fMultisampleDisableSupport = true;
182 } else {
kkinnunenbf49e462015-07-30 22:43:52 -0700183 fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility");
cdalton0edea2c2015-05-21 08:27:44 -0700184 }
185
kkinnunend94708e2015-07-30 22:47:04 -0700186 if (kGL_GrGLStandard == standard) {
187 if (version >= GR_GL_VER(3, 0)) {
188 fBindFragDataLocationSupport = true;
189 }
190 } else {
191 if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) {
192 fBindFragDataLocationSupport = true;
193 }
joshualittc1f56b52015-06-22 12:31:31 -0700194 }
195
joshualitt7bdd70a2015-10-01 06:28:11 -0700196 fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
197
kkinnunene06ed252016-02-16 23:15:40 -0800198 if (kGL_GrGLStandard == standard) {
199 if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) {
200 // We also require textureSize() support for rectangle 2D samplers which was added in
201 // GLSL 1.40.
202 if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) {
203 fRectangleTextureSupport = true;
204 }
bsalomone179a912016-01-20 06:18:10 -0800205 }
kkinnunene06ed252016-02-16 23:15:40 -0800206 } else {
207 // Command buffer exposes this in GL ES context for Chromium reasons,
208 // but it should not be used. Also, at the time of writing command buffer
209 // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support.
bsalomone5286e02016-01-14 09:24:09 -0800210 }
211
bsalomoncdee0092016-01-08 13:20:12 -0800212 if (kGL_GrGLStandard == standard) {
213 if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) {
214 fTextureSwizzleSupport = true;
215 }
216 } else {
217 if (version >= GR_GL_VER(3,0)) {
218 fTextureSwizzleSupport = true;
219 }
220 }
221
cblume09bd2c02016-03-01 14:08:28 -0800222 if (kGL_GrGLStandard == standard) {
223 fMipMapLevelAndLodControlSupport = true;
224 } else if (kGLES_GrGLStandard == standard) {
225 if (version >= GR_GL_VER(3,0)) {
226 fMipMapLevelAndLodControlSupport = true;
227 }
228 }
229
bsalomon88c7b982015-07-31 11:20:16 -0700230#ifdef SK_BUILD_FOR_WIN
231 // We're assuming that on Windows Chromium we're using ANGLE.
232 bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() ||
233 kChromium_GrGLDriver == ctxInfo.driver();
halcanary9d524f22016-03-29 09:03:52 -0700234 // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA).
bsalomon88c7b982015-07-31 11:20:16 -0700235 fRGBA8888PixelsOpsAreSlow = isANGLE;
236 // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and
237 // check DX11 ANGLE.
238 fPartialFBOReadIsSlow = isANGLE;
239#endif
240
ericrkb4ecabd2016-03-11 15:18:20 -0800241 bool isMESA = kMesa_GrGLDriver == ctxInfo.driver();
242 bool isMAC = false;
243#ifdef SK_BUILD_FOR_MAC
244 isMAC = true;
245#endif
246
247 // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or
248 // vis-versa.
249 fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC;
250
cdalton4cd67132015-06-10 19:23:46 -0700251 /**************************************************************************
egdaniel05ded892015-10-26 07:38:05 -0700252 * GrShaderCaps fields
253 **************************************************************************/
254
egdaniel0a482332015-10-26 08:59:10 -0700255 // This must be called after fCoreProfile is set on the GrGLCaps
256 this->initGLSL(ctxInfo);
257 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
258
egdaniel05ded892015-10-26 07:38:05 -0700259 glslCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli);
260
261 // For now these two are equivalent but we could have dst read in shader via some other method.
262 // Before setting this, initGLSL() must have been called.
263 glslCaps->fDstReadInShaderSupport = glslCaps->fFBFetchSupport;
264
265 // Enable supported shader-related caps
266 if (kGL_GrGLStandard == standard) {
267 glslCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) ||
268 ctxInfo.hasExtension("GL_ARB_blend_func_extended")) &&
269 GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration());
270 glslCaps->fShaderDerivativeSupport = true;
271 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
272 glslCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) &&
273 ctxInfo.glslGeneration() >= k150_GrGLSLGeneration;
cdalton793dc262016-02-08 10:11:47 -0800274 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
275 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
egdaniel05ded892015-10-26 07:38:05 -0700276 }
277 else {
278 glslCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended");
279
280 glslCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) ||
281 ctxInfo.hasExtension("GL_OES_standard_derivatives");
cdalton793dc262016-02-08 10:11:47 -0800282
283 glslCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) &&
284 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
egdaniel05ded892015-10-26 07:38:05 -0700285 }
286
ethannicholas22793252016-01-30 09:59:10 -0800287 if (ctxInfo.hasExtension("GL_EXT_shader_pixel_local_storage")) {
288 #define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63
halcanary9d524f22016-03-29 09:03:52 -0700289 GR_GL_GetIntegerv(gli, GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT,
ethannicholas22793252016-01-30 09:59:10 -0800290 &glslCaps->fPixelLocalStorageSize);
291 glslCaps->fPLSPathRenderingSupport = glslCaps->fFBFetchSupport;
292 }
293 else {
294 glslCaps->fPixelLocalStorageSize = 0;
295 glslCaps->fPLSPathRenderingSupport = false;
296 }
297
cdalton9c3f1432016-03-11 10:07:37 -0800298 // Protect ourselves against tracking huge amounts of texture state.
299 static const uint8_t kMaxSaneSamplers = 32;
300 GrGLint maxSamplers;
301 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers);
302 glslCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
303 if (glslCaps->fGeometryShaderSupport) {
304 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers);
305 glslCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
306 }
307 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers);
308 glslCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
309 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers);
310 glslCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers);
311
Brian Salomonf26f7a02016-11-15 14:05:01 -0500312 if (kGL_GrGLStandard == standard) {
313 glslCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2);
314 if (!glslCaps->fImageLoadStoreSupport &&
315 ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) {
316 glslCaps->fImageLoadStoreSupport = true;
317 glslCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store";
318 }
319 } else {
320 glslCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1);
321 }
322 if (glslCaps->fImageLoadStoreSupport) {
323 // Protect ourselves against tracking huge amounts of image state.
324 static constexpr int kMaxSaneImages = 4;
325 GrGLint maxUnits;
326 GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits);
327 GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS, &glslCaps->fMaxVertexImages);
328 GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS, &glslCaps->fMaxGeometryImages);
329 GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS, &glslCaps->fMaxFragmentImages);
330 GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS, &glslCaps->fMaxCombinedImages);
331 // We use one unit for every image uniform
332 glslCaps->fMaxCombinedImages = SkTMin(SkTMin(glslCaps->fMaxCombinedImages, maxUnits),
333 kMaxSaneImages);
334 glslCaps->fMaxVertexImages = SkTMin(maxUnits, glslCaps->fMaxVertexImages);
335 glslCaps->fMaxGeometryImages = SkTMin(maxUnits, glslCaps->fMaxGeometryImages);
336 glslCaps->fMaxFragmentImages = SkTMin(maxUnits, glslCaps->fMaxFragmentImages);
337 }
338
egdaniel05ded892015-10-26 07:38:05 -0700339 /**************************************************************************
bsalomon4b91f762015-05-19 09:29:46 -0700340 * GrCaps fields
bsalomon@google.combcce8922013-03-25 15:38:39 +0000341 **************************************************************************/
cdalton4cd67132015-06-10 19:23:46 -0700342
cdalton63f6c1f2015-11-06 07:09:43 -0800343 // We need dual source blending and the ability to disable multisample in order to support mixed
344 // samples in every corner case.
egdanieleed519e2016-01-15 11:36:18 -0800345 if (fMultisampleDisableSupport &&
346 glslCaps->dualSourceBlendingSupport() &&
347 fShaderCaps->pathRenderingSupport()) {
348 fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") ||
kkinnunenea409432015-12-10 01:21:59 -0800349 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples");
cdalton63f6c1f2015-11-06 07:09:43 -0800350 // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples.
kkinnunen9f63b442016-01-25 00:31:49 -0800351 if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() ||
352 kChromium_GrGLDriver == ctxInfo.driver())) {
cdalton63f6c1f2015-11-06 07:09:43 -0800353 fDiscardRenderTargetSupport = false;
354 fInvalidateFBType = kNone_InvalidateFBType;
355 }
356 }
357
csmartdalton485a1202016-07-13 10:16:32 -0700358 // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with
359 // frequently changing VBOs. We've measured a performance increase using non-VBO vertex
360 // data for dynamic content on these GPUs. Perhaps we should read the renderer string and
361 // limit this decision to specific GPU families rather than basing it on the vendor alone.
362 if (!GR_GL_MUST_USE_VBO &&
363 !fIsCoreProfile &&
364 (kARM_GrGLVendor == ctxInfo.vendor() ||
365 kImagination_GrGLVendor == ctxInfo.vendor() ||
366 kQualcomm_GrGLVendor == ctxInfo.vendor())) {
367 fPreferClientSideDynamicBuffers = true;
368 }
369
egdanieleed519e2016-01-15 11:36:18 -0800370 // fUsesMixedSamples must be set before calling initFSAASupport.
cdalton4cd67132015-06-10 19:23:46 -0700371 this->initFSAASupport(ctxInfo, gli);
cdalton1dd05422015-06-12 09:01:18 -0700372 this->initBlendEqationSupport(ctxInfo);
cdalton4cd67132015-06-10 19:23:46 -0700373 this->initStencilFormats(ctxInfo);
374
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000375 if (kGL_GrGLStandard == standard) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000376 // we could also look for GL_ATI_separate_stencil extension or
377 // GL_EXT_stencil_two_side but they use different function signatures
378 // than GL2.0+ (and than each other).
379 fTwoSidedStencilSupport = (ctxInfo.version() >= GR_GL_VER(2,0));
380 // supported on GL 1.4 and higher or by extension
381 fStencilWrapOpsSupport = (ctxInfo.version() >= GR_GL_VER(1,4)) ||
382 ctxInfo.hasExtension("GL_EXT_stencil_wrap");
383 } else {
384 // ES 2 has two sided stencil and stencil wrap
385 fTwoSidedStencilSupport = true;
386 fStencilWrapOpsSupport = true;
387 }
388
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000389 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000390 fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO
391 // extension includes glMapBuffer.
392 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) {
393 fMapBufferFlags |= kSubset_MapFlag;
394 fMapBufferType = kMapBufferRange_MapBufferType;
395 } else {
396 fMapBufferType = kMapBuffer_MapBufferType;
397 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000398 } else {
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000399 // Unextended GLES2 doesn't have any buffer mapping.
400 fMapBufferFlags = kNone_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800401 if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) {
kkinnunen45c2c812016-02-25 02:03:43 -0800402 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
403 fMapBufferType = kChromium_MapBufferType;
kkinnunenf655e932016-03-03 07:39:48 -0800404 } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) {
405 fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag;
406 fMapBufferType = kMapBufferRange_MapBufferType;
commit-bot@chromium.org160b4782014-05-05 12:32:37 +0000407 } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) {
408 fMapBufferFlags = kCanMap_MapFlag;
409 fMapBufferType = kMapBuffer_MapBufferType;
410 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000411 }
412
jvanverthd7a2c1f2015-12-07 07:36:44 -0800413 if (kGL_GrGLStandard == standard) {
414 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) {
415 fTransferBufferType = kPBO_TransferBufferType;
halcanary9d524f22016-03-29 09:03:52 -0700416 }
jvanverthd7a2c1f2015-12-07 07:36:44 -0800417 } else {
418 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_NV_pixel_buffer_object")) {
419 fTransferBufferType = kPBO_TransferBufferType;
jvanverthc3d706f2016-04-20 10:33:27 -0700420 } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) {
421 fTransferBufferType = kChromium_TransferBufferType;
jvanverthd7a2c1f2015-12-07 07:36:44 -0800422 }
423 }
424
joshualitte5b74c62015-06-01 14:17:47 -0700425 // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the
426 // threshold to the maximum unless the client gives us a hint that map memory is cheap.
cdalton397536c2016-03-25 12:15:03 -0700427 if (fBufferMapThreshold < 0) {
bsalomonbc233752015-06-26 11:38:25 -0700428 // We think mapping on Chromium will be cheaper once we know ahead of time how much space
429 // we will use for all GrBatchs. Right now we might wind up mapping a large buffer and using
430 // a small subset.
431#if 0
cdalton397536c2016-03-25 12:15:03 -0700432 fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700433#else
cdalton397536c2016-03-25 12:15:03 -0700434 fBufferMapThreshold = SK_MaxS32;
bsalomonbc233752015-06-26 11:38:25 -0700435#endif
joshualitte5b74c62015-06-01 14:17:47 -0700436 }
437
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000438 if (kGL_GrGLStandard == standard) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000439 SkASSERT(ctxInfo.version() >= GR_GL_VER(2,0) ||
440 ctxInfo.hasExtension("GL_ARB_texture_non_power_of_two"));
441 fNPOTTextureTileSupport = true;
442 fMipMapSupport = true;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000443 } else {
444 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
commit-bot@chromium.org22dd6b92013-08-16 18:13:48 +0000445 // ES3 has no limitations.
446 fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) ||
447 ctxInfo.hasExtension("GL_OES_texture_npot");
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000448 // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP
449 // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently,
450 // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to
451 // to alllow arbitrary wrap modes, however.
452 fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000453 }
454
bsalomone72bd022015-10-26 07:33:03 -0700455 // Using MIPs on this GPU seems to be a source of trouble.
456 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) {
457 fMipMapSupport = false;
458 }
459
bsalomon@google.combcce8922013-03-25 15:38:39 +0000460 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize);
461 GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize);
462 // Our render targets are always created with textures as the color
463 // attachment, hence this min:
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000464 fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000465
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000466 fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker");
467
robertphillips@google.com8995b7b2013-11-01 15:03:34 +0000468 // Disable scratch texture reuse on Mali and Adreno devices
brianosman5702c862016-08-09 14:02:13 -0700469 fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor();
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +0000470
robertphillips1b8e1b52015-06-24 06:54:10 -0700471#if 0
472 fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() &&
473 kQualcomm_GrGLVendor != ctxInfo.vendor();
474#endif
475
egdaniel05ded892015-10-26 07:38:05 -0700476 // initFSAASupport() must have been called before this point
bsalomon@google.com347c3822013-05-01 20:10:01 +0000477 if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800478 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000479 } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) {
cdaltonaf8bc7d2016-02-05 09:35:20 -0800480 GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount);
bsalomon@google.combcce8922013-03-25 15:38:39 +0000481 }
cdaltonaf8bc7d2016-02-05 09:35:20 -0800482 // We only have a use for raster multisample if there is coverage modulation from mixed samples.
483 if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) {
484 GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples);
485 // This is to guard against platforms that may not support as many samples for
486 // glRasterSamples as they do for framebuffers.
487 fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples);
488 }
489 fMaxColorSampleCount = fMaxStencilSampleCount;
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000490
csmartdalton9bc11872016-08-09 12:42:47 -0700491 if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) {
492 GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles);
csmartdalton9bc11872016-08-09 12:42:47 -0700493 }
494
bsalomon63b21962014-11-05 07:05:34 -0800495 if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() ||
bsalomone702d972015-01-29 10:07:32 -0800496 kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() ||
bsalomona8fcea02015-02-13 09:00:39 -0800497 kAdreno3xx_GrGLRenderer == ctxInfo.renderer()) {
bsalomon63b21962014-11-05 07:05:34 -0800498 fUseDrawInsteadOfClear = true;
499 }
500
joshualitt83bc2292015-06-18 14:18:02 -0700501 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) {
502 fUseDrawInsteadOfPartialRenderTargetWrite = true;
503 }
504
bsalomonbabafcc2016-02-16 11:36:47 -0800505 // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3.
506 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
507 fUseDrawInsteadOfPartialRenderTargetWrite = true;
508 fUseDrawInsteadOfAllRenderTargetWrites = true;
509 }
510
robertphillips63926682015-08-20 09:39:02 -0700511#ifdef SK_BUILD_FOR_WIN
512 // On ANGLE deferring flushes can lead to GPU starvation
513 fPreferVRAMUseOverFlushes = !isANGLE;
514#endif
515
bsalomon7dea7b72015-08-19 08:26:51 -0700516 if (kChromium_GrGLDriver == ctxInfo.driver()) {
517 fMustClearUploadedBufferData = true;
518 }
519
bsalomond08ea5f2015-02-20 06:58:13 -0800520 if (kGL_GrGLStandard == standard) {
521 // ARB allows mixed size FBO attachments, EXT does not.
522 if (ctxInfo.version() >= GR_GL_VER(3, 0) ||
523 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
524 fOversizedStencilSupport = true;
525 } else {
526 SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object"));
527 }
528 } else {
529 // ES 3.0 supports mixed size FBO attachments, 2.0 does not.
530 fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0);
531 }
532
joshualitt58001552015-06-26 12:46:36 -0700533 if (kGL_GrGLStandard == standard) {
534 // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about
535 // instanced arrays, but we could make this more granular if we wanted
csmartdalton4c18b622016-07-29 12:19:28 -0700536 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700537 version >= GR_GL_VER(3, 2) ||
538 (ctxInfo.hasExtension("GL_ARB_draw_instanced") &&
539 ctxInfo.hasExtension("GL_ARB_instanced_arrays"));
540 } else {
csmartdalton4c18b622016-07-29 12:19:28 -0700541 fDrawInstancedSupport =
joshualitt58001552015-06-26 12:46:36 -0700542 version >= GR_GL_VER(3, 0) ||
543 (ctxInfo.hasExtension("GL_EXT_draw_instanced") &&
544 ctxInfo.hasExtension("GL_EXT_instanced_arrays"));
545 }
546
cdalton06604b92016-02-05 10:09:51 -0800547 if (kGL_GrGLStandard == standard) {
csmartdalton5cebf8c2016-06-03 08:28:47 -0700548 fDrawIndirectSupport = version >= GR_GL_VER(4,0) ||
549 ctxInfo.hasExtension("GL_ARB_draw_indirect");
550 fBaseInstanceSupport = version >= GR_GL_VER(4,2);
551 fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) ||
csmartdalton4c18b622016-07-29 12:19:28 -0700552 (fDrawIndirectSupport &&
553 !fBaseInstanceSupport && // The ARB extension has no base inst.
csmartdalton5cebf8c2016-06-03 08:28:47 -0700554 ctxInfo.hasExtension("GL_ARB_multi_draw_indirect"));
bsalomonfc9527a2016-08-29 09:18:39 -0700555 fDrawRangeElementsSupport = version >= GR_GL_VER(2,0);
cdalton06604b92016-02-05 10:09:51 -0800556 } else {
557 fDrawIndirectSupport = version >= GR_GL_VER(3,1);
csmartdalton4c18b622016-07-29 12:19:28 -0700558 fMultiDrawIndirectSupport = fDrawIndirectSupport &&
559 ctxInfo.hasExtension("GL_EXT_multi_draw_indirect");
560 fBaseInstanceSupport = fDrawIndirectSupport &&
561 ctxInfo.hasExtension("GL_EXT_base_instance");
bsalomonfc9527a2016-08-29 09:18:39 -0700562 fDrawRangeElementsSupport = version >= GR_GL_VER(3,0);
cdalton06604b92016-02-05 10:09:51 -0800563 }
564
jvanverthcba99b82015-06-24 06:59:57 -0700565 this->initShaderPrecisionTable(ctxInfo, gli, glslCaps);
bsalomoncdee0092016-01-08 13:20:12 -0800566
567 if (contextOptions.fUseShaderSwizzling) {
568 fTextureSwizzleSupport = false;
569 }
570
ethannicholas28ef4452016-03-25 09:26:03 -0700571 if (kGL_GrGLStandard == standard) {
ethannicholas6536ae52016-05-02 12:16:49 -0700572 if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) &&
573 ctxInfo.vendor() != kIntel_GrGLVendor) {
ethannicholas28ef4452016-03-25 09:26:03 -0700574 fSampleShadingSupport = true;
575 }
576 } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) {
577 fSampleShadingSupport = true;
578 }
579
jvanverth84741b32016-09-30 08:39:02 -0700580 // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync
581 if (kGL_GrGLStandard == standard) {
582 if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) {
583 fFenceSyncSupport = true;
584 }
585 } else if (version >= GR_GL_VER(3, 0)) {
586 fFenceSyncSupport = true;
587 }
588
brianosman131ff132016-06-07 14:22:44 -0700589 // We support manual mip-map generation (via iterative downsampling draw calls). This fixes
590 // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using
591 // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally,
592 // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary:
brianosman09563ce2016-06-02 08:59:34 -0700593 if (fMipMapLevelAndLodControlSupport &&
brianosman9a3fbf72016-06-09 13:11:08 -0700594 (contextOptions.fDoManualMipmapping ||
595 (kIntel_GrGLVendor == ctxInfo.vendor()) ||
brianosman131ff132016-06-07 14:22:44 -0700596 (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) ||
597 (kATI_GrGLVendor == ctxInfo.vendor()))) {
brianosman09563ce2016-06-02 08:59:34 -0700598 fDoManualMipmapping = true;
599 }
600
bsalomoncdee0092016-01-08 13:20:12 -0800601 // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have
602 // already been detected.
603 this->initConfigTable(ctxInfo, gli, glslCaps);
cdalton4cd67132015-06-10 19:23:46 -0700604
605 this->applyOptionsOverrides(contextOptions);
606 glslCaps->applyOptionsOverrides(contextOptions);
commit-bot@chromium.org73880512013-10-14 15:33:45 +0000607}
608
egdaniel472d44e2015-10-22 08:20:00 -0700609const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation,
610 bool isCoreProfile) {
611 switch (generation) {
612 case k110_GrGLSLGeneration:
613 if (kGLES_GrGLStandard == standard) {
614 // ES2s shader language is based on version 1.20 but is version
615 // 1.00 of the ES language.
616 return "#version 100\n";
617 } else {
618 SkASSERT(kGL_GrGLStandard == standard);
619 return "#version 110\n";
620 }
621 case k130_GrGLSLGeneration:
622 SkASSERT(kGL_GrGLStandard == standard);
623 return "#version 130\n";
624 case k140_GrGLSLGeneration:
625 SkASSERT(kGL_GrGLStandard == standard);
626 return "#version 140\n";
627 case k150_GrGLSLGeneration:
628 SkASSERT(kGL_GrGLStandard == standard);
629 if (isCoreProfile) {
630 return "#version 150\n";
631 } else {
632 return "#version 150 compatibility\n";
633 }
634 case k330_GrGLSLGeneration:
635 if (kGLES_GrGLStandard == standard) {
636 return "#version 300 es\n";
637 } else {
638 SkASSERT(kGL_GrGLStandard == standard);
639 if (isCoreProfile) {
640 return "#version 330\n";
641 } else {
642 return "#version 330 compatibility\n";
643 }
644 }
cdalton33ad7012016-02-22 07:55:44 -0800645 case k400_GrGLSLGeneration:
646 SkASSERT(kGL_GrGLStandard == standard);
647 if (isCoreProfile) {
648 return "#version 400\n";
649 } else {
650 return "#version 400 compatibility\n";
651 }
Brian Salomond327e8c2016-11-15 13:26:08 -0500652 case k420_GrGLSLGeneration:
653 SkASSERT(kGL_GrGLStandard == standard);
654 if (isCoreProfile) {
655 return "#version 420\n";
656 }
657 else {
658 return "#version 420 compatibility\n";
659 }
egdaniel472d44e2015-10-22 08:20:00 -0700660 case k310es_GrGLSLGeneration:
661 SkASSERT(kGLES_GrGLStandard == standard);
662 return "#version 310 es\n";
cdalton33ad7012016-02-22 07:55:44 -0800663 case k320es_GrGLSLGeneration:
664 SkASSERT(kGLES_GrGLStandard == standard);
665 return "#version 320 es\n";
egdaniel472d44e2015-10-22 08:20:00 -0700666 }
667 return "<no version>";
668}
669
egdaniel05ded892015-10-26 07:38:05 -0700670void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) {
egdaniel472d44e2015-10-22 08:20:00 -0700671 GrGLStandard standard = ctxInfo.standard();
672 GrGLVersion version = ctxInfo.version();
673
674 /**************************************************************************
675 * Caps specific to GrGLSLCaps
676 **************************************************************************/
677
678 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
679 glslCaps->fGLSLGeneration = ctxInfo.glslGeneration();
egdaniel472d44e2015-10-22 08:20:00 -0700680 if (kGLES_GrGLStandard == standard) {
681 if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) {
682 glslCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0));
683 glslCaps->fFBFetchSupport = true;
684 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
685 glslCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch";
686 }
687 else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) {
688 // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know
689 glslCaps->fFBFetchNeedsCustomOutput = false;
690 glslCaps->fFBFetchSupport = true;
691 glslCaps->fFBFetchColorName = "gl_LastFragData[0]";
692 glslCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch";
693 }
694 else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
695 // The arm extension also requires an additional flag which we will set onResetContext
696 glslCaps->fFBFetchNeedsCustomOutput = false;
697 glslCaps->fFBFetchSupport = true;
698 glslCaps->fFBFetchColorName = "gl_LastFragColorARM";
699 glslCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch";
700 }
701 glslCaps->fUsesPrecisionModifiers = true;
702 }
703
egdaniel7517e452016-09-20 13:00:26 -0700704 // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the
705 // Galaxy S7.
706 // TODO: Once this is fixed we can update the check here to look at a driver version number too.
707 if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) {
708 glslCaps->fFBFetchSupport = false;
709 }
710
egdaniel472d44e2015-10-22 08:20:00 -0700711 glslCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture");
712
cdaltonc08f1962016-02-12 12:14:06 -0800713 if (kGL_GrGLStandard == standard) {
714 glslCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
715 } else {
716 glslCaps->fFlatInterpolationSupport =
717 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0.
718 }
719
720 if (kGL_GrGLStandard == standard) {
721 glslCaps->fNoPerspectiveInterpolationSupport =
722 ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
723 } else {
724 if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) {
725 glslCaps->fNoPerspectiveInterpolationSupport = true;
726 glslCaps->fNoPerspectiveInterpolationExtensionString =
727 "GL_NV_shader_noperspective_interpolation";
728 }
729 }
730
cdalton33ad7012016-02-22 07:55:44 -0800731 if (kGL_GrGLStandard == standard) {
cdalton4a98cdb2016-03-01 12:12:20 -0800732 glslCaps->fMultisampleInterpolationSupport =
733 ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
734 } else {
735 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
736 glslCaps->fMultisampleInterpolationSupport = true;
737 } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) {
738 glslCaps->fMultisampleInterpolationSupport = true;
739 glslCaps->fMultisampleInterpolationExtensionString =
740 "GL_OES_shader_multisample_interpolation";
741 }
742 }
743
744 if (kGL_GrGLStandard == standard) {
cdalton33ad7012016-02-22 07:55:44 -0800745 glslCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration;
746 } else {
747 if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
748 glslCaps->fSampleVariablesSupport = true;
749 } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) {
750 glslCaps->fSampleVariablesSupport = true;
751 glslCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables";
752 }
753 }
754
csmartdaltonf848c9c2016-06-15 12:42:13 -0700755 if (glslCaps->fSampleVariablesSupport &&
756 ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) {
757 // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage.
cdalton33ad7012016-02-22 07:55:44 -0800758 glslCaps->fSampleMaskOverrideCoverageSupport =
csmartdaltonf848c9c2016-06-15 12:42:13 -0700759 kNVIDIA_GrGLDriver != ctxInfo.driver() ||
760 ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00);
cdalton33ad7012016-02-22 07:55:44 -0800761 }
762
egdaniel472d44e2015-10-22 08:20:00 -0700763 // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader
764 glslCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor();
765
766 // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any
767 // function that may require a gradient calculation inside a conditional block may return
768 // undefined results". This appears to be an issue with the 'any' call since even the simple
769 // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play
770 // from our GrTextureDomain processor.
771 glslCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor();
772
egdaniel472d44e2015-10-22 08:20:00 -0700773 glslCaps->fVersionDeclString = get_glsl_version_decl_string(standard, glslCaps->fGLSLGeneration,
774 fIsCoreProfile);
egdaniel574a4c12015-11-02 06:22:44 -0800775
776 if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == glslCaps->fGLSLGeneration) {
777 glslCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives";
778 }
egdaniel8dcdedc2015-11-11 06:27:20 -0800779
780 // Frag Coords Convention support is not part of ES
781 // Known issue on at least some Intel platforms:
782 // http://code.google.com/p/skia/issues/detail?id=946
783 if (kIntel_GrGLVendor != ctxInfo.vendor() &&
784 kGLES_GrGLStandard != standard &&
785 (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration ||
786 ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) {
787 glslCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions";
788 }
789
790 if (kGLES_GrGLStandard == standard) {
791 glslCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended";
792 }
793
cdalton9c3f1432016-03-11 10:07:37 -0800794 if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) {
795 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
796 glslCaps->fExternalTextureSupport = true;
797 } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") ||
798 ctxInfo.hasExtension("OES_EGL_image_external_essl3")) {
799 // At least one driver has been found that has this extension without the "GL_" prefix.
800 glslCaps->fExternalTextureSupport = true;
801 }
802 }
803
804 if (glslCaps->fExternalTextureSupport) {
bsalomon7ea33f52015-11-22 14:51:00 -0800805 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
806 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external";
807 } else {
808 glslCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3";
809 }
810 }
811
cdaltonc04ce672016-03-11 14:07:38 -0800812 if (kGL_GrGLStandard == standard) {
cdaltonf8a6ce82016-04-11 13:02:05 -0700813 glslCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration;
cdaltonc04ce672016-03-11 14:07:38 -0800814 } else {
cdaltonf8a6ce82016-04-11 13:02:05 -0700815 glslCaps->fTexelFetchSupport =
816 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0.
817 }
818
819 if (glslCaps->fTexelFetchSupport) {
820 if (kGL_GrGLStandard == standard) {
csmartdalton1897cfd2016-06-03 08:50:54 -0700821 glslCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) &&
cdaltonf8a6ce82016-04-11 13:02:05 -0700822 ctxInfo.glslGeneration() >= k330_GrGLSLGeneration;
823 } else {
824 if (ctxInfo.version() >= GR_GL_VER(3, 2) &&
825 ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) {
826 glslCaps->fTexelBufferSupport = true;
827 } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) {
828 glslCaps->fTexelBufferSupport = true;
829 glslCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer";
830 } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) {
831 glslCaps->fTexelBufferSupport = true;
832 glslCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer";
833 }
cdaltonc04ce672016-03-11 14:07:38 -0800834 }
835 }
836
egdaniel8dcdedc2015-11-11 06:27:20 -0800837 // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do
838 // the abs first in a separate expression.
839 if (kTegra3_GrGLRenderer == ctxInfo.renderer()) {
840 glslCaps->fCanUseMinAndAbsTogether = false;
841 }
842
bsalomon7ea33f52015-11-22 14:51:00 -0800843 // 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 -0800844 // thus must us -1.0 * %s.x to work correctly
845 if (kIntel_GrGLVendor == ctxInfo.vendor()) {
846 glslCaps->fMustForceNegatedAtanParamToFloat = true;
847 }
egdaniel138c2632016-08-17 10:59:00 -0700848
849 // On Adreno devices with framebuffer fetch support, there is a bug where they always return
850 // the original dst color when reading the outColor even after being written to. By using a
851 // local outColor we can work around this bug.
852 if (glslCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) {
853 glslCaps->fRequiresLocalOutputColorForFBFetch = true;
854 }
egdaniel472d44e2015-10-22 08:20:00 -0700855}
856
kkinnunencfe62e32015-07-01 02:58:50 -0700857bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
kkinnunen6bb6d402015-07-14 10:59:23 -0700858 bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering");
859
860 if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700861 return false;
862 }
kkinnunen6bb6d402015-07-14 10:59:23 -0700863
kkinnunencfe62e32015-07-01 02:58:50 -0700864 if (kGL_GrGLStandard == ctxInfo.standard()) {
865 if (ctxInfo.version() < GR_GL_VER(4, 3) &&
866 !ctxInfo.hasExtension("GL_ARB_program_interface_query")) {
867 return false;
868 }
869 } else {
kkinnunen6bb6d402015-07-14 10:59:23 -0700870 if (!hasChromiumPathRendering &&
871 ctxInfo.version() < GR_GL_VER(3, 1)) {
kkinnunencfe62e32015-07-01 02:58:50 -0700872 return false;
873 }
874 }
875 // We only support v1.3+ of GL_NV_path_rendering which allows us to
876 // set individual fragment inputs with ProgramPathFragmentInputGen. The API
877 // additions are detected by checking the existence of the function.
878 // We also use *Then* functions that not all drivers might have. Check
879 // them for consistency.
bsalomon9f2dc272016-02-08 07:22:17 -0800880 if (!gli->fFunctions.fStencilThenCoverFillPath ||
881 !gli->fFunctions.fStencilThenCoverStrokePath ||
882 !gli->fFunctions.fStencilThenCoverFillPathInstanced ||
883 !gli->fFunctions.fStencilThenCoverStrokePathInstanced ||
884 !gli->fFunctions.fProgramPathFragmentInputGen) {
kkinnunencfe62e32015-07-01 02:58:50 -0700885 return false;
886 }
887 return true;
888}
bsalomon1aa20292016-01-22 08:16:09 -0800889
Brian Salomon71d9d842016-11-03 13:42:00 -0400890bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig,
bsalomon7928ef62016-01-05 10:26:39 -0800891 GrPixelConfig readConfig,
bsalomon1aa20292016-01-22 08:16:09 -0800892 std::function<void (GrGLenum, GrGLint*)> getIntegerv,
bsalomon2c3db322016-11-08 13:26:24 -0800893 std::function<bool ()> bindRenderTarget,
894 std::function<void ()> unbindRenderTarget) const {
Brian Salomon71d9d842016-11-03 13:42:00 -0400895 // If it's not possible to even have a color attachment of surfaceConfig then read pixels is
bsalomone9573312016-01-25 14:33:25 -0800896 // not supported regardless of readConfig.
Brian Salomon71d9d842016-11-03 13:42:00 -0400897 if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) {
bsalomone9573312016-01-25 14:33:25 -0800898 return false;
899 }
bsalomon7928ef62016-01-05 10:26:39 -0800900
Brian Salomonbf7b6202016-11-11 16:08:03 -0500901 if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) {
902 return false;
903 }
904
bsalomon76148af2016-01-12 11:13:47 -0800905 GrGLenum readFormat;
906 GrGLenum readType;
Brian Salomon71d9d842016-11-03 13:42:00 -0400907 if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) {
bsalomon76148af2016-01-12 11:13:47 -0800908 return false;
909 }
910
bsalomon1aa20292016-01-22 08:16:09 -0800911 if (kGL_GrGLStandard == fStandard) {
bsalomone9573312016-01-25 14:33:25 -0800912 // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However,
913 // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed:
914 // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE,
915 // 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 -0500916 // The manual does not seem to fully match the spec as the spec allows integer formats
917 // when the bound color buffer is an integer buffer. It doesn't specify which integer
918 // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently.
bsalomone9573312016-01-25 14:33:25 -0800919 if (readFormat != GR_GL_RED && readFormat != GR_GL_RGB && readFormat != GR_GL_RGBA &&
Brian Salomonbf7b6202016-11-11 16:08:03 -0500920 readFormat != GR_GL_BGRA && readFormat != GR_GL_RGBA_INTEGER) {
bsalomone9573312016-01-25 14:33:25 -0800921 return false;
922 }
923 // There is also a set of allowed types, but all the types we use are in the set:
924 // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT,
925 // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV,
926 // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4,
927 // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV,
928 // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2,
929 // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV,
930 // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV.
bsalomon7928ef62016-01-05 10:26:39 -0800931 return true;
piotaixre4b23142014-10-02 10:57:53 -0700932 }
bsalomon7928ef62016-01-05 10:26:39 -0800933
bsalomon76148af2016-01-12 11:13:47 -0800934 // See Section 16.1.2 in the ES 3.2 specification.
Brian Salomonbf7b6202016-11-11 16:08:03 -0500935 switch (fConfigTable[surfaceConfig].fFormatType) {
936 case kNormalizedFixedPoint_FormatType:
937 if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) {
938 return true;
939 }
940 break;
941 case kInteger_FormatType:
942 if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) {
943 return true;
944 }
945 break;
946 case kFloat_FormatType:
947 if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) {
948 return true;
949 }
950 break;
bsalomon7928ef62016-01-05 10:26:39 -0800951 }
952
Brian Salomon71d9d842016-11-03 13:42:00 -0400953 if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) {
bsalomon7928ef62016-01-05 10:26:39 -0800954 ReadPixelsFormat* rpFormat =
Brian Salomon71d9d842016-11-03 13:42:00 -0400955 const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat);
bsalomon7928ef62016-01-05 10:26:39 -0800956 GrGLint format = 0, type = 0;
bsalomon1aa20292016-01-22 08:16:09 -0800957 if (!bindRenderTarget()) {
958 return false;
959 }
960 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format);
961 getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type);
bsalomon7928ef62016-01-05 10:26:39 -0800962 rpFormat->fFormat = format;
963 rpFormat->fType = type;
bsalomon2c3db322016-11-08 13:26:24 -0800964 unbindRenderTarget();
bsalomon7928ef62016-01-05 10:26:39 -0800965 }
966
Brian Salomon71d9d842016-11-03 13:42:00 -0400967 return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat &&
968 fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType;
piotaixre4b23142014-10-02 10:57:53 -0700969}
970
robertphillips@google.com6177e692013-02-28 20:16:25 +0000971void GrGLCaps::initFSAASupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) {
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000972 if (kGL_GrGLStandard != ctxInfo.standard()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000973 // We prefer the EXT/IMG extension over ES3 MSAA because we've observed
974 // ES3 driver bugs on at least one device with a tiled GPU (N10).
975 if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) {
976 fMSFBOType = kES_EXT_MsToTexture_MSFBOType;
977 } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) {
978 fMSFBOType = kES_IMG_MsToTexture_MSFBOType;
egdanieleed519e2016-01-15 11:36:18 -0800979 } else if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -0700980 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomon00731b42016-10-14 11:30:51 -0400981 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
Brian Salomonc5eceb02016-10-18 10:21:43 -0400982 ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
983 ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) {
Brian Salomon00731b42016-10-14 11:30:51 -0400984 fMSFBOType = kStandard_MSFBOType;
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +0000985 } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) {
986 fMSFBOType = kES_Apple_MSFBOType;
987 }
bsalomon083617b2016-02-12 12:10:14 -0800988
989 // Above determined the preferred MSAA approach, now decide whether glBlitFramebuffer
990 // is available.
991 if (ctxInfo.version() >= GR_GL_VER(3, 0)) {
Brian Salomone5e7eb12016-10-14 16:18:33 -0400992 fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag |
993 kRectsMustMatchForMSAASrc_BlitFramebufferFlag;
Brian Salomonc5eceb02016-10-18 10:21:43 -0400994 } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") ||
995 ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) {
bsalomon083617b2016-02-12 12:10:14 -0800996 // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its
997 // limitations.
Brian Salomone5e7eb12016-10-14 16:18:33 -0400998 fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag |
999 kResolveMustBeFull_BlitFrambufferFlag |
1000 kNoMSAADst_BlitFramebufferFlag |
1001 kNoFormatConversion_BlitFramebufferFlag;
bsalomon083617b2016-02-12 12:10:14 -08001002 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001003 } else {
egdanieleed519e2016-01-15 11:36:18 -08001004 if (fUsesMixedSamples) {
vbuzinovdded6962015-06-12 08:59:45 -07001005 fMSFBOType = kMixedSamples_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001006 fBlitFramebufferFlags = 0;
Brian Salomon00731b42016-10-14 11:30:51 -04001007 } else if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1008 ctxInfo.hasExtension("GL_ARB_framebuffer_object")) {
1009 fMSFBOType = kStandard_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001010 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001011 } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") &&
1012 ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) {
Brian Salomon00731b42016-10-14 11:30:51 -04001013 fMSFBOType = kEXT_MSFBOType;
Brian Salomone5e7eb12016-10-14 16:18:33 -04001014 fBlitFramebufferFlags = 0;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001015 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001016 }
1017}
1018
cdalton1dd05422015-06-12 09:01:18 -07001019void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) {
1020 GrGLSLCaps* glslCaps = static_cast<GrGLSLCaps*>(fShaderCaps.get());
1021
1022 // Disabling advanced blend on various platforms with major known issues. We also block Chrome
1023 // for now until its own blacklists can be updated.
1024 if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() ||
Greg Daniel0ea7d432016-10-27 16:55:52 -04001025 kAdreno5xx_GrGLRenderer == ctxInfo.renderer() ||
cdalton1dd05422015-06-12 09:01:18 -07001026 kIntel_GrGLDriver == ctxInfo.driver() ||
joel.liang9764c402015-07-09 19:46:18 -07001027 kChromium_GrGLDriver == ctxInfo.driver()) {
cdalton1dd05422015-06-12 09:01:18 -07001028 return;
1029 }
1030
1031 if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) {
1032 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
1033 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
1034 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) {
1035 fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport;
1036 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
1037 } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1038 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) {
1039 // Non-coherent advanced blend has an issue on NVIDIA pre 337.00.
1040 return;
1041 } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) {
1042 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
1043 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kAutomatic_AdvBlendEqInteraction;
1044 } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) {
1045 fBlendEquationSupport = kAdvanced_BlendEquationSupport;
1046 glslCaps->fAdvBlendEqInteraction = GrGLSLCaps::kGeneralEnable_AdvBlendEqInteraction;
1047 // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is
1048 // slow on a particular platform.
1049 } else {
1050 return; // No advanced blend support.
1051 }
1052
1053 SkASSERT(this->advancedBlendEquationSupport());
1054
csmartdalton3b88a032016-08-04 14:43:49 -07001055 if (kNVIDIA_GrGLDriver == ctxInfo.driver() &&
1056 ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) {
1057 // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA.
cdalton1dd05422015-06-12 09:01:18 -07001058 fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) |
1059 (1 << kColorBurn_GrBlendEquation);
1060 }
joel.liang9764c402015-07-09 19:46:18 -07001061 if (kARM_GrGLVendor == ctxInfo.vendor()) {
1062 // Blacklist color-burn on ARM until the fix is released.
1063 fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation);
1064 }
cdalton1dd05422015-06-12 09:01:18 -07001065}
1066
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001067namespace {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001068const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001069}
1070
1071void GrGLCaps::initStencilFormats(const GrGLContextInfo& ctxInfo) {
1072
1073 // Build up list of legal stencil formats (though perhaps not supported on
1074 // the particular gpu/driver) from most preferred to least.
1075
1076 // these consts are in order of most preferred to least preferred
1077 // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8
1078
1079 static const StencilFormat
1080 // internal Format stencil bits total bits packed?
1081 gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false},
1082 gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false},
1083 gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true },
1084 gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false},
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001085 // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false},
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001086 gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true };
1087
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00001088 if (kGL_GrGLStandard == ctxInfo.standard()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001089 bool supportsPackedDS =
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001090 ctxInfo.version() >= GR_GL_VER(3,0) ||
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001091 ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") ||
1092 ctxInfo.hasExtension("GL_ARB_framebuffer_object");
1093
1094 // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we
1095 // require FBO support we can expect these are legal formats and don't
1096 // check. These also all support the unsized GL_STENCIL_INDEX.
1097 fStencilFormats.push_back() = gS8;
1098 fStencilFormats.push_back() = gS16;
1099 if (supportsPackedDS) {
1100 fStencilFormats.push_back() = gD24S8;
1101 }
1102 fStencilFormats.push_back() = gS4;
1103 if (supportsPackedDS) {
1104 fStencilFormats.push_back() = gDS;
1105 }
1106 } else {
1107 // ES2 has STENCIL_INDEX8 without extensions but requires extensions
1108 // for other formats.
1109 // ES doesn't support using the unsized format.
1110
1111 fStencilFormats.push_back() = gS8;
1112 //fStencilFormats.push_back() = gS16;
commit-bot@chromium.org04c500f2013-09-06 15:28:01 +00001113 if (ctxInfo.version() >= GR_GL_VER(3,0) ||
1114 ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001115 fStencilFormats.push_back() = gD24S8;
1116 }
1117 if (ctxInfo.hasExtension("GL_OES_stencil4")) {
1118 fStencilFormats.push_back() = gS4;
1119 }
1120 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001121}
1122
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001123SkString GrGLCaps::dump() const {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001124
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001125 SkString r = INHERITED::dump();
bsalomon@google.combcce8922013-03-25 15:38:39 +00001126
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001127 r.appendf("--- GL-Specific ---\n");
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001128 for (int i = 0; i < fStencilFormats.count(); ++i) {
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001129 r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001130 i,
1131 fStencilFormats[i].fStencilBits,
1132 fStencilFormats[i].fTotalBits);
1133 }
1134
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001135 static const char* kMSFBOExtStr[] = {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001136 "None",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001137 "EXT",
Brian Salomon00731b42016-10-14 11:30:51 -04001138 "Standard",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001139 "Apple",
bsalomon@google.com347c3822013-05-01 20:10:01 +00001140 "IMG MS To Texture",
1141 "EXT MS To Texture",
vbuzinovdded6962015-06-12 08:59:45 -07001142 "MixedSamples",
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001143 };
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001144 GR_STATIC_ASSERT(0 == kNone_MSFBOType);
Brian Salomon00731b42016-10-14 11:30:51 -04001145 GR_STATIC_ASSERT(1 == kEXT_MSFBOType);
1146 GR_STATIC_ASSERT(2 == kStandard_MSFBOType);
1147 GR_STATIC_ASSERT(3 == kES_Apple_MSFBOType);
1148 GR_STATIC_ASSERT(4 == kES_IMG_MsToTexture_MSFBOType);
1149 GR_STATIC_ASSERT(5 == kES_EXT_MsToTexture_MSFBOType);
1150 GR_STATIC_ASSERT(6 == kMixedSamples_MSFBOType);
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001151 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001152
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001153 static const char* kInvalidateFBTypeStr[] = {
1154 "None",
1155 "Discard",
1156 "Invalidate",
1157 };
1158 GR_STATIC_ASSERT(0 == kNone_InvalidateFBType);
1159 GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType);
1160 GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType);
1161 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1);
bsalomon@google.com6b0cf022013-05-03 13:35:14 +00001162
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001163 static const char* kMapBufferTypeStr[] = {
1164 "None",
1165 "MapBuffer",
1166 "MapBufferRange",
1167 "Chromium",
1168 };
1169 GR_STATIC_ASSERT(0 == kNone_MapBufferType);
1170 GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType);
1171 GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType);
1172 GR_STATIC_ASSERT(3 == kChromium_MapBufferType);
1173 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1);
1174
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001175 r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001176 r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001177 r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]);
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001178 r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001179 r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors);
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001180 r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO"));
1181 r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO"));
1182 r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO"));
1183 r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO"));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001184
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001185 r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001186 r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO"));
1187 r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO"));
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001188 r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO"));
cdalton626e1ff2015-06-12 13:56:46 -07001189 r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO"));
1190 r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO"));
csmartdalton4c18b622016-07-29 12:19:28 -07001191 r.appendf("Draw instanced support: %s\n", (fDrawInstancedSupport ? "YES" : "NO"));
cdalton06604b92016-02-05 10:09:51 -08001192 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO"));
1193 r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO"));
1194 r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO"));
robertphillips63926682015-08-20 09:39:02 -07001195 r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO"));
1196 r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO"));
joshualitt7bdd70a2015-10-01 06:28:11 -07001197 r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO"));
bsalomone5286e02016-01-14 09:24:09 -08001198 r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO"));
bsalomoncdee0092016-01-08 13:20:12 -08001199 r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO"));
halcanary9d524f22016-03-29 09:03:52 -07001200 r.appendf("BGRA to RGBA readback conversions are slow: %s\n",
ericrkb4ecabd2016-03-11 15:18:20 -08001201 (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO"));
bsalomon41e4384e2016-01-08 09:12:44 -08001202
1203 r.append("Configs\n-------\n");
1204 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
1205 r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: "
bsalomon76148af2016-01-12 11:13:47 -08001206 "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, "
1207 "i_for_renderbuffer: 0x%08x\n",
bsalomon41e4384e2016-01-08 09:12:44 -08001208 i,
1209 fConfigTable[i].fFlags,
1210 fConfigTable[i].fFormats.fBaseInternalFormat,
1211 fConfigTable[i].fFormats.fSizedInternalFormat,
bsalomon76148af2016-01-12 11:13:47 -08001212 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage],
1213 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage],
bsalomon41e4384e2016-01-08 09:12:44 -08001214 fConfigTable[i].fFormats.fExternalType,
1215 fConfigTable[i].fFormats.fInternalFormatTexImage,
bsalomon76148af2016-01-12 11:13:47 -08001216 fConfigTable[i].fFormats.fInternalFormatRenderbuffer);
bsalomon41e4384e2016-01-08 09:12:44 -08001217 }
1218
jvanverthe9c0fc62015-04-29 11:18:05 -07001219 return r;
1220}
1221
jvanverthe9c0fc62015-04-29 11:18:05 -07001222static GrGLenum precision_to_gl_float_type(GrSLPrecision p) {
1223 switch (p) {
1224 case kLow_GrSLPrecision:
1225 return GR_GL_LOW_FLOAT;
1226 case kMedium_GrSLPrecision:
1227 return GR_GL_MEDIUM_FLOAT;
1228 case kHigh_GrSLPrecision:
1229 return GR_GL_HIGH_FLOAT;
1230 }
1231 SkFAIL("Unknown precision.");
1232 return -1;
1233}
1234
1235static GrGLenum shader_type_to_gl_shader(GrShaderType type) {
1236 switch (type) {
1237 case kVertex_GrShaderType:
1238 return GR_GL_VERTEX_SHADER;
1239 case kGeometry_GrShaderType:
1240 return GR_GL_GEOMETRY_SHADER;
1241 case kFragment_GrShaderType:
1242 return GR_GL_FRAGMENT_SHADER;
1243 }
1244 SkFAIL("Unknown shader type.");
1245 return -1;
1246}
1247
jvanverthcba99b82015-06-24 06:59:57 -07001248void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo,
halcanary9d524f22016-03-29 09:03:52 -07001249 const GrGLInterface* intf,
jvanverthcba99b82015-06-24 06:59:57 -07001250 GrGLSLCaps* glslCaps) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001251 if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) ||
1252 ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
1253 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1254 if (kGeometry_GrShaderType != s) {
1255 GrShaderType shaderType = static_cast<GrShaderType>(s);
1256 GrGLenum glShader = shader_type_to_gl_shader(shaderType);
halcanary96fcdcc2015-08-27 07:41:13 -07001257 GrShaderCaps::PrecisionInfo* first = nullptr;
jvanverthcba99b82015-06-24 06:59:57 -07001258 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001259 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
1260 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
1261 GrGLenum glPrecision = precision_to_gl_float_type(precision);
1262 GrGLint range[2];
1263 GrGLint bits;
1264 GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits);
1265 if (bits) {
jvanverthcba99b82015-06-24 06:59:57 -07001266 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0];
1267 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1];
1268 glslCaps->fFloatPrecisions[s][p].fBits = bits;
jvanverthe9c0fc62015-04-29 11:18:05 -07001269 if (!first) {
jvanverthcba99b82015-06-24 06:59:57 -07001270 first = &glslCaps->fFloatPrecisions[s][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001271 }
jvanverthcba99b82015-06-24 06:59:57 -07001272 else if (!glslCaps->fShaderPrecisionVaries) {
halcanary9d524f22016-03-29 09:03:52 -07001273 glslCaps->fShaderPrecisionVaries =
jvanverthcba99b82015-06-24 06:59:57 -07001274 (*first != glslCaps->fFloatPrecisions[s][p]);
jvanverthe9c0fc62015-04-29 11:18:05 -07001275 }
1276 }
1277 }
1278 }
1279 }
1280 }
1281 else {
1282 // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float.
jvanverthcba99b82015-06-24 06:59:57 -07001283 glslCaps->fShaderPrecisionVaries = false;
jvanverthe9c0fc62015-04-29 11:18:05 -07001284 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1285 if (kGeometry_GrShaderType != s) {
1286 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
jvanverthcba99b82015-06-24 06:59:57 -07001287 glslCaps->fFloatPrecisions[s][p].fLogRangeLow = 127;
1288 glslCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127;
1289 glslCaps->fFloatPrecisions[s][p].fBits = 23;
jvanverthe9c0fc62015-04-29 11:18:05 -07001290 }
1291 }
1292 }
1293 }
1294 // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're
1295 // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for
1296 // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that
1297 // are recommended against.
jvanverthcba99b82015-06-24 06:59:57 -07001298 if (glslCaps->fGeometryShaderSupport) {
jvanverthe9c0fc62015-04-29 11:18:05 -07001299 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
halcanary9d524f22016-03-29 09:03:52 -07001300 glslCaps->fFloatPrecisions[kGeometry_GrShaderType][p] =
jvanverthcba99b82015-06-24 06:59:57 -07001301 glslCaps->fFloatPrecisions[kVertex_GrShaderType][p];
jvanverthe9c0fc62015-04-29 11:18:05 -07001302 }
1303 }
cdaltona6b92ad2016-04-11 12:03:08 -07001304 glslCaps->initSamplerPrecisionTable();
jvanverthe9c0fc62015-04-29 11:18:05 -07001305}
1306
bsalomon41e4384e2016-01-08 09:12:44 -08001307bool GrGLCaps::bgraIsInternalFormat() const {
1308 return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA;
1309}
1310
bsalomon76148af2016-01-12 11:13:47 -08001311bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1312 GrGLenum* internalFormat, GrGLenum* externalFormat,
1313 GrGLenum* externalType) const {
1314 if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage,
1315 externalFormat, externalType)) {
1316 return false;
1317 }
1318 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1319 return true;
1320}
1321
1322bool GrGLCaps::getCompressedTexImageFormats(GrPixelConfig surfaceConfig,
1323 GrGLenum* internalFormat) const {
1324 if (!GrPixelConfigIsCompressed(surfaceConfig)) {
1325 return false;
1326 }
1327 *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage;
1328 return true;
1329}
1330
1331bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig,
1332 GrGLenum* externalFormat, GrGLenum* externalType) const {
1333 if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage,
1334 externalFormat, externalType)) {
1335 return false;
1336 }
1337 return true;
1338}
1339
1340bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const {
1341 if (GrPixelConfigIsCompressed(config)) {
1342 return false;
1343 }
1344 *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer;
1345 return true;
1346}
1347
1348bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig,
1349 ExternalFormatUsage usage, GrGLenum* externalFormat,
1350 GrGLenum* externalType) const {
1351 SkASSERT(externalFormat && externalType);
sylvestre.ledruf0cbfb32016-09-01 08:17:02 -07001352 if (GrPixelConfigIsCompressed(memoryConfig)) {
bsalomon76148af2016-01-12 11:13:47 -08001353 return false;
1354 }
1355
1356 bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig);
1357 bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig);
1358
1359 // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be
1360 // made to work in many cases using glPixelStore and what not but is not needed currently.
1361 if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) {
1362 return false;
1363 }
1364
1365 *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage];
1366 *externalType = fConfigTable[memoryConfig].fFormats.fExternalType;
1367
bsalomone9573312016-01-25 14:33:25 -08001368 // When GL_RED is supported as a texture format, our alpha-only textures are stored using
1369 // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the
1370 // surface is not alpha-only and we want alpha to really mean the alpha component of the
1371 // texture, not the red component.
1372 if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) {
1373 if (this->textureRedSupport()) {
1374 SkASSERT(GR_GL_RED == *externalFormat);
1375 *externalFormat = GR_GL_ALPHA;
1376 }
1377 }
1378
bsalomon76148af2016-01-12 11:13:47 -08001379 return true;
1380}
1381
bsalomoncdee0092016-01-08 13:20:12 -08001382void GrGLCaps::initConfigTable(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli,
1383 GrGLSLCaps* glslCaps) {
bsalomon41e4384e2016-01-08 09:12:44 -08001384 /*
1385 Comments on renderability of configs on various GL versions.
1386 OpenGL < 3.0:
1387 no built in support for render targets.
1388 GL_EXT_framebuffer_object adds possible support for any sized format with base internal
1389 format RGB, RGBA and NV float formats we don't use.
1390 This is the following:
1391 R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8
1392 RGB10_A2, RGBA12,RGBA16
1393 Though, it is hard to believe the more obscure formats such as RGBA12 would work
1394 since they aren't required by later standards and the driver can simply return
1395 FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow.
1396 GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally
1397 any sized internal format with a base internal format of ALPHA, LUMINANCE,
1398 LUMINANCE_ALPHA, INTENSITY, RED, and RG.
1399 This adds a lot of additional renderable sized formats, including ALPHA8.
1400 The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI,
1401 16F, 32I, 32UI, and 32F variants).
1402 Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED.
1403
1404 For both the above extensions we limit ourselves to those that are also required by
1405 OpenGL 3.0.
1406
1407 OpenGL 3.0:
1408 Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable"
1409 but are not required to be supported as renderable textures/renderbuffer.
1410 Required renderable color formats:
1411 - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I,
1412 RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and
1413 RGB10_A2.
1414 - R11F_G11F_B10F.
1415 - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I,
1416 and RG8UI.
1417 - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI.
1418 - ALPHA8
1419
1420 OpenGL 3.1, 3.2, 3.3
1421 Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile.
1422 OpengGL 3.3, 4.0, 4.1
1423 Adds RGB10_A2UI.
1424 OpengGL 4.2
1425 Adds
1426 - RGB5_A1, RGBA4
1427 - RGB565
1428 OpenGL 4.4
1429 Does away with the separate list and adds a column to the sized internal color format
1430 table. However, no new formats become required color renderable.
1431
1432 ES 2.0
1433 color renderable: RGBA4, RGB5_A1, RGB565
1434 GL_EXT_texture_rg adds support for R8, RG5 as a color render target
1435 GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8
1436 GL_ARM_rgba8 adds support for RGBA8 (but not RGB8)
1437 GL_EXT_texture_format_BGRA8888 does not add renderbuffer support
1438 GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable
1439 GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support
1440
1441 ES 3.0
1442 - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I,
1443 RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and
1444 RGB5_A1.
1445 - RGB8 and RGB565.
1446 - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI.
1447 - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI
1448 ES 3.1
1449 Adds RGB10_A2, RGB10_A2UI,
1450 ES 3.2
1451 Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F.
1452 */
Brian Salomon71d9d842016-11-03 13:42:00 -04001453 uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag |
1454 ConfigInfo::kFBOColorAttachment_Flag;
1455 uint32_t allRenderFlags = nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001456 if (kNone_MSFBOType != fMSFBOType) {
1457 allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag;
1458 }
bsalomon41e4384e2016-01-08 09:12:44 -08001459 GrGLStandard standard = ctxInfo.standard();
1460 GrGLVersion version = ctxInfo.version();
1461
cblume790d5132016-02-29 11:13:29 -08001462 bool texStorageSupported = false;
1463 if (kGL_GrGLStandard == standard) {
1464 // The EXT version can apply to either GL or GLES.
1465 texStorageSupported = version >= GR_GL_VER(4,2) ||
1466 ctxInfo.hasExtension("GL_ARB_texture_storage") ||
1467 ctxInfo.hasExtension("GL_EXT_texture_storage");
1468 } else {
1469 // Qualcomm Adreno drivers appear to have issues with texture storage.
1470 texStorageSupported = (version >= GR_GL_VER(3,0) &&
1471 kQualcomm_GrGLVendor != ctxInfo.vendor()) &&
1472 ctxInfo.hasExtension("GL_EXT_texture_storage");
1473 }
1474
1475 // TODO: remove after command buffer supports full ES 3.0
1476 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) &&
1477 kChromium_GrGLDriver == ctxInfo.driver()) {
1478 texStorageSupported = false;
1479 }
1480
cdalton74b8d322016-04-11 14:47:28 -07001481 bool texelBufferSupport = this->shaderCaps()->texelBufferSupport();
1482
bsalomon30447372015-12-21 09:03:05 -08001483 fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0;
1484 fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0;
bsalomon76148af2016-01-12 11:13:47 -08001485 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001486 fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001487 fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001488 fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001489
1490 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1491 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001492 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1493 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001494 fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001495 fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001496 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1497 if (kGL_GrGLStandard == standard) {
1498 // We require some form of FBO support and all GLs with FBO support can render to RGBA8
1499 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
egdaniel4999df82016-01-07 17:06:04 -08001500 } else {
bsalomon41e4384e2016-01-08 09:12:44 -08001501 if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") ||
1502 ctxInfo.hasExtension("GL_ARM_rgba8")) {
1503 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags;
1504 }
egdaniel4999df82016-01-07 17:06:04 -08001505 }
cblume790d5132016-02-29 11:13:29 -08001506 if (texStorageSupported) {
1507 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1508 }
cdalton74b8d322016-04-11 14:47:28 -07001509 if (texelBufferSupport) {
1510 fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1511 }
bsalomoncdee0092016-01-08 13:20:12 -08001512 fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001513
bsalomon76148af2016-01-12 11:13:47 -08001514 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1515 GR_GL_BGRA;
bsalomon30447372015-12-21 09:03:05 -08001516 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001517 fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001518 if (kGL_GrGLStandard == standard) {
1519 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1520 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1521 if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) {
1522 // Since the internal format is RGBA8, it is also renderable.
1523 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1524 allRenderFlags;
1525 }
1526 } else {
1527 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA;
1528 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8;
1529 if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) {
1530 // The APPLE extension doesn't make this renderable.
1531 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1532 if (version < GR_GL_VER(3,0) && !ctxInfo.hasExtension("GL_EXT_texture_storage")) {
1533 // On ES2 the internal format of a BGRA texture is RGBA with the APPLE extension.
1534 // Though, that seems to not be the case if the texture storage extension is
1535 // present. The specs don't exactly make that clear.
1536 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1537 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8;
1538 }
1539 } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) {
1540 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
Brian Salomon71d9d842016-11-03 13:42:00 -04001541 nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001542 if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") &&
kkinnunen9f63b442016-01-25 00:31:49 -08001543 (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001544 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |=
1545 ConfigInfo::kRenderableWithMSAA_Flag;
1546 }
1547 }
1548 }
cblume790d5132016-02-29 11:13:29 -08001549 if (texStorageSupported) {
1550 fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1551 }
bsalomoncdee0092016-01-08 13:20:12 -08001552 fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001553
brianosmana6359362016-03-21 06:55:37 -07001554 // We only enable srgb support if both textures and FBOs support srgb,
brianosman35b784d2016-05-05 11:52:53 -07001555 // *and* we can disable sRGB decode-on-read, to support "legacy" mode.
bsalomon41e4384e2016-01-08 09:12:44 -08001556 if (kGL_GrGLStandard == standard) {
1557 if (ctxInfo.version() >= GR_GL_VER(3,0)) {
brianosmana6359362016-03-21 06:55:37 -07001558 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001559 } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) {
1560 if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") ||
1561 ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) {
brianosmana6359362016-03-21 06:55:37 -07001562 fSRGBSupport = true;
bsalomon41e4384e2016-01-08 09:12:44 -08001563 }
1564 }
1565 // All the above srgb extensions support toggling srgb writes
bsalomon44d427e2016-05-10 09:05:06 -07001566 if (fSRGBSupport) {
1567 fSRGBWriteControl = true;
1568 }
bsalomon41e4384e2016-01-08 09:12:44 -08001569 } else {
1570 // See https://bug.skia.org/4148 for PowerVR issue.
brianosmana6359362016-03-21 06:55:37 -07001571 fSRGBSupport = kPowerVRRogue_GrGLRenderer != ctxInfo.renderer() &&
bsalomon41e4384e2016-01-08 09:12:44 -08001572 (ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB"));
1573 // ES through 3.1 requires EXT_srgb_write_control to support toggling
1574 // sRGB writing for destinations.
brianosmanc9986b62016-05-23 06:23:27 -07001575 // See https://bug.skia.org/5329 for Adreno4xx issue.
1576 fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() &&
1577 ctxInfo.hasExtension("GL_EXT_sRGB_write_control");
bsalomon41e4384e2016-01-08 09:12:44 -08001578 }
brianosmana6359362016-03-21 06:55:37 -07001579 if (!ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode")) {
1580 // To support "legacy" L32 mode, we require the ability to turn off sRGB decode:
1581 fSRGBSupport = false;
1582 }
bsalomon30447372015-12-21 09:03:05 -08001583 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1584 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1585 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1586 // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image.
bsalomon76148af2016-01-12 11:13:47 -08001587 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1588 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001589 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001590 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
brianosmana6359362016-03-21 06:55:37 -07001591 if (fSRGBSupport) {
bsalomon41e4384e2016-01-08 09:12:44 -08001592 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1593 allRenderFlags;
1594 }
cblume790d5132016-02-29 11:13:29 -08001595 if (texStorageSupported) {
1596 fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1597 }
bsalomoncdee0092016-01-08 13:20:12 -08001598 fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001599
brianosmana6359362016-03-21 06:55:37 -07001600 // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where
1601 // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows
1602 // is in this format, for example).
1603 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA;
1604 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8;
1605 // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the
1606 // external format is GL_BGRA.
1607 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1608 GR_GL_BGRA;
1609 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
1610 fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
1611 if (fSRGBSupport) {
1612 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1613 allRenderFlags;
1614 }
1615 if (texStorageSupported) {
1616 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1617 }
1618 fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
1619
Brian Salomonbf7b6202016-11-11 16:08:03 -05001620 bool hasIntegerTextures;
1621 if (standard == kGL_GrGLStandard) {
1622 hasIntegerTextures = version >= GR_GL_VER(3, 0) ||
1623 ctxInfo.hasExtension("GL_EXT_texture_integer");
1624 } else {
1625 hasIntegerTextures = (version >= GR_GL_VER(3, 0));
1626 }
1627 // We may have limited GLSL to an earlier version that doesn't have integer sampler types.
1628 if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) {
1629 hasIntegerTextures = false;
1630 }
1631 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER;
1632 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I;
1633 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER;
1634 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE;
1635 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType;
1636 // We currently only support using integer textures as srcs, not for rendering (even though GL
1637 // allows it).
1638 if (hasIntegerTextures) {
1639 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag |
1640 ConfigInfo::kFBOColorAttachment_Flag;
1641 if (texStorageSupported) {
1642 fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |=
1643 ConfigInfo::kCanUseTexStorage_Flag;
1644 }
1645 }
1646
bsalomon30447372015-12-21 09:03:05 -08001647 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB;
1648 if (this->ES2CompatibilitySupport()) {
1649 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565;
1650 } else {
1651 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5;
1652 }
bsalomon76148af2016-01-12 11:13:47 -08001653 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1654 GR_GL_RGB;
bsalomon30447372015-12-21 09:03:05 -08001655 fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5;
bsalomon7928ef62016-01-05 10:26:39 -08001656 fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001657 fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1658 if (kGL_GrGLStandard == standard) {
elementala6759102016-11-18 23:11:29 +01001659 if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) {
bsalomon41e4384e2016-01-08 09:12:44 -08001660 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1661 }
1662 } else {
1663 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags;
1664 }
cblume790d5132016-02-29 11:13:29 -08001665 // 565 is not a sized internal format on desktop GL. So on desktop with
1666 // 565 we always use an unsized internal format to let the system pick
1667 // the best sized format to convert the 565 data to. Since TexStorage
1668 // only allows sized internal formats we disallow it.
1669 //
1670 // TODO: As of 4.2, regular GL supports 565. This logic is due for an
1671 // update.
1672 if (texStorageSupported && kGL_GrGLStandard != standard) {
1673 fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1674 }
bsalomoncdee0092016-01-08 13:20:12 -08001675 fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001676
1677 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1678 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4;
bsalomon76148af2016-01-12 11:13:47 -08001679 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1680 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001681 fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
bsalomon7928ef62016-01-05 10:26:39 -08001682 fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001683 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1684 if (kGL_GrGLStandard == standard) {
1685 if (version >= GR_GL_VER(4, 2)) {
1686 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1687 }
1688 } else {
1689 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags;
1690 }
cblume790d5132016-02-29 11:13:29 -08001691 if (texStorageSupported) {
1692 fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1693 }
bsalomoncdee0092016-01-08 13:20:12 -08001694 fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001695
1696 if (this->textureRedSupport()) {
1697 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1698 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8;
bsalomon76148af2016-01-12 11:13:47 -08001699 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1700 GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001701 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001702 if (texelBufferSupport) {
1703 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1704 }
bsalomon30447372015-12-21 09:03:05 -08001705 } else {
1706 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1707 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8;
bsalomon76148af2016-01-12 11:13:47 -08001708 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1709 GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001710 fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001711 }
1712 fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE;
bsalomon7928ef62016-01-05 10:26:39 -08001713 fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001714 fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
bsalomon40170072016-05-05 14:40:03 -07001715 if (this->textureRedSupport() ||
Brian Salomon00731b42016-10-14 11:30:51 -04001716 (kStandard_MSFBOType == this->msFBOType() && ctxInfo.renderer() != kOSMesa_GrGLRenderer)) {
1717 // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable.
bsalomon40170072016-05-05 14:40:03 -07001718 // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present.
bsalomon41e4384e2016-01-08 09:12:44 -08001719 // Core profile removes ALPHA8 support, but we should have chosen R8 in that case.
1720 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags;
1721 }
cblume790d5132016-02-29 11:13:29 -08001722 if (texStorageSupported) {
1723 fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1724 }
bsalomon41e4384e2016-01-08 09:12:44 -08001725
1726 // Check for [half] floating point texture support
1727 // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not
1728 // supported. This is for simplicity, but a more granular approach is possible. Coincidentally,
1729 // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0.
1730 bool hasFPTextures = false;
1731 bool hasHalfFPTextures = false;
1732 // for now we don't support floating point MSAA on ES
Brian Salomon71d9d842016-11-03 13:42:00 -04001733 uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags;
bsalomon41e4384e2016-01-08 09:12:44 -08001734
1735 if (kGL_GrGLStandard == standard) {
1736 if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) {
1737 hasFPTextures = true;
1738 hasHalfFPTextures = true;
1739 }
1740 } else {
1741 if (version >= GR_GL_VER(3, 1)) {
1742 hasFPTextures = true;
1743 hasHalfFPTextures = true;
1744 } else {
1745 if (ctxInfo.hasExtension("GL_OES_texture_float_linear") &&
1746 ctxInfo.hasExtension("GL_OES_texture_float")) {
1747 hasFPTextures = true;
1748 }
1749 if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") &&
1750 ctxInfo.hasExtension("GL_OES_texture_half_float")) {
1751 hasHalfFPTextures = true;
1752 }
1753 }
1754 }
bsalomon30447372015-12-21 09:03:05 -08001755
1756 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1757 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA32F;
bsalomon76148af2016-01-12 11:13:47 -08001758 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1759 GR_GL_RGBA;
bsalomon30447372015-12-21 09:03:05 -08001760 fConfigTable[kRGBA_float_GrPixelConfig].fFormats.fExternalType = GR_GL_FLOAT;
bsalomon7928ef62016-01-05 10:26:39 -08001761 fConfigTable[kRGBA_float_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001762 if (hasFPTextures) {
1763 fConfigTable[kRGBA_float_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1764 // For now we only enable rendering to float on desktop, because on ES we'd have to solve
1765 // many precision issues and no clients actually want this yet.
1766 if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) ||
1767 ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) {
1768 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= fpRenderFlags;
1769 }
1770 }
cblume790d5132016-02-29 11:13:29 -08001771 if (texStorageSupported) {
1772 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1773 }
cdalton74b8d322016-04-11 14:47:28 -07001774 if (texelBufferSupport) {
1775 fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1776 }
bsalomoncdee0092016-01-08 13:20:12 -08001777 fConfigTable[kRGBA_float_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001778
1779 if (this->textureRedSupport()) {
1780 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED;
1781 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F;
bsalomon76148af2016-01-12 11:13:47 -08001782 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1783 = GR_GL_RED;
bsalomoncdee0092016-01-08 13:20:12 -08001784 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
cdalton74b8d322016-04-11 14:47:28 -07001785 if (texelBufferSupport) {
1786 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |=
1787 ConfigInfo::kCanUseWithTexelBuffer_Flag;
1788 }
bsalomon30447372015-12-21 09:03:05 -08001789 } else {
1790 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA;
1791 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F;
bsalomon76148af2016-01-12 11:13:47 -08001792 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage]
1793 = GR_GL_ALPHA;
bsalomoncdee0092016-01-08 13:20:12 -08001794 fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA();
bsalomon30447372015-12-21 09:03:05 -08001795 }
Brian Osman3a887252016-11-17 13:27:31 -05001796 // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though
1797 // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value
1798 // returned when we query, but that turns into a bigger refactor, so just work around it.
1799 if (kGL_GrGLStandard == ctxInfo.standard() ||
1800 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001801 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1802 } else {
1803 fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1804 }
bsalomon7928ef62016-01-05 10:26:39 -08001805 fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001806 if (hasHalfFPTextures) {
1807 fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1808 // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for
1809 // GL_RED internal format.
1810 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1811 (this->textureRedSupport() &&
1812 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) {
1813 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags;
1814 }
1815 }
cblume790d5132016-02-29 11:13:29 -08001816 if (texStorageSupported) {
1817 fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1818 }
bsalomon30447372015-12-21 09:03:05 -08001819
1820 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA;
1821 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F;
bsalomon76148af2016-01-12 11:13:47 -08001822 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1823 GR_GL_RGBA;
Brian Osman3a887252016-11-17 13:27:31 -05001824 // See comment above, re: ANGLE and ES3.
1825 if (kGL_GrGLStandard == ctxInfo.standard() ||
1826 (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) {
bsalomon30447372015-12-21 09:03:05 -08001827 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT;
1828 } else {
1829 fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES;
1830 }
bsalomon7928ef62016-01-05 10:26:39 -08001831 fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001832 if (hasHalfFPTextures) {
1833 fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1834 // ES requires 3.2 or EXT_color_buffer_half_float.
1835 if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) ||
1836 ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) {
1837 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags;
1838 }
1839 }
cblume790d5132016-02-29 11:13:29 -08001840 if (texStorageSupported) {
1841 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag;
1842 }
cdalton74b8d322016-04-11 14:47:28 -07001843 if (texelBufferSupport) {
1844 fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag;
1845 }
bsalomoncdee0092016-01-08 13:20:12 -08001846 fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon41e4384e2016-01-08 09:12:44 -08001847
1848 // Compressed texture support
1849
1850 // glCompressedTexImage2D is available on all OpenGL ES devices. It is available on standard
1851 // OpenGL after version 1.3. We'll assume at least that level of OpenGL support.
1852
1853 // TODO: Fix command buffer bindings and remove this.
1854 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D);
bsalomon30447372015-12-21 09:03:05 -08001855
1856 // No sized/unsized internal format distinction for compressed formats, no external format.
bsalomon41e4384e2016-01-08 09:12:44 -08001857 // Below we set the external formats and types to 0.
bsalomon30447372015-12-21 09:03:05 -08001858
1859 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_PALETTE8_RGBA8;
1860 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon76148af2016-01-12 11:13:47 -08001861 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001862 fConfigTable[kIndex_8_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001863 fConfigTable[kIndex_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001864 // Disable this for now, while we investigate https://bug.skia.org/4333
Brian Salomoneaabe002016-10-11 14:40:33 -07001865 if ((false)) {
bsalomon41e4384e2016-01-08 09:12:44 -08001866 // Check for 8-bit palette..
1867 GrGLint numFormats;
1868 GR_GL_GetIntegerv(gli, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
1869 if (numFormats) {
1870 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
1871 GR_GL_GetIntegerv(gli, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
1872 for (int i = 0; i < numFormats; ++i) {
1873 if (GR_GL_PALETTE8_RGBA8 == formats[i]) {
1874 fConfigTable[kIndex_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1875 break;
1876 }
1877 }
1878 }
1879 }
bsalomoncdee0092016-01-08 13:20:12 -08001880 fConfigTable[kIndex_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001881
bsalomon41e4384e2016-01-08 09:12:44 -08001882 // May change the internal format based on extensions.
1883 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1884 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1885 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1886 GR_GL_COMPRESSED_LUMINANCE_LATC1;
1887 if (ctxInfo.hasExtension("GL_EXT_texture_compression_latc") ||
1888 ctxInfo.hasExtension("GL_NV_texture_compression_latc")) {
1889 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1890 } else if ((kGL_GrGLStandard == standard && version >= GR_GL_VER(3, 0)) ||
1891 ctxInfo.hasExtension("GL_EXT_texture_compression_rgtc") ||
1892 ctxInfo.hasExtension("GL_ARB_texture_compression_rgtc")) {
1893 // RGTC is identical and available on OpenGL 3.0+ as well as with extensions
1894 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1895 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat =
1896 GR_GL_COMPRESSED_RED_RGTC1;
1897 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1898 GR_GL_COMPRESSED_RED_RGTC1;
1899 } else if (ctxInfo.hasExtension("GL_AMD_compressed_3DC_texture")) {
1900 fConfigTable[kLATC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1901 fConfigTable[kLATC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_3DC_X;
1902 fConfigTable[kLATC_GrPixelConfig].fFormats.fSizedInternalFormat =
1903 GR_GL_COMPRESSED_3DC_X;
1904
bsalomon30447372015-12-21 09:03:05 -08001905 }
bsalomon76148af2016-01-12 11:13:47 -08001906 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001907 fConfigTable[kLATC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001908 fConfigTable[kLATC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomoncdee0092016-01-08 13:20:12 -08001909 fConfigTable[kLATC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001910
1911 fConfigTable[kETC1_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
1912 fConfigTable[kETC1_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
bsalomon76148af2016-01-12 11:13:47 -08001913 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001914 fConfigTable[kETC1_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001915 fConfigTable[kETC1_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001916 if (kGL_GrGLStandard == standard) {
1917 if (version >= GR_GL_VER(4, 3) || ctxInfo.hasExtension("GL_ARB_ES3_compatibility")) {
1918 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1919 }
1920 } else {
1921 if (version >= GR_GL_VER(3, 0) ||
1922 ctxInfo.hasExtension("GL_OES_compressed_ETC1_RGB8_texture") ||
1923 // ETC2 is a superset of ETC1, so we can just check for that, too.
1924 (ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGB8_texture") &&
1925 ctxInfo.hasExtension("GL_OES_compressed_ETC2_RGBA8_texture"))) {
1926 fConfigTable[kETC1_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1927 }
1928 }
bsalomoncdee0092016-01-08 13:20:12 -08001929 fConfigTable[kETC1_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001930
1931 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_COMPRESSED_R11_EAC;
1932 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_COMPRESSED_R11_EAC;
bsalomon76148af2016-01-12 11:13:47 -08001933 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0;
bsalomon30447372015-12-21 09:03:05 -08001934 fConfigTable[kR11_EAC_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001935 fConfigTable[kR11_EAC_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001936 // Check for R11_EAC. We don't support R11_EAC on desktop, as most cards default to
1937 // decompressing the textures in the driver, and is generally slower.
1938 if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) {
1939 fConfigTable[kR11_EAC_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1940 }
bsalomoncdee0092016-01-08 13:20:12 -08001941 fConfigTable[kR11_EAC_GrPixelConfig].fSwizzle = GrSwizzle::RRRR();
bsalomon30447372015-12-21 09:03:05 -08001942
1943 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fBaseInternalFormat =
1944 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
1945 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fSizedInternalFormat =
1946 GR_GL_COMPRESSED_RGBA_ASTC_12x12;
bsalomon76148af2016-01-12 11:13:47 -08001947 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] =
1948 0;
bsalomon30447372015-12-21 09:03:05 -08001949 fConfigTable[kASTC_12x12_GrPixelConfig].fFormats.fExternalType = 0;
bsalomon7928ef62016-01-05 10:26:39 -08001950 fConfigTable[kASTC_12x12_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType;
bsalomon41e4384e2016-01-08 09:12:44 -08001951 if (ctxInfo.hasExtension("GL_KHR_texture_compression_astc_hdr") ||
1952 ctxInfo.hasExtension("GL_KHR_texture_compression_astc_ldr") ||
1953 ctxInfo.hasExtension("GL_OES_texture_compression_astc")) {
1954 fConfigTable[kASTC_12x12_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag;
1955 }
bsalomoncdee0092016-01-08 13:20:12 -08001956 fConfigTable[kASTC_12x12_GrPixelConfig].fSwizzle = GrSwizzle::RGBA();
bsalomon30447372015-12-21 09:03:05 -08001957
1958 // Bulk populate the texture internal/external formats here and then deal with exceptions below.
1959
1960 // ES 2.0 requires that the internal/external formats match.
bsalomon76148af2016-01-12 11:13:47 -08001961 bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() ||
1962 ctxInfo.version() >= GR_GL_VER(3,0));
1963 // All ES versions (thus far) require sized internal formats for render buffers.
1964 // TODO: Always use sized internal format?
1965 bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard();
1966
bsalomon30447372015-12-21 09:03:05 -08001967 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
bsalomon76148af2016-01-12 11:13:47 -08001968 // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format>
1969 // param to glTex[Sub]Image.
1970 fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
1971 fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage];
1972 fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ?
1973 fConfigTable[i].fFormats.fSizedInternalFormat :
1974 fConfigTable[i].fFormats.fBaseInternalFormat;
1975 fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ?
bsalomon30447372015-12-21 09:03:05 -08001976 fConfigTable[i].fFormats.fSizedInternalFormat :
1977 fConfigTable[i].fFormats.fBaseInternalFormat;
1978 }
1979 // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format>
1980 // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match.
1981 // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param.
1982 // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage.
1983 if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) {
bsalomon76148af2016-01-12 11:13:47 -08001984 fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] =
bsalomon30447372015-12-21 09:03:05 -08001985 GR_GL_SRGB_ALPHA;
brianosmana6359362016-03-21 06:55:37 -07001986
1987 // Additionally, because we had to "invent" sBGRA, there is no way to make it work
1988 // in ES 2.0, because there is no <internalFormat> we can use. So just make that format
1989 // unsupported. (If we have no sRGB support at all, this will get overwritten below).
1990 fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0;
bsalomon30447372015-12-21 09:03:05 -08001991 }
1992
1993 // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image
1994 // as a base format.
1995 // GL_EXT_texture_format_BGRA8888:
1996 // This extension GL_BGRA as an unsized internal format. However, it is written against ES
1997 // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal
1998 // formats.
halcanary9d524f22016-03-29 09:03:52 -07001999 // GL_APPLE_texture_format_BGRA8888:
bsalomon30447372015-12-21 09:03:05 -08002000 // ES 2.0: the extension makes BGRA an external format but not an internal format.
2001 // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for
2002 // glTexImage (just for glTexStorage).
bsalomon76148af2016-01-12 11:13:47 -08002003 if (useSizedTexFormats && this->bgraIsInternalFormat()) {
bsalomon30447372015-12-21 09:03:05 -08002004 fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA;
2005 }
2006
bsalomoncdee0092016-01-08 13:20:12 -08002007 // If we don't have texture swizzle support then the shader generator must insert the
2008 // swizzle into shader code.
2009 if (!this->textureSwizzleSupport()) {
2010 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2011 glslCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle;
2012 }
2013 }
2014
bsalomon7f9b2e42016-01-12 13:29:26 -08002015 // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to
2016 // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel
2017 // gets written to the single component.
2018 if (this->textureRedSupport()) {
2019 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
2020 GrPixelConfig config = static_cast<GrPixelConfig>(i);
2021 if (GrPixelConfigIsAlphaOnly(config) &&
2022 fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) {
2023 glslCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA();
2024 }
2025 }
2026 }
2027
bsalomon30447372015-12-21 09:03:05 -08002028#ifdef SK_DEBUG
2029 // Make sure we initialized everything.
bsalomon76148af2016-01-12 11:13:47 -08002030 ConfigInfo defaultEntry;
bsalomon30447372015-12-21 09:03:05 -08002031 for (int i = 0; i < kGrPixelConfigCnt; ++i) {
Brian Salomon71d9d842016-11-03 13:42:00 -04002032 // Make sure we didn't set renderable and not blittable or renderable with msaa and not
2033 // renderable.
2034 SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag)));
2035 SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag)));
bsalomon76148af2016-01-12 11:13:47 -08002036 SkASSERT(defaultEntry.fFormats.fBaseInternalFormat !=
2037 fConfigTable[i].fFormats.fBaseInternalFormat);
2038 SkASSERT(defaultEntry.fFormats.fSizedInternalFormat !=
bsalomon30447372015-12-21 09:03:05 -08002039 fConfigTable[i].fFormats.fSizedInternalFormat);
bsalomon76148af2016-01-12 11:13:47 -08002040 for (int j = 0; j < kExternalFormatUsageCnt; ++j) {
2041 SkASSERT(defaultEntry.fFormats.fExternalFormat[j] !=
2042 fConfigTable[i].fFormats.fExternalFormat[j]);
2043 }
2044 SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType);
bsalomon30447372015-12-21 09:03:05 -08002045 }
2046#endif
2047}
2048
csmartdaltone0d36292016-07-29 08:14:20 -07002049void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) {
2050 if (options.fEnableInstancedRendering) {
2051 fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this);
2052#ifndef SK_BUILD_FOR_MAC
2053 // OS X doesn't seem to write correctly to floating point textures when using
2054 // glDraw*Indirect, regardless of the underlying GPU.
2055 fAvoidInstancedDrawsToFPTargets = true;
2056#endif
2057 }
2058}