bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 8 | #include "GrGLCaps.h" |
egdaniel | b7e7d57 | 2015-11-04 04:23:53 -0800 | [diff] [blame] | 9 | #include "GrContextOptions.h" |
robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 10 | #include "GrGLContext.h" |
bsalomon | 1aa2029 | 2016-01-22 08:16:09 -0800 | [diff] [blame] | 11 | #include "GrGLRenderTarget.h" |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 12 | #include "GrGLTexture.h" |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 13 | #include "GrShaderCaps.h" |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 14 | #include "GrSurfaceProxyPriv.h" |
bsalomon@google.com | c9668ec | 2012-04-11 18:16:41 +0000 | [diff] [blame] | 15 | #include "SkTSearch.h" |
bsalomon@google.com | 20f7f17 | 2013-05-17 19:05:03 +0000 | [diff] [blame] | 16 | #include "SkTSort.h" |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 17 | #include "instanced/GLInstancedRendering.h" |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 18 | |
bsalomon | 682c269 | 2015-05-22 14:01:46 -0700 | [diff] [blame] | 19 | GrGLCaps::GrGLCaps(const GrContextOptions& contextOptions, |
| 20 | const GrGLContextInfo& ctxInfo, |
| 21 | const GrGLInterface* glInterface) : INHERITED(contextOptions) { |
bsalomon | 1aa2029 | 2016-01-22 08:16:09 -0800 | [diff] [blame] | 22 | fStandard = ctxInfo.standard(); |
| 23 | |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 24 | fStencilFormats.reset(); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 25 | fMSFBOType = kNone_MSFBOType; |
commit-bot@chromium.org | 52ffbf6 | 2014-04-02 16:19:33 +0000 | [diff] [blame] | 26 | fInvalidateFBType = kNone_InvalidateFBType; |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 27 | fMapBufferType = kNone_MapBufferType; |
jvanverth | d7a2c1f | 2015-12-07 07:36:44 -0800 | [diff] [blame] | 28 | fTransferBufferType = kNone_TransferBufferType; |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 29 | fMaxFragmentUniformVectors = 0; |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 30 | fUnpackRowLengthSupport = false; |
| 31 | fUnpackFlipYSupport = false; |
| 32 | fPackRowLengthSupport = false; |
| 33 | fPackFlipYSupport = false; |
| 34 | fTextureUsageSupport = false; |
robertphillips@google.com | 443e5a5 | 2012-04-30 20:01:21 +0000 | [diff] [blame] | 35 | fTextureRedSupport = false; |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 36 | fAlpha8IsRenderable = false; |
bsalomon@google.com | e76b7cc | 2012-06-18 12:47:06 +0000 | [diff] [blame] | 37 | fImagingSupport = false; |
bsalomon@google.com | 07631cf | 2013-03-05 14:14:58 +0000 | [diff] [blame] | 38 | fVertexArrayObjectSupport = false; |
cdalton | 626e1ff | 2015-06-12 13:56:46 -0700 | [diff] [blame] | 39 | fDirectStateAccessSupport = false; |
| 40 | fDebugSupport = false; |
jvanverth | 3f801cb | 2014-12-16 09:49:38 -0800 | [diff] [blame] | 41 | fES2CompatibilitySupport = false; |
cdalton | 06604b9 | 2016-02-05 10:09:51 -0800 | [diff] [blame] | 42 | fDrawIndirectSupport = false; |
| 43 | fMultiDrawIndirectSupport = false; |
| 44 | fBaseInstanceSupport = false; |
bsalomon@google.com | 2b1b8c0 | 2013-02-28 22:06:02 +0000 | [diff] [blame] | 45 | fIsCoreProfile = false; |
joshualitt | c1f56b5 | 2015-06-22 12:31:31 -0700 | [diff] [blame] | 46 | fBindFragDataLocationSupport = false; |
bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 47 | fRectangleTextureSupport = false; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 48 | fTextureSwizzleSupport = false; |
bsalomon | 88c7b98 | 2015-07-31 11:20:16 -0700 | [diff] [blame] | 49 | fRGBA8888PixelsOpsAreSlow = false; |
| 50 | fPartialFBOReadIsSlow = false; |
cblume | 09bd2c0 | 2016-03-01 14:08:28 -0800 | [diff] [blame] | 51 | fMipMapLevelAndLodControlSupport = false; |
ericrk | b4ecabd | 2016-03-11 15:18:20 -0800 | [diff] [blame] | 52 | fRGBAToBGRAReadbackConversionsAreSlow = false; |
brianosman | 09563ce | 2016-06-02 08:59:34 -0700 | [diff] [blame] | 53 | fDoManualMipmapping = false; |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 54 | fSRGBDecodeDisableSupport = false; |
brianosman | 851c238 | 2016-12-07 10:03:25 -0800 | [diff] [blame] | 55 | fSRGBDecodeDisableAffectsMipmaps = false; |
Eric Karl | aeaf22b | 2017-05-18 15:08:09 -0700 | [diff] [blame] | 56 | fClearToBoundaryValuesIsBroken = false; |
Brian Salomon | d17b4a6 | 2017-05-23 16:53:47 -0400 | [diff] [blame] | 57 | fClearTextureSupport = false; |
Chris Dalton | 9926f4b | 2017-05-17 15:15:50 -0600 | [diff] [blame] | 58 | fDrawArraysBaseVertexIsBroken = false; |
Mike Klein | 31550db | 2017-06-06 23:29:53 +0000 | [diff] [blame] | 59 | fUseDrawToClearStencilClip = false; |
Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 60 | fDisallowTexSubImageForUnormConfigTexturesEverBoundToFBO = false; |
| 61 | fUseDrawInsteadOfAllRenderTargetWrites = false; |
Brian Salomon | 6d9c88b | 2017-06-12 10:24:42 -0400 | [diff] [blame] | 62 | fRequiresCullFaceEnableDisableWhenDrawingLinesAfterNonLines = false; |
piotaixr | e4b2314 | 2014-10-02 10:57:53 -0700 | [diff] [blame] | 63 | |
Brian Salomon | e5e7eb1 | 2016-10-14 16:18:33 -0400 | [diff] [blame] | 64 | fBlitFramebufferFlags = kNoSupport_BlitFramebufferFlag; |
bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 65 | |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 66 | fShaderCaps.reset(new GrShaderCaps(contextOptions)); |
bsalomon | 4ee6bd8 | 2015-05-27 13:23:23 -0700 | [diff] [blame] | 67 | |
cdalton | 4cd6713 | 2015-06-10 19:23:46 -0700 | [diff] [blame] | 68 | this->init(contextOptions, ctxInfo, glInterface); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 69 | } |
| 70 | |
cdalton | 4cd6713 | 2015-06-10 19:23:46 -0700 | [diff] [blame] | 71 | void GrGLCaps::init(const GrContextOptions& contextOptions, |
| 72 | const GrGLContextInfo& ctxInfo, |
| 73 | const GrGLInterface* gli) { |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 74 | GrGLStandard standard = ctxInfo.standard(); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 75 | GrGLVersion version = ctxInfo.version(); |
| 76 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 77 | if (kGLES_GrGLStandard == standard) { |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 78 | GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_VECTORS, |
| 79 | &fMaxFragmentUniformVectors); |
| 80 | } else { |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 81 | SkASSERT(kGL_GrGLStandard == standard); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 82 | GrGLint max; |
| 83 | GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max); |
| 84 | fMaxFragmentUniformVectors = max / 4; |
commit-bot@chromium.org | 46fbfe0 | 2013-08-30 15:52:12 +0000 | [diff] [blame] | 85 | if (version >= GR_GL_VER(3, 2)) { |
| 86 | GrGLint profileMask; |
| 87 | GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask); |
| 88 | fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT); |
| 89 | } |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 90 | } |
bsalomon@google.com | 60da417 | 2012-06-01 19:25:00 +0000 | [diff] [blame] | 91 | GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_ATTRIBS, &fMaxVertexAttributes); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 92 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 93 | if (kGL_GrGLStandard == standard) { |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 94 | fUnpackRowLengthSupport = true; |
| 95 | fUnpackFlipYSupport = false; |
| 96 | fPackRowLengthSupport = true; |
| 97 | fPackFlipYSupport = false; |
| 98 | } else { |
commit-bot@chromium.org | dc3134c | 2013-08-16 16:12:23 +0000 | [diff] [blame] | 99 | fUnpackRowLengthSupport = version >= GR_GL_VER(3,0) || |
| 100 | ctxInfo.hasExtension("GL_EXT_unpack_subimage"); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 101 | fUnpackFlipYSupport = ctxInfo.hasExtension("GL_CHROMIUM_flipy"); |
commit-bot@chromium.org | dc3134c | 2013-08-16 16:12:23 +0000 | [diff] [blame] | 102 | fPackRowLengthSupport = version >= GR_GL_VER(3,0) || |
| 103 | ctxInfo.hasExtension("GL_NV_pack_subimage"); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 104 | fPackFlipYSupport = |
| 105 | ctxInfo.hasExtension("GL_ANGLE_pack_reverse_row_order"); |
| 106 | } |
| 107 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 108 | fTextureUsageSupport = (kGLES_GrGLStandard == standard) && |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 109 | ctxInfo.hasExtension("GL_ANGLE_texture_usage"); |
| 110 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 111 | if (kGL_GrGLStandard == standard) { |
cdalton | fd4167d | 2015-04-21 11:45:56 -0700 | [diff] [blame] | 112 | fTextureBarrierSupport = version >= GR_GL_VER(4,5) || |
| 113 | ctxInfo.hasExtension("GL_ARB_texture_barrier") || |
| 114 | ctxInfo.hasExtension("GL_NV_texture_barrier"); |
| 115 | } else { |
| 116 | fTextureBarrierSupport = ctxInfo.hasExtension("GL_NV_texture_barrier"); |
| 117 | } |
| 118 | |
cdalton | eb79eea | 2016-02-26 10:39:34 -0800 | [diff] [blame] | 119 | if (kGL_GrGLStandard == standard) { |
| 120 | fSampleLocationsSupport = version >= GR_GL_VER(3,2) || |
| 121 | ctxInfo.hasExtension("GL_ARB_texture_multisample"); |
| 122 | } else { |
| 123 | fSampleLocationsSupport = version >= GR_GL_VER(3,1); |
| 124 | } |
| 125 | |
Brian Salomon | 0ee6f95 | 2017-01-19 15:52:24 -0500 | [diff] [blame] | 126 | // ARB_texture_rg is part of OpenGL 3.0, but osmesa doesn't support GL_RED |
hendrikw | a0d5ad7 | 2014-12-02 07:30:30 -0800 | [diff] [blame] | 127 | // and GL_RG on FBO textures. |
Brian Salomon | 0ee6f95 | 2017-01-19 15:52:24 -0500 | [diff] [blame] | 128 | if (kOSMesa_GrGLRenderer != ctxInfo.renderer()) { |
hendrikw | a0d5ad7 | 2014-12-02 07:30:30 -0800 | [diff] [blame] | 129 | if (kGL_GrGLStandard == standard) { |
commit-bot@chromium.org | 459104c | 2013-06-14 14:42:56 +0000 | [diff] [blame] | 130 | fTextureRedSupport = version >= GR_GL_VER(3,0) || |
| 131 | ctxInfo.hasExtension("GL_ARB_texture_rg"); |
hendrikw | a0d5ad7 | 2014-12-02 07:30:30 -0800 | [diff] [blame] | 132 | } else { |
| 133 | fTextureRedSupport = version >= GR_GL_VER(3,0) || |
| 134 | ctxInfo.hasExtension("GL_EXT_texture_rg"); |
commit-bot@chromium.org | 459104c | 2013-06-14 14:42:56 +0000 | [diff] [blame] | 135 | } |
robertphillips@google.com | 443e5a5 | 2012-04-30 20:01:21 +0000 | [diff] [blame] | 136 | } |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 137 | fImagingSupport = kGL_GrGLStandard == standard && |
bsalomon@google.com | e76b7cc | 2012-06-18 12:47:06 +0000 | [diff] [blame] | 138 | ctxInfo.hasExtension("GL_ARB_imaging"); |
| 139 | |
egdaniel | 9250d24 | 2015-05-18 13:04:26 -0700 | [diff] [blame] | 140 | // A driver but on the nexus 6 causes incorrect dst copies when invalidate is called beforehand. |
| 141 | // Thus we are blacklisting this extension for now on Adreno4xx devices. |
| 142 | if (kAdreno4xx_GrGLRenderer != ctxInfo.renderer() && |
| 143 | ((kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) || |
| 144 | (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0)) || |
| 145 | ctxInfo.hasExtension("GL_ARB_invalidate_subdata"))) { |
commit-bot@chromium.org | 52ffbf6 | 2014-04-02 16:19:33 +0000 | [diff] [blame] | 146 | fDiscardRenderTargetSupport = true; |
| 147 | fInvalidateFBType = kInvalidate_InvalidateFBType; |
| 148 | } else if (ctxInfo.hasExtension("GL_EXT_discard_framebuffer")) { |
| 149 | fDiscardRenderTargetSupport = true; |
| 150 | fInvalidateFBType = kDiscard_InvalidateFBType; |
| 151 | } |
robertphillips@google.com | a6ffb58 | 2013-04-29 16:50:17 +0000 | [diff] [blame] | 152 | |
robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 153 | if (kARM_GrGLVendor == ctxInfo.vendor() || kImagination_GrGLVendor == ctxInfo.vendor()) { |
| 154 | fFullClearIsFree = true; |
| 155 | } |
| 156 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 157 | if (kGL_GrGLStandard == standard) { |
bsalomon@google.com | 07631cf | 2013-03-05 14:14:58 +0000 | [diff] [blame] | 158 | fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) || |
tomhudson | 612e926 | 2014-11-24 11:22:36 -0800 | [diff] [blame] | 159 | ctxInfo.hasExtension("GL_ARB_vertex_array_object") || |
| 160 | ctxInfo.hasExtension("GL_APPLE_vertex_array_object"); |
bsalomon@google.com | 07631cf | 2013-03-05 14:14:58 +0000 | [diff] [blame] | 161 | } else { |
commit-bot@chromium.org | 2276c01 | 2013-08-16 15:53:33 +0000 | [diff] [blame] | 162 | fVertexArrayObjectSupport = version >= GR_GL_VER(3, 0) || |
| 163 | ctxInfo.hasExtension("GL_OES_vertex_array_object"); |
bsalomon@google.com | 07631cf | 2013-03-05 14:14:58 +0000 | [diff] [blame] | 164 | } |
| 165 | |
cdalton | 626e1ff | 2015-06-12 13:56:46 -0700 | [diff] [blame] | 166 | if (kGL_GrGLStandard == standard) { |
| 167 | fDirectStateAccessSupport = ctxInfo.hasExtension("GL_EXT_direct_state_access"); |
| 168 | } else { |
| 169 | fDirectStateAccessSupport = false; |
| 170 | } |
| 171 | |
| 172 | if (kGL_GrGLStandard == standard && version >= GR_GL_VER(4,3)) { |
| 173 | fDebugSupport = true; |
| 174 | } else { |
| 175 | fDebugSupport = ctxInfo.hasExtension("GL_KHR_debug"); |
| 176 | } |
| 177 | |
jvanverth | 3f801cb | 2014-12-16 09:49:38 -0800 | [diff] [blame] | 178 | if (kGL_GrGLStandard == standard) { |
| 179 | fES2CompatibilitySupport = ctxInfo.hasExtension("GL_ARB_ES2_compatibility"); |
| 180 | } |
| 181 | else { |
| 182 | fES2CompatibilitySupport = true; |
| 183 | } |
| 184 | |
cdalton | 0edea2c | 2015-05-21 08:27:44 -0700 | [diff] [blame] | 185 | if (kGL_GrGLStandard == standard) { |
| 186 | fMultisampleDisableSupport = true; |
| 187 | } else { |
kkinnunen | bf49e46 | 2015-07-30 22:43:52 -0700 | [diff] [blame] | 188 | fMultisampleDisableSupport = ctxInfo.hasExtension("GL_EXT_multisample_compatibility"); |
cdalton | 0edea2c | 2015-05-21 08:27:44 -0700 | [diff] [blame] | 189 | } |
| 190 | |
kkinnunen | d94708e | 2015-07-30 22:47:04 -0700 | [diff] [blame] | 191 | if (kGL_GrGLStandard == standard) { |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 192 | // 3.1 has draw_instanced but not instanced_arrays, for the time being we only care about |
| 193 | // instanced arrays, but we could make this more granular if we wanted |
| 194 | fInstanceAttribSupport = |
| 195 | version >= GR_GL_VER(3, 2) || |
| 196 | (ctxInfo.hasExtension("GL_ARB_draw_instanced") && |
| 197 | ctxInfo.hasExtension("GL_ARB_instanced_arrays")); |
| 198 | } else { |
| 199 | fInstanceAttribSupport = |
| 200 | version >= GR_GL_VER(3, 0) || |
| 201 | (ctxInfo.hasExtension("GL_EXT_draw_instanced") && |
| 202 | ctxInfo.hasExtension("GL_EXT_instanced_arrays")); |
| 203 | } |
| 204 | |
| 205 | if (kGL_GrGLStandard == standard) { |
kkinnunen | d94708e | 2015-07-30 22:47:04 -0700 | [diff] [blame] | 206 | if (version >= GR_GL_VER(3, 0)) { |
| 207 | fBindFragDataLocationSupport = true; |
| 208 | } |
| 209 | } else { |
| 210 | if (version >= GR_GL_VER(3, 0) && ctxInfo.hasExtension("GL_EXT_blend_func_extended")) { |
| 211 | fBindFragDataLocationSupport = true; |
| 212 | } |
joshualitt | c1f56b5 | 2015-06-22 12:31:31 -0700 | [diff] [blame] | 213 | } |
| 214 | |
joshualitt | 7bdd70a | 2015-10-01 06:28:11 -0700 | [diff] [blame] | 215 | fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location"); |
| 216 | |
kkinnunen | e06ed25 | 2016-02-16 23:15:40 -0800 | [diff] [blame] | 217 | if (kGL_GrGLStandard == standard) { |
| 218 | if (version >= GR_GL_VER(3, 1) || ctxInfo.hasExtension("GL_ARB_texture_rectangle")) { |
| 219 | // We also require textureSize() support for rectangle 2D samplers which was added in |
| 220 | // GLSL 1.40. |
| 221 | if (ctxInfo.glslGeneration() >= k140_GrGLSLGeneration) { |
| 222 | fRectangleTextureSupport = true; |
| 223 | } |
bsalomon | e179a91 | 2016-01-20 06:18:10 -0800 | [diff] [blame] | 224 | } |
kkinnunen | e06ed25 | 2016-02-16 23:15:40 -0800 | [diff] [blame] | 225 | } else { |
| 226 | // Command buffer exposes this in GL ES context for Chromium reasons, |
| 227 | // but it should not be used. Also, at the time of writing command buffer |
| 228 | // lacks TexImage2D support and ANGLE lacks GL ES 3.0 support. |
bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 229 | } |
| 230 | |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 231 | if (kGL_GrGLStandard == standard) { |
| 232 | if (version >= GR_GL_VER(3,3) || ctxInfo.hasExtension("GL_ARB_texture_swizzle")) { |
| 233 | fTextureSwizzleSupport = true; |
| 234 | } |
| 235 | } else { |
| 236 | if (version >= GR_GL_VER(3,0)) { |
| 237 | fTextureSwizzleSupport = true; |
| 238 | } |
| 239 | } |
| 240 | |
cblume | 09bd2c0 | 2016-03-01 14:08:28 -0800 | [diff] [blame] | 241 | if (kGL_GrGLStandard == standard) { |
| 242 | fMipMapLevelAndLodControlSupport = true; |
| 243 | } else if (kGLES_GrGLStandard == standard) { |
| 244 | if (version >= GR_GL_VER(3,0)) { |
| 245 | fMipMapLevelAndLodControlSupport = true; |
| 246 | } |
| 247 | } |
| 248 | |
bsalomon | 88c7b98 | 2015-07-31 11:20:16 -0700 | [diff] [blame] | 249 | #ifdef SK_BUILD_FOR_WIN |
| 250 | // We're assuming that on Windows Chromium we're using ANGLE. |
| 251 | bool isANGLE = kANGLE_GrGLDriver == ctxInfo.driver() || |
| 252 | kChromium_GrGLDriver == ctxInfo.driver(); |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 253 | // Angle has slow read/write pixel paths for 32bit RGBA (but fast for BGRA). |
bsalomon | 88c7b98 | 2015-07-31 11:20:16 -0700 | [diff] [blame] | 254 | fRGBA8888PixelsOpsAreSlow = isANGLE; |
| 255 | // On DX9 ANGLE reading a partial FBO is slow. TODO: Check whether this is still true and |
| 256 | // check DX11 ANGLE. |
| 257 | fPartialFBOReadIsSlow = isANGLE; |
| 258 | #endif |
| 259 | |
ericrk | b4ecabd | 2016-03-11 15:18:20 -0800 | [diff] [blame] | 260 | bool isMESA = kMesa_GrGLDriver == ctxInfo.driver(); |
| 261 | bool isMAC = false; |
| 262 | #ifdef SK_BUILD_FOR_MAC |
| 263 | isMAC = true; |
| 264 | #endif |
| 265 | |
| 266 | // Both mesa and mac have reduced performance if reading back an RGBA framebuffer as BGRA or |
| 267 | // vis-versa. |
| 268 | fRGBAToBGRAReadbackConversionsAreSlow = isMESA || isMAC; |
| 269 | |
Brian Salomon | d17b4a6 | 2017-05-23 16:53:47 -0400 | [diff] [blame] | 270 | if (kGL_GrGLStandard == standard) { |
| 271 | if (version >= GR_GL_VER(4,4) || ctxInfo.hasExtension("GL_ARB_clear_texture")) { |
| 272 | // glClearTexImage seems to have a bug in NVIDIA drivers that was fixed sometime between |
| 273 | // 340.96 and 367.57. |
| 274 | if (ctxInfo.driver() != kNVIDIA_GrGLDriver || |
| 275 | ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(367, 57)) { |
| 276 | fClearTextureSupport = true; |
| 277 | } |
| 278 | } |
| 279 | } else if (ctxInfo.hasExtension("GL_EXT_clear_texture")) { |
| 280 | // Calling glClearTexImage crashes on the NexusPlayer. |
| 281 | if (kPowerVRRogue_GrGLRenderer != ctxInfo.renderer()) { |
| 282 | fClearTextureSupport = true; |
| 283 | } |
| 284 | } |
| 285 | |
cdalton | 4cd6713 | 2015-06-10 19:23:46 -0700 | [diff] [blame] | 286 | /************************************************************************** |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 287 | * GrShaderCaps fields |
| 288 | **************************************************************************/ |
| 289 | |
egdaniel | 0a48233 | 2015-10-26 08:59:10 -0700 | [diff] [blame] | 290 | // This must be called after fCoreProfile is set on the GrGLCaps |
| 291 | this->initGLSL(ctxInfo); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 292 | GrShaderCaps* shaderCaps = fShaderCaps.get(); |
egdaniel | 0a48233 | 2015-10-26 08:59:10 -0700 | [diff] [blame] | 293 | |
csmartdalton | 008b9d8 | 2017-02-22 12:00:42 -0700 | [diff] [blame] | 294 | if (!contextOptions.fSuppressPathRendering) { |
| 295 | shaderCaps->fPathRenderingSupport = this->hasPathRenderingSupport(ctxInfo, gli); |
| 296 | } |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 297 | |
| 298 | // For now these two are equivalent but we could have dst read in shader via some other method. |
| 299 | // Before setting this, initGLSL() must have been called. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 300 | shaderCaps->fDstReadInShaderSupport = shaderCaps->fFBFetchSupport; |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 301 | |
| 302 | // Enable supported shader-related caps |
| 303 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 304 | shaderCaps->fDualSourceBlendingSupport = (ctxInfo.version() >= GR_GL_VER(3, 3) || |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 305 | ctxInfo.hasExtension("GL_ARB_blend_func_extended")) && |
| 306 | GrGLSLSupportsNamedFragmentShaderOutputs(ctxInfo.glslGeneration()); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 307 | shaderCaps->fShaderDerivativeSupport = true; |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 308 | // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 309 | shaderCaps->fGeometryShaderSupport = ctxInfo.version() >= GR_GL_VER(3, 2) && |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 310 | ctxInfo.glslGeneration() >= k150_GrGLSLGeneration; |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 311 | shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) && |
cdalton | 793dc26 | 2016-02-08 10:11:47 -0800 | [diff] [blame] | 312 | ctxInfo.glslGeneration() >= k130_GrGLSLGeneration; |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 313 | } |
| 314 | else { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 315 | shaderCaps->fDualSourceBlendingSupport = ctxInfo.hasExtension("GL_EXT_blend_func_extended"); |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 316 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 317 | shaderCaps->fShaderDerivativeSupport = ctxInfo.version() >= GR_GL_VER(3, 0) || |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 318 | ctxInfo.hasExtension("GL_OES_standard_derivatives"); |
cdalton | 793dc26 | 2016-02-08 10:11:47 -0800 | [diff] [blame] | 319 | |
csmartdalton | 1d2aed0 | 2017-02-15 21:43:20 -0700 | [diff] [blame] | 320 | shaderCaps->fGeometryShaderSupport = ctxInfo.hasExtension("GL_EXT_geometry_shader"); |
| 321 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 322 | shaderCaps->fIntegerSupport = ctxInfo.version() >= GR_GL_VER(3, 0) && |
cdalton | 793dc26 | 2016-02-08 10:11:47 -0800 | [diff] [blame] | 323 | ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0. |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 324 | } |
| 325 | |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 326 | // Protect ourselves against tracking huge amounts of texture state. |
| 327 | static const uint8_t kMaxSaneSamplers = 32; |
| 328 | GrGLint maxSamplers; |
| 329 | GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &maxSamplers); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 330 | shaderCaps->fMaxVertexSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers); |
| 331 | if (shaderCaps->fGeometryShaderSupport) { |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 332 | GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS, &maxSamplers); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 333 | shaderCaps->fMaxGeometrySamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers); |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 334 | } |
| 335 | GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 336 | shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers); |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 337 | GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &maxSamplers); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 338 | shaderCaps->fMaxCombinedSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers); |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 339 | |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 340 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 341 | shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(4, 2); |
| 342 | if (!shaderCaps->fImageLoadStoreSupport && |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 343 | ctxInfo.hasExtension("GL_ARB_shader_image_load_store")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 344 | shaderCaps->fImageLoadStoreSupport = true; |
| 345 | shaderCaps->fImageLoadStoreExtensionString = "GL_ARB_shader_image_load_store"; |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 346 | } |
| 347 | } else { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 348 | shaderCaps->fImageLoadStoreSupport = ctxInfo.version() >= GR_GL_VER(3, 1); |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 349 | } |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 350 | if (shaderCaps->fImageLoadStoreSupport) { |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 351 | // Protect ourselves against tracking huge amounts of image state. |
| 352 | static constexpr int kMaxSaneImages = 4; |
| 353 | GrGLint maxUnits; |
| 354 | GR_GL_GetIntegerv(gli, GR_GL_MAX_IMAGE_UNITS, &maxUnits); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 355 | GR_GL_GetIntegerv(gli, GR_GL_MAX_VERTEX_IMAGE_UNIFORMS, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 356 | &shaderCaps->fMaxVertexImageStorages); |
| 357 | if (shaderCaps->fGeometryShaderSupport) { |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 358 | GR_GL_GetIntegerv(gli, GR_GL_MAX_GEOMETRY_IMAGE_UNIFORMS, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 359 | &shaderCaps->fMaxGeometryImageStorages); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 360 | } |
| 361 | GR_GL_GetIntegerv(gli, GR_GL_MAX_FRAGMENT_IMAGE_UNIFORMS, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 362 | &shaderCaps->fMaxFragmentImageStorages); |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 363 | GR_GL_GetIntegerv(gli, GR_GL_MAX_COMBINED_IMAGE_UNIFORMS, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 364 | &shaderCaps->fMaxCombinedImageStorages); |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 365 | // We use one unit for every image uniform |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 366 | shaderCaps->fMaxCombinedImageStorages = SkTMin(SkTMin(shaderCaps->fMaxCombinedImageStorages, |
| 367 | maxUnits), kMaxSaneImages); |
| 368 | shaderCaps->fMaxVertexImageStorages = SkTMin(maxUnits, |
| 369 | shaderCaps->fMaxVertexImageStorages); |
| 370 | shaderCaps->fMaxGeometryImageStorages = SkTMin(maxUnits, |
| 371 | shaderCaps->fMaxGeometryImageStorages); |
| 372 | shaderCaps->fMaxFragmentImageStorages = SkTMin(maxUnits, |
| 373 | shaderCaps->fMaxFragmentImageStorages); |
Brian Salomon | f26f7a0 | 2016-11-15 14:05:01 -0500 | [diff] [blame] | 374 | } |
| 375 | |
csmartdalton | 485a120 | 2016-07-13 10:16:32 -0700 | [diff] [blame] | 376 | // SGX and Mali GPUs that are based on a tiled-deferred architecture that have trouble with |
| 377 | // frequently changing VBOs. We've measured a performance increase using non-VBO vertex |
| 378 | // data for dynamic content on these GPUs. Perhaps we should read the renderer string and |
| 379 | // limit this decision to specific GPU families rather than basing it on the vendor alone. |
| 380 | if (!GR_GL_MUST_USE_VBO && |
| 381 | !fIsCoreProfile && |
| 382 | (kARM_GrGLVendor == ctxInfo.vendor() || |
| 383 | kImagination_GrGLVendor == ctxInfo.vendor() || |
| 384 | kQualcomm_GrGLVendor == ctxInfo.vendor())) { |
| 385 | fPreferClientSideDynamicBuffers = true; |
| 386 | } |
| 387 | |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 388 | if (!contextOptions.fAvoidStencilBuffers) { |
| 389 | // To reduce surface area, if we avoid stencil buffers, we also disable MSAA. |
| 390 | this->initFSAASupport(contextOptions, ctxInfo, gli); |
| 391 | this->initStencilSupport(ctxInfo); |
| 392 | } |
Greg Daniel | cd2f512 | 2017-05-25 10:50:40 -0400 | [diff] [blame] | 393 | |
| 394 | // Setup blit framebuffer |
| 395 | if (kGL_GrGLStandard != ctxInfo.standard()) { |
| 396 | if (ctxInfo.version() >= GR_GL_VER(3, 0)) { |
| 397 | fBlitFramebufferFlags = kNoFormatConversionForMSAASrc_BlitFramebufferFlag | |
| 398 | kNoMSAADst_BlitFramebufferFlag | |
| 399 | kRectsMustMatchForMSAASrc_BlitFramebufferFlag; |
| 400 | } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample") || |
| 401 | ctxInfo.hasExtension("GL_ANGLE_framebuffer_blit")) { |
| 402 | // The CHROMIUM extension uses the ANGLE version of glBlitFramebuffer and includes its |
| 403 | // limitations. |
| 404 | fBlitFramebufferFlags = kNoScalingOrMirroring_BlitFramebufferFlag | |
| 405 | kResolveMustBeFull_BlitFrambufferFlag | |
| 406 | kNoMSAADst_BlitFramebufferFlag | |
| 407 | kNoFormatConversion_BlitFramebufferFlag | |
| 408 | kRectsMustMatchForMSAASrc_BlitFramebufferFlag; |
| 409 | } |
| 410 | } else { |
| 411 | if (fUsesMixedSamples || |
| 412 | ctxInfo.version() >= GR_GL_VER(3,0) || |
| 413 | ctxInfo.hasExtension("GL_ARB_framebuffer_object") || |
| 414 | ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) { |
| 415 | fBlitFramebufferFlags = 0; |
| 416 | } |
| 417 | } |
| 418 | |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 419 | this->initBlendEqationSupport(ctxInfo); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 420 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 421 | if (kGL_GrGLStandard == standard) { |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 422 | fMapBufferFlags = kCanMap_MapFlag; // we require VBO support and the desktop VBO |
| 423 | // extension includes glMapBuffer. |
| 424 | if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_map_buffer_range")) { |
| 425 | fMapBufferFlags |= kSubset_MapFlag; |
| 426 | fMapBufferType = kMapBufferRange_MapBufferType; |
| 427 | } else { |
| 428 | fMapBufferType = kMapBuffer_MapBufferType; |
| 429 | } |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 430 | } else { |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 431 | // Unextended GLES2 doesn't have any buffer mapping. |
| 432 | fMapBufferFlags = kNone_MapBufferType; |
kkinnunen | f655e93 | 2016-03-03 07:39:48 -0800 | [diff] [blame] | 433 | if (ctxInfo.hasExtension("GL_CHROMIUM_map_sub")) { |
kkinnunen | 45c2c81 | 2016-02-25 02:03:43 -0800 | [diff] [blame] | 434 | fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag; |
| 435 | fMapBufferType = kChromium_MapBufferType; |
kkinnunen | f655e93 | 2016-03-03 07:39:48 -0800 | [diff] [blame] | 436 | } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_EXT_map_buffer_range")) { |
| 437 | fMapBufferFlags = kCanMap_MapFlag | kSubset_MapFlag; |
| 438 | fMapBufferType = kMapBufferRange_MapBufferType; |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 439 | } else if (ctxInfo.hasExtension("GL_OES_mapbuffer")) { |
| 440 | fMapBufferFlags = kCanMap_MapFlag; |
| 441 | fMapBufferType = kMapBuffer_MapBufferType; |
| 442 | } |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Brian Salomon | e03a729 | 2017-06-08 11:00:50 -0400 | [diff] [blame] | 445 | // We found that the Galaxy J5 with an Adreno 306 running 6.0.1 has a bug where |
| 446 | // GL_INVALID_OPERATION thrown by glDrawArrays when using a buffer that was mapped. The same bug |
| 447 | // did not reproduce on a Nexus7 2013 with a 320 running Android M with driver 127.0. It's |
| 448 | // unclear whether this really affects a wide range of devices. |
| 449 | if (ctxInfo.renderer() == kAdreno3xx_GrGLRenderer && ctxInfo.driver() == kQualcomm_GrGLDriver && |
| 450 | ctxInfo.driverVersion() > GR_GL_DRIVER_VER(127, 0)) { |
| 451 | fMapBufferType = kNone_MapBufferType; |
| 452 | fMapBufferFlags = kNone_MapFlags; |
| 453 | } |
| 454 | |
jvanverth | d7a2c1f | 2015-12-07 07:36:44 -0800 | [diff] [blame] | 455 | if (kGL_GrGLStandard == standard) { |
| 456 | if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_pixel_buffer_object")) { |
| 457 | fTransferBufferType = kPBO_TransferBufferType; |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 458 | } |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 459 | } else if (kANGLE_GrGLDriver != ctxInfo.driver()) { // TODO: re-enable for ANGLE |
| 460 | if (version >= GR_GL_VER(3, 0) || |
| 461 | (ctxInfo.hasExtension("GL_NV_pixel_buffer_object") && |
| 462 | // GL_EXT_unpack_subimage needed to support subtexture rectangles |
| 463 | ctxInfo.hasExtension("GL_EXT_unpack_subimage"))) { |
jvanverth | d7a2c1f | 2015-12-07 07:36:44 -0800 | [diff] [blame] | 464 | fTransferBufferType = kPBO_TransferBufferType; |
Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 465 | // TODO: get transfer buffers working in Chrome |
| 466 | // } else if (ctxInfo.hasExtension("GL_CHROMIUM_pixel_transfer_buffer_object")) { |
| 467 | // fTransferBufferType = kChromium_TransferBufferType; |
jvanverth | d7a2c1f | 2015-12-07 07:36:44 -0800 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | |
joshualitt | e5b74c6 | 2015-06-01 14:17:47 -0700 | [diff] [blame] | 471 | // On many GPUs, map memory is very expensive, so we effectively disable it here by setting the |
| 472 | // threshold to the maximum unless the client gives us a hint that map memory is cheap. |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 473 | if (fBufferMapThreshold < 0) { |
bsalomon | bc23375 | 2015-06-26 11:38:25 -0700 | [diff] [blame] | 474 | #if 0 |
Brian Salomon | 09d994e | 2016-12-21 11:14:46 -0500 | [diff] [blame] | 475 | // We think mapping on Chromium will be cheaper once we know ahead of time how much space |
| 476 | // we will use for all GrMeshDrawOps. Right now we might wind up mapping a large buffer and |
| 477 | // using a small subset. |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 478 | fBufferMapThreshold = kChromium_GrGLDriver == ctxInfo.driver() ? 0 : SK_MaxS32; |
bsalomon | bc23375 | 2015-06-26 11:38:25 -0700 | [diff] [blame] | 479 | #else |
cdalton | 397536c | 2016-03-25 12:15:03 -0700 | [diff] [blame] | 480 | fBufferMapThreshold = SK_MaxS32; |
bsalomon | bc23375 | 2015-06-26 11:38:25 -0700 | [diff] [blame] | 481 | #endif |
joshualitt | e5b74c6 | 2015-06-01 14:17:47 -0700 | [diff] [blame] | 482 | } |
| 483 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 484 | if (kGL_GrGLStandard == standard) { |
commit-bot@chromium.org | 4744231 | 2013-12-19 16:18:01 +0000 | [diff] [blame] | 485 | fNPOTTextureTileSupport = true; |
| 486 | fMipMapSupport = true; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 487 | } else { |
| 488 | // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only |
commit-bot@chromium.org | 22dd6b9 | 2013-08-16 18:13:48 +0000 | [diff] [blame] | 489 | // ES3 has no limitations. |
| 490 | fNPOTTextureTileSupport = ctxInfo.version() >= GR_GL_VER(3,0) || |
| 491 | ctxInfo.hasExtension("GL_OES_texture_npot"); |
commit-bot@chromium.org | 4744231 | 2013-12-19 16:18:01 +0000 | [diff] [blame] | 492 | // ES2 supports MIP mapping for POT textures but our caps don't allow for limited MIP |
| 493 | // support. The OES extension or ES 3.0 allow for MIPS on NPOT textures. So, apparently, |
| 494 | // does the undocumented GL_IMG_texture_npot extension. This extension does not seem to |
| 495 | // to alllow arbitrary wrap modes, however. |
| 496 | fMipMapSupport = fNPOTTextureTileSupport || ctxInfo.hasExtension("GL_IMG_texture_npot"); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 497 | } |
| 498 | |
bsalomon | e72bd02 | 2015-10-26 07:33:03 -0700 | [diff] [blame] | 499 | // Using MIPs on this GPU seems to be a source of trouble. |
| 500 | if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer()) { |
| 501 | fMipMapSupport = false; |
| 502 | } |
| 503 | |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 504 | GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_SIZE, &fMaxTextureSize); |
| 505 | GR_GL_GetIntegerv(gli, GR_GL_MAX_RENDERBUFFER_SIZE, &fMaxRenderTargetSize); |
| 506 | // Our render targets are always created with textures as the color |
| 507 | // attachment, hence this min: |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 508 | fMaxRenderTargetSize = SkTMin(fMaxTextureSize, fMaxRenderTargetSize); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 509 | |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 510 | fGpuTracingSupport = ctxInfo.hasExtension("GL_EXT_debug_marker"); |
| 511 | |
robertphillips@google.com | 8995b7b | 2013-11-01 15:03:34 +0000 | [diff] [blame] | 512 | // Disable scratch texture reuse on Mali and Adreno devices |
brianosman | 5702c86 | 2016-08-09 14:02:13 -0700 | [diff] [blame] | 513 | fReuseScratchTextures = kARM_GrGLVendor != ctxInfo.vendor(); |
commit-bot@chromium.org | b835652 | 2013-07-18 22:26:39 +0000 | [diff] [blame] | 514 | |
robertphillips | 1b8e1b5 | 2015-06-24 06:54:10 -0700 | [diff] [blame] | 515 | #if 0 |
| 516 | fReuseScratchBuffers = kARM_GrGLVendor != ctxInfo.vendor() && |
| 517 | kQualcomm_GrGLVendor != ctxInfo.vendor(); |
| 518 | #endif |
| 519 | |
csmartdalton | 9bc1187 | 2016-08-09 12:42:47 -0700 | [diff] [blame] | 520 | if (ctxInfo.hasExtension("GL_EXT_window_rectangles")) { |
| 521 | GR_GL_GetIntegerv(gli, GR_GL_MAX_WINDOW_RECTANGLES, &fMaxWindowRectangles); |
csmartdalton | 9bc1187 | 2016-08-09 12:42:47 -0700 | [diff] [blame] | 522 | } |
| 523 | |
bsalomon | 63b2196 | 2014-11-05 07:05:34 -0800 | [diff] [blame] | 524 | if (kPowerVR54x_GrGLRenderer == ctxInfo.renderer() || |
bsalomon | e702d97 | 2015-01-29 10:07:32 -0800 | [diff] [blame] | 525 | kPowerVRRogue_GrGLRenderer == ctxInfo.renderer() || |
Brian Salomon | 1b52df3 | 2017-03-24 18:49:09 -0400 | [diff] [blame] | 526 | (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() && |
| 527 | ctxInfo.driver() != kChromium_GrGLDriver)) { |
bsalomon | 63b2196 | 2014-11-05 07:05:34 -0800 | [diff] [blame] | 528 | fUseDrawInsteadOfClear = true; |
| 529 | } |
| 530 | |
joshualitt | 83bc229 | 2015-06-18 14:18:02 -0700 | [diff] [blame] | 531 | if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer()) { |
Brian Salomon | b52fa02 | 2017-06-07 09:42:52 -0400 | [diff] [blame] | 532 | // This is known to be fixed sometime between driver 145.0 and 219.0 |
| 533 | if (ctxInfo.driver() == kQualcomm_GrGLDriver && |
| 534 | ctxInfo.driverVersion() <= GR_GL_DRIVER_VER(219, 0)) { |
| 535 | fUseDrawToClearStencilClip = true; |
| 536 | } |
Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 537 | fDisallowTexSubImageForUnormConfigTexturesEverBoundToFBO = true; |
joshualitt | 83bc229 | 2015-06-18 14:18:02 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 540 | // This was reproduced on the following configurations: |
| 541 | // - A Galaxy J5 (Adreno 306) running Android 6 with driver 140.0 |
| 542 | // - A Nexus 7 2013 (Adreno 320) running Android 5 with driver 104.0 |
| 543 | // - A Nexus 7 2013 (Adreno 320) running Android 6 with driver 127.0 |
Brian Salomon | 6d9c88b | 2017-06-12 10:24:42 -0400 | [diff] [blame] | 544 | // - A Nexus 5 (Adreno 330) running Android 6 with driver 127.0 |
Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 545 | // and not produced on: |
| 546 | // - A Nexus 7 2013 (Adreno 320) running Android 4 with driver 53.0 |
Brian Salomon | 6d9c88b | 2017-06-12 10:24:42 -0400 | [diff] [blame] | 547 | // The particular lines that get dropped from test images varies across different devices. |
Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 548 | if (kAdreno3xx_GrGLRenderer == ctxInfo.renderer() && kQualcomm_GrGLDriver == ctxInfo.driver() && |
| 549 | ctxInfo.driverVersion() > GR_GL_DRIVER_VER(53, 0)) { |
Brian Salomon | 6d9c88b | 2017-06-12 10:24:42 -0400 | [diff] [blame] | 550 | fRequiresCullFaceEnableDisableWhenDrawingLinesAfterNonLines = true; |
Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 551 | } |
| 552 | |
bsalomon | babafcc | 2016-02-16 11:36:47 -0800 | [diff] [blame] | 553 | // Texture uploads sometimes seem to be ignored to textures bound to FBOS on Tegra3. |
| 554 | if (kTegra3_GrGLRenderer == ctxInfo.renderer()) { |
Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 555 | fDisallowTexSubImageForUnormConfigTexturesEverBoundToFBO = true; |
bsalomon | babafcc | 2016-02-16 11:36:47 -0800 | [diff] [blame] | 556 | fUseDrawInsteadOfAllRenderTargetWrites = true; |
| 557 | } |
| 558 | |
robertphillips | 6392668 | 2015-08-20 09:39:02 -0700 | [diff] [blame] | 559 | #ifdef SK_BUILD_FOR_WIN |
| 560 | // On ANGLE deferring flushes can lead to GPU starvation |
| 561 | fPreferVRAMUseOverFlushes = !isANGLE; |
| 562 | #endif |
| 563 | |
bsalomon | 7dea7b7 | 2015-08-19 08:26:51 -0700 | [diff] [blame] | 564 | if (kChromium_GrGLDriver == ctxInfo.driver()) { |
| 565 | fMustClearUploadedBufferData = true; |
| 566 | } |
| 567 | |
bsalomon | d08ea5f | 2015-02-20 06:58:13 -0800 | [diff] [blame] | 568 | if (kGL_GrGLStandard == standard) { |
| 569 | // ARB allows mixed size FBO attachments, EXT does not. |
| 570 | if (ctxInfo.version() >= GR_GL_VER(3, 0) || |
| 571 | ctxInfo.hasExtension("GL_ARB_framebuffer_object")) { |
| 572 | fOversizedStencilSupport = true; |
| 573 | } else { |
| 574 | SkASSERT(ctxInfo.hasExtension("GL_EXT_framebuffer_object")); |
| 575 | } |
| 576 | } else { |
| 577 | // ES 3.0 supports mixed size FBO attachments, 2.0 does not. |
| 578 | fOversizedStencilSupport = ctxInfo.version() >= GR_GL_VER(3, 0); |
| 579 | } |
| 580 | |
joshualitt | 5800155 | 2015-06-26 12:46:36 -0700 | [diff] [blame] | 581 | if (kGL_GrGLStandard == standard) { |
csmartdalton | 5cebf8c | 2016-06-03 08:28:47 -0700 | [diff] [blame] | 582 | fDrawIndirectSupport = version >= GR_GL_VER(4,0) || |
| 583 | ctxInfo.hasExtension("GL_ARB_draw_indirect"); |
| 584 | fBaseInstanceSupport = version >= GR_GL_VER(4,2); |
| 585 | fMultiDrawIndirectSupport = version >= GR_GL_VER(4,3) || |
csmartdalton | 4c18b62 | 2016-07-29 12:19:28 -0700 | [diff] [blame] | 586 | (fDrawIndirectSupport && |
| 587 | !fBaseInstanceSupport && // The ARB extension has no base inst. |
csmartdalton | 5cebf8c | 2016-06-03 08:28:47 -0700 | [diff] [blame] | 588 | ctxInfo.hasExtension("GL_ARB_multi_draw_indirect")); |
bsalomon | fc9527a | 2016-08-29 09:18:39 -0700 | [diff] [blame] | 589 | fDrawRangeElementsSupport = version >= GR_GL_VER(2,0); |
cdalton | 06604b9 | 2016-02-05 10:09:51 -0800 | [diff] [blame] | 590 | } else { |
| 591 | fDrawIndirectSupport = version >= GR_GL_VER(3,1); |
csmartdalton | 4c18b62 | 2016-07-29 12:19:28 -0700 | [diff] [blame] | 592 | fMultiDrawIndirectSupport = fDrawIndirectSupport && |
| 593 | ctxInfo.hasExtension("GL_EXT_multi_draw_indirect"); |
| 594 | fBaseInstanceSupport = fDrawIndirectSupport && |
| 595 | ctxInfo.hasExtension("GL_EXT_base_instance"); |
bsalomon | fc9527a | 2016-08-29 09:18:39 -0700 | [diff] [blame] | 596 | fDrawRangeElementsSupport = version >= GR_GL_VER(3,0); |
cdalton | 06604b9 | 2016-02-05 10:09:51 -0800 | [diff] [blame] | 597 | } |
| 598 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 599 | this->initShaderPrecisionTable(ctxInfo, gli, shaderCaps); |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 600 | |
| 601 | if (contextOptions.fUseShaderSwizzling) { |
| 602 | fTextureSwizzleSupport = false; |
| 603 | } |
| 604 | |
ethannicholas | 28ef445 | 2016-03-25 09:26:03 -0700 | [diff] [blame] | 605 | if (kGL_GrGLStandard == standard) { |
Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 606 | if ((version >= GR_GL_VER(4, 0) || ctxInfo.hasExtension("GL_ARB_sample_shading")) && |
ethannicholas | 6536ae5 | 2016-05-02 12:16:49 -0700 | [diff] [blame] | 607 | ctxInfo.vendor() != kIntel_GrGLVendor) { |
ethannicholas | 28ef445 | 2016-03-25 09:26:03 -0700 | [diff] [blame] | 608 | fSampleShadingSupport = true; |
| 609 | } |
| 610 | } else if (ctxInfo.hasExtension("GL_OES_sample_shading")) { |
| 611 | fSampleShadingSupport = true; |
| 612 | } |
| 613 | |
jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 614 | // TODO: support CHROMIUM_sync_point and maybe KHR_fence_sync |
| 615 | if (kGL_GrGLStandard == standard) { |
| 616 | if (version >= GR_GL_VER(3, 2) || ctxInfo.hasExtension("GL_ARB_sync")) { |
| 617 | fFenceSyncSupport = true; |
| 618 | } |
Brian Osman | 93a2346 | 2017-06-21 15:13:39 -0400 | [diff] [blame] | 619 | } else if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_APPLE_sync")) { |
jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 620 | fFenceSyncSupport = true; |
| 621 | } |
| 622 | |
Brian Osman | 0eb4ecb | 2017-05-16 13:30:11 -0400 | [diff] [blame] | 623 | // Safely moving textures between contexts requires fences. |
Brian Osman | 2c2bc11 | 2017-02-28 10:02:49 -0500 | [diff] [blame] | 624 | fCrossContextTextureSupport = fFenceSyncSupport; |
Brian Osman | 2c2bc11 | 2017-02-28 10:02:49 -0500 | [diff] [blame] | 625 | |
brianosman | 131ff13 | 2016-06-07 14:22:44 -0700 | [diff] [blame] | 626 | // We support manual mip-map generation (via iterative downsampling draw calls). This fixes |
| 627 | // bugs on some cards/drivers that produce incorrect mip-maps for sRGB textures when using |
| 628 | // glGenerateMipmap. Our implementation requires mip-level sampling control. Additionally, |
| 629 | // it can be much slower (especially on mobile GPUs), so we opt-in only when necessary: |
brianosman | 09563ce | 2016-06-02 08:59:34 -0700 | [diff] [blame] | 630 | if (fMipMapLevelAndLodControlSupport && |
brianosman | 9a3fbf7 | 2016-06-09 13:11:08 -0700 | [diff] [blame] | 631 | (contextOptions.fDoManualMipmapping || |
| 632 | (kIntel_GrGLVendor == ctxInfo.vendor()) || |
brianosman | 131ff13 | 2016-06-07 14:22:44 -0700 | [diff] [blame] | 633 | (kNVIDIA_GrGLDriver == ctxInfo.driver() && isMAC) || |
| 634 | (kATI_GrGLVendor == ctxInfo.vendor()))) { |
brianosman | 09563ce | 2016-06-02 08:59:34 -0700 | [diff] [blame] | 635 | fDoManualMipmapping = true; |
| 636 | } |
| 637 | |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 638 | fSRGBDecodeDisableSupport = ctxInfo.hasExtension("GL_EXT_texture_sRGB_decode"); |
brianosman | 851c238 | 2016-12-07 10:03:25 -0800 | [diff] [blame] | 639 | fSRGBDecodeDisableAffectsMipmaps = fSRGBDecodeDisableSupport && |
| 640 | kChromium_GrGLDriver != ctxInfo.driver(); |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 641 | |
Brian Salomon | 028a9a5 | 2017-05-11 11:39:08 -0400 | [diff] [blame] | 642 | // See http://crbug.com/710443 |
| 643 | #ifdef SK_BUILD_FOR_MAC |
| 644 | if (kIntel6xxx_GrGLRenderer == ctxInfo.renderer()) { |
Eric Karl | aeaf22b | 2017-05-18 15:08:09 -0700 | [diff] [blame] | 645 | fClearToBoundaryValuesIsBroken = true; |
Brian Salomon | 028a9a5 | 2017-05-11 11:39:08 -0400 | [diff] [blame] | 646 | } |
| 647 | #endif |
Chris Dalton | 9926f4b | 2017-05-17 15:15:50 -0600 | [diff] [blame] | 648 | if (kQualcomm_GrGLVendor == ctxInfo.vendor()) { |
| 649 | fDrawArraysBaseVertexIsBroken = true; |
| 650 | } |
Brian Salomon | 028a9a5 | 2017-05-11 11:39:08 -0400 | [diff] [blame] | 651 | |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 652 | // Requires fTextureRedSupport, fTextureSwizzleSupport, msaa support, ES compatibility have |
| 653 | // already been detected. |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 654 | this->initConfigTable(contextOptions, ctxInfo, gli, shaderCaps); |
cdalton | 4cd6713 | 2015-06-10 19:23:46 -0700 | [diff] [blame] | 655 | |
| 656 | this->applyOptionsOverrides(contextOptions); |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 657 | shaderCaps->applyOptionsOverrides(contextOptions); |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 658 | } |
| 659 | |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 660 | const char* get_glsl_version_decl_string(GrGLStandard standard, GrGLSLGeneration generation, |
| 661 | bool isCoreProfile) { |
| 662 | switch (generation) { |
| 663 | case k110_GrGLSLGeneration: |
| 664 | if (kGLES_GrGLStandard == standard) { |
| 665 | // ES2s shader language is based on version 1.20 but is version |
| 666 | // 1.00 of the ES language. |
| 667 | return "#version 100\n"; |
| 668 | } else { |
| 669 | SkASSERT(kGL_GrGLStandard == standard); |
| 670 | return "#version 110\n"; |
| 671 | } |
| 672 | case k130_GrGLSLGeneration: |
| 673 | SkASSERT(kGL_GrGLStandard == standard); |
| 674 | return "#version 130\n"; |
| 675 | case k140_GrGLSLGeneration: |
| 676 | SkASSERT(kGL_GrGLStandard == standard); |
| 677 | return "#version 140\n"; |
| 678 | case k150_GrGLSLGeneration: |
| 679 | SkASSERT(kGL_GrGLStandard == standard); |
| 680 | if (isCoreProfile) { |
| 681 | return "#version 150\n"; |
| 682 | } else { |
| 683 | return "#version 150 compatibility\n"; |
| 684 | } |
| 685 | case k330_GrGLSLGeneration: |
| 686 | if (kGLES_GrGLStandard == standard) { |
| 687 | return "#version 300 es\n"; |
| 688 | } else { |
| 689 | SkASSERT(kGL_GrGLStandard == standard); |
| 690 | if (isCoreProfile) { |
| 691 | return "#version 330\n"; |
| 692 | } else { |
| 693 | return "#version 330 compatibility\n"; |
| 694 | } |
| 695 | } |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 696 | case k400_GrGLSLGeneration: |
| 697 | SkASSERT(kGL_GrGLStandard == standard); |
| 698 | if (isCoreProfile) { |
| 699 | return "#version 400\n"; |
| 700 | } else { |
| 701 | return "#version 400 compatibility\n"; |
| 702 | } |
Brian Salomon | d327e8c | 2016-11-15 13:26:08 -0500 | [diff] [blame] | 703 | case k420_GrGLSLGeneration: |
| 704 | SkASSERT(kGL_GrGLStandard == standard); |
| 705 | if (isCoreProfile) { |
| 706 | return "#version 420\n"; |
| 707 | } |
| 708 | else { |
| 709 | return "#version 420 compatibility\n"; |
| 710 | } |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 711 | case k310es_GrGLSLGeneration: |
| 712 | SkASSERT(kGLES_GrGLStandard == standard); |
| 713 | return "#version 310 es\n"; |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 714 | case k320es_GrGLSLGeneration: |
| 715 | SkASSERT(kGLES_GrGLStandard == standard); |
| 716 | return "#version 320 es\n"; |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 717 | } |
| 718 | return "<no version>"; |
| 719 | } |
| 720 | |
egdaniel | 05ded89 | 2015-10-26 07:38:05 -0700 | [diff] [blame] | 721 | void GrGLCaps::initGLSL(const GrGLContextInfo& ctxInfo) { |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 722 | GrGLStandard standard = ctxInfo.standard(); |
| 723 | GrGLVersion version = ctxInfo.version(); |
| 724 | |
| 725 | /************************************************************************** |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 726 | * Caps specific to GrShaderCaps |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 727 | **************************************************************************/ |
| 728 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 729 | GrShaderCaps* shaderCaps = fShaderCaps.get(); |
| 730 | shaderCaps->fGLSLGeneration = ctxInfo.glslGeneration(); |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 731 | if (kGLES_GrGLStandard == standard) { |
| 732 | if (ctxInfo.hasExtension("GL_EXT_shader_framebuffer_fetch")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 733 | shaderCaps->fFBFetchNeedsCustomOutput = (version >= GR_GL_VER(3, 0)); |
| 734 | shaderCaps->fFBFetchSupport = true; |
| 735 | shaderCaps->fFBFetchColorName = "gl_LastFragData[0]"; |
| 736 | shaderCaps->fFBFetchExtensionString = "GL_EXT_shader_framebuffer_fetch"; |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 737 | } |
| 738 | else if (ctxInfo.hasExtension("GL_NV_shader_framebuffer_fetch")) { |
| 739 | // Actually, we haven't seen an ES3.0 device with this extension yet, so we don't know |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 740 | shaderCaps->fFBFetchNeedsCustomOutput = false; |
| 741 | shaderCaps->fFBFetchSupport = true; |
| 742 | shaderCaps->fFBFetchColorName = "gl_LastFragData[0]"; |
| 743 | shaderCaps->fFBFetchExtensionString = "GL_NV_shader_framebuffer_fetch"; |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 744 | } |
| 745 | else if (ctxInfo.hasExtension("GL_ARM_shader_framebuffer_fetch")) { |
| 746 | // The arm extension also requires an additional flag which we will set onResetContext |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 747 | shaderCaps->fFBFetchNeedsCustomOutput = false; |
| 748 | shaderCaps->fFBFetchSupport = true; |
| 749 | shaderCaps->fFBFetchColorName = "gl_LastFragColorARM"; |
| 750 | shaderCaps->fFBFetchExtensionString = "GL_ARM_shader_framebuffer_fetch"; |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 751 | } |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 752 | shaderCaps->fUsesPrecisionModifiers = true; |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 753 | } |
| 754 | |
egdaniel | 7517e45 | 2016-09-20 13:00:26 -0700 | [diff] [blame] | 755 | // Currently the extension is advertised but fb fetch is broken on 500 series Adrenos like the |
| 756 | // Galaxy S7. |
| 757 | // TODO: Once this is fixed we can update the check here to look at a driver version number too. |
| 758 | if (kAdreno5xx_GrGLRenderer == ctxInfo.renderer()) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 759 | shaderCaps->fFBFetchSupport = false; |
egdaniel | 7517e45 | 2016-09-20 13:00:26 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 762 | shaderCaps->fBindlessTextureSupport = ctxInfo.hasExtension("GL_NV_bindless_texture"); |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 763 | |
cdalton | c08f196 | 2016-02-12 12:14:06 -0800 | [diff] [blame] | 764 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 765 | shaderCaps->fFlatInterpolationSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration; |
cdalton | c08f196 | 2016-02-12 12:14:06 -0800 | [diff] [blame] | 766 | } else { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 767 | shaderCaps->fFlatInterpolationSupport = |
cdalton | c08f196 | 2016-02-12 12:14:06 -0800 | [diff] [blame] | 768 | ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // This is the value for GLSL ES 3.0. |
| 769 | } |
| 770 | |
| 771 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 772 | shaderCaps->fNoPerspectiveInterpolationSupport = |
cdalton | c08f196 | 2016-02-12 12:14:06 -0800 | [diff] [blame] | 773 | ctxInfo.glslGeneration() >= k130_GrGLSLGeneration; |
| 774 | } else { |
| 775 | if (ctxInfo.hasExtension("GL_NV_shader_noperspective_interpolation")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 776 | shaderCaps->fNoPerspectiveInterpolationSupport = true; |
| 777 | shaderCaps->fNoPerspectiveInterpolationExtensionString = |
cdalton | c08f196 | 2016-02-12 12:14:06 -0800 | [diff] [blame] | 778 | "GL_NV_shader_noperspective_interpolation"; |
| 779 | } |
| 780 | } |
| 781 | |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 782 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 783 | shaderCaps->fMultisampleInterpolationSupport = |
cdalton | 4a98cdb | 2016-03-01 12:12:20 -0800 | [diff] [blame] | 784 | ctxInfo.glslGeneration() >= k400_GrGLSLGeneration; |
| 785 | } else { |
| 786 | if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 787 | shaderCaps->fMultisampleInterpolationSupport = true; |
cdalton | 4a98cdb | 2016-03-01 12:12:20 -0800 | [diff] [blame] | 788 | } else if (ctxInfo.hasExtension("GL_OES_shader_multisample_interpolation")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 789 | shaderCaps->fMultisampleInterpolationSupport = true; |
| 790 | shaderCaps->fMultisampleInterpolationExtensionString = |
cdalton | 4a98cdb | 2016-03-01 12:12:20 -0800 | [diff] [blame] | 791 | "GL_OES_shader_multisample_interpolation"; |
| 792 | } |
| 793 | } |
| 794 | |
| 795 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 796 | shaderCaps->fSampleVariablesSupport = ctxInfo.glslGeneration() >= k400_GrGLSLGeneration; |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 797 | } else { |
| 798 | if (ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 799 | shaderCaps->fSampleVariablesSupport = true; |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 800 | } else if (ctxInfo.hasExtension("GL_OES_sample_variables")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 801 | shaderCaps->fSampleVariablesSupport = true; |
| 802 | shaderCaps->fSampleVariablesExtensionString = "GL_OES_sample_variables"; |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 803 | } |
| 804 | } |
| 805 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 806 | if (shaderCaps->fSampleVariablesSupport && |
csmartdalton | f848c9c | 2016-06-15 12:42:13 -0700 | [diff] [blame] | 807 | ctxInfo.hasExtension("GL_NV_sample_mask_override_coverage")) { |
| 808 | // Pre-361 NVIDIA has a bug with NV_sample_mask_override_coverage. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 809 | shaderCaps->fSampleMaskOverrideCoverageSupport = |
csmartdalton | f848c9c | 2016-06-15 12:42:13 -0700 | [diff] [blame] | 810 | kNVIDIA_GrGLDriver != ctxInfo.driver() || |
| 811 | ctxInfo.driverVersion() >= GR_GL_DRIVER_VER(361,00); |
cdalton | 33ad701 | 2016-02-22 07:55:44 -0800 | [diff] [blame] | 812 | } |
| 813 | |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 814 | // Adreno GPUs have a tendency to drop tiles when there is a divide-by-zero in a shader |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 815 | shaderCaps->fDropsTileOnZeroDivide = kQualcomm_GrGLVendor == ctxInfo.vendor(); |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 816 | |
| 817 | // On the NexusS and GalaxyNexus, the use of 'any' causes the compilation error "Calls to any |
| 818 | // function that may require a gradient calculation inside a conditional block may return |
| 819 | // undefined results". This appears to be an issue with the 'any' call since even the simple |
| 820 | // "result=black; if (any()) result=white;" code fails to compile. This issue comes into play |
| 821 | // from our GrTextureDomain processor. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 822 | shaderCaps->fCanUseAnyFunctionInShader = kImagination_GrGLVendor != ctxInfo.vendor(); |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 823 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 824 | shaderCaps->fVersionDeclString = get_glsl_version_decl_string(standard, |
| 825 | shaderCaps->fGLSLGeneration, |
| 826 | fIsCoreProfile); |
egdaniel | 574a4c1 | 2015-11-02 06:22:44 -0800 | [diff] [blame] | 827 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 828 | if (kGLES_GrGLStandard == standard && k110_GrGLSLGeneration == shaderCaps->fGLSLGeneration) { |
| 829 | shaderCaps->fShaderDerivativeExtensionString = "GL_OES_standard_derivatives"; |
egdaniel | 574a4c1 | 2015-11-02 06:22:44 -0800 | [diff] [blame] | 830 | } |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 831 | |
| 832 | // Frag Coords Convention support is not part of ES |
| 833 | // Known issue on at least some Intel platforms: |
| 834 | // http://code.google.com/p/skia/issues/detail?id=946 |
| 835 | if (kIntel_GrGLVendor != ctxInfo.vendor() && |
| 836 | kGLES_GrGLStandard != standard && |
| 837 | (ctxInfo.glslGeneration() >= k150_GrGLSLGeneration || |
| 838 | ctxInfo.hasExtension("GL_ARB_fragment_coord_conventions"))) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 839 | shaderCaps->fFragCoordConventionsExtensionString = "GL_ARB_fragment_coord_conventions"; |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | if (kGLES_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 843 | shaderCaps->fSecondaryOutputExtensionString = "GL_EXT_blend_func_extended"; |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 844 | } |
| 845 | |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 846 | if (ctxInfo.hasExtension("GL_OES_EGL_image_external")) { |
| 847 | if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 848 | shaderCaps->fExternalTextureSupport = true; |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 849 | } else if (ctxInfo.hasExtension("GL_OES_EGL_image_external_essl3") || |
| 850 | ctxInfo.hasExtension("OES_EGL_image_external_essl3")) { |
| 851 | // At least one driver has been found that has this extension without the "GL_" prefix. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 852 | shaderCaps->fExternalTextureSupport = true; |
cdalton | 9c3f143 | 2016-03-11 10:07:37 -0800 | [diff] [blame] | 853 | } |
| 854 | } |
| 855 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 856 | if (shaderCaps->fExternalTextureSupport) { |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 857 | if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 858 | shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external"; |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 859 | } else { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 860 | shaderCaps->fExternalTextureExtensionString = "GL_OES_EGL_image_external_essl3"; |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 861 | } |
| 862 | } |
| 863 | |
cdalton | c04ce67 | 2016-03-11 14:07:38 -0800 | [diff] [blame] | 864 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 865 | shaderCaps->fTexelFetchSupport = ctxInfo.glslGeneration() >= k130_GrGLSLGeneration; |
cdalton | c04ce67 | 2016-03-11 14:07:38 -0800 | [diff] [blame] | 866 | } else { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 867 | shaderCaps->fTexelFetchSupport = |
cdalton | f8a6ce8 | 2016-04-11 13:02:05 -0700 | [diff] [blame] | 868 | ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; // We use this value for GLSL ES 3.0. |
| 869 | } |
| 870 | |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 871 | if (shaderCaps->fTexelFetchSupport) { |
cdalton | f8a6ce8 | 2016-04-11 13:02:05 -0700 | [diff] [blame] | 872 | if (kGL_GrGLStandard == standard) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 873 | shaderCaps->fTexelBufferSupport = ctxInfo.version() >= GR_GL_VER(3, 1) && |
cdalton | f8a6ce8 | 2016-04-11 13:02:05 -0700 | [diff] [blame] | 874 | ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; |
| 875 | } else { |
| 876 | if (ctxInfo.version() >= GR_GL_VER(3, 2) && |
| 877 | ctxInfo.glslGeneration() >= k320es_GrGLSLGeneration) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 878 | shaderCaps->fTexelBufferSupport = true; |
cdalton | f8a6ce8 | 2016-04-11 13:02:05 -0700 | [diff] [blame] | 879 | } else if (ctxInfo.hasExtension("GL_OES_texture_buffer")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 880 | shaderCaps->fTexelBufferSupport = true; |
| 881 | shaderCaps->fTexelBufferExtensionString = "GL_OES_texture_buffer"; |
cdalton | f8a6ce8 | 2016-04-11 13:02:05 -0700 | [diff] [blame] | 882 | } else if (ctxInfo.hasExtension("GL_EXT_texture_buffer")) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 883 | shaderCaps->fTexelBufferSupport = true; |
| 884 | shaderCaps->fTexelBufferExtensionString = "GL_EXT_texture_buffer"; |
cdalton | f8a6ce8 | 2016-04-11 13:02:05 -0700 | [diff] [blame] | 885 | } |
cdalton | c04ce67 | 2016-03-11 14:07:38 -0800 | [diff] [blame] | 886 | } |
| 887 | } |
| 888 | |
Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 889 | if (kGL_GrGLStandard == standard) { |
| 890 | shaderCaps->fVertexIDSupport = true; |
| 891 | } else { |
| 892 | // Desktop GLSL 3.30 == ES GLSL 3.00. |
| 893 | shaderCaps->fVertexIDSupport = ctxInfo.glslGeneration() >= k330_GrGLSLGeneration; |
| 894 | } |
| 895 | |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 896 | // The Tegra3 compiler will sometimes never return if we have min(abs(x), 1.0), so we must do |
| 897 | // the abs first in a separate expression. |
| 898 | if (kTegra3_GrGLRenderer == ctxInfo.renderer()) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 899 | shaderCaps->fCanUseMinAndAbsTogether = false; |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 900 | } |
| 901 | |
bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 902 | // On Intel GPU there is an issue where it reads the second argument to atan "- %s.x" as an int |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 903 | // thus must us -1.0 * %s.x to work correctly |
| 904 | if (kIntel_GrGLVendor == ctxInfo.vendor()) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 905 | shaderCaps->fMustForceNegatedAtanParamToFloat = true; |
egdaniel | 8dcdedc | 2015-11-11 06:27:20 -0800 | [diff] [blame] | 906 | } |
egdaniel | 138c263 | 2016-08-17 10:59:00 -0700 | [diff] [blame] | 907 | |
| 908 | // On Adreno devices with framebuffer fetch support, there is a bug where they always return |
| 909 | // the original dst color when reading the outColor even after being written to. By using a |
| 910 | // local outColor we can work around this bug. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 911 | if (shaderCaps->fFBFetchSupport && kQualcomm_GrGLVendor == ctxInfo.vendor()) { |
| 912 | shaderCaps->fRequiresLocalOutputColorForFBFetch = true; |
egdaniel | 138c263 | 2016-08-17 10:59:00 -0700 | [diff] [blame] | 913 | } |
csmartdalton | 2e777ea | 2017-02-15 10:41:27 -0700 | [diff] [blame] | 914 | |
| 915 | #ifdef SK_BUILD_FOR_MAC |
| 916 | // On at least some MacBooks, geometry shaders fall apart if we use more than one invocation. To |
| 917 | // work around this, we always use a single invocation and wrap the shader in a loop. The long- |
| 918 | // term plan for this WAR is for it to eventually be baked into SkSL. |
| 919 | shaderCaps->fMustImplementGSInvocationsWithLoop = true; |
| 920 | #endif |
Brian Osman | ac1e496 | 2017-05-25 11:34:38 -0400 | [diff] [blame] | 921 | |
| 922 | // Newer Mali GPUs do incorrect static analysis in specific situations: If there is uniform |
| 923 | // color, and that uniform contains an opaque color, and the output of the shader is only based |
| 924 | // on that uniform plus soemthing un-trackable (like a texture read), the compiler will deduce |
| 925 | // that the shader always outputs opaque values. In that case, it appears to remove the shader |
| 926 | // based blending code it normally injects, turning SrcOver into Src. To fix this, we always |
| 927 | // insert an extra bit of math on the uniform that confuses the compiler just enough... |
| 928 | if (kMaliT_GrGLRenderer == ctxInfo.renderer()) { |
| 929 | shaderCaps->fMustObfuscateUniformColor = true; |
| 930 | } |
egdaniel | 472d44e | 2015-10-22 08:20:00 -0700 | [diff] [blame] | 931 | } |
| 932 | |
kkinnunen | cfe62e3 | 2015-07-01 02:58:50 -0700 | [diff] [blame] | 933 | bool GrGLCaps::hasPathRenderingSupport(const GrGLContextInfo& ctxInfo, const GrGLInterface* gli) { |
kkinnunen | 6bb6d40 | 2015-07-14 10:59:23 -0700 | [diff] [blame] | 934 | bool hasChromiumPathRendering = ctxInfo.hasExtension("GL_CHROMIUM_path_rendering"); |
| 935 | |
| 936 | if (!(ctxInfo.hasExtension("GL_NV_path_rendering") || hasChromiumPathRendering)) { |
kkinnunen | cfe62e3 | 2015-07-01 02:58:50 -0700 | [diff] [blame] | 937 | return false; |
| 938 | } |
kkinnunen | 6bb6d40 | 2015-07-14 10:59:23 -0700 | [diff] [blame] | 939 | |
kkinnunen | cfe62e3 | 2015-07-01 02:58:50 -0700 | [diff] [blame] | 940 | if (kGL_GrGLStandard == ctxInfo.standard()) { |
| 941 | if (ctxInfo.version() < GR_GL_VER(4, 3) && |
| 942 | !ctxInfo.hasExtension("GL_ARB_program_interface_query")) { |
| 943 | return false; |
| 944 | } |
| 945 | } else { |
kkinnunen | 6bb6d40 | 2015-07-14 10:59:23 -0700 | [diff] [blame] | 946 | if (!hasChromiumPathRendering && |
| 947 | ctxInfo.version() < GR_GL_VER(3, 1)) { |
kkinnunen | cfe62e3 | 2015-07-01 02:58:50 -0700 | [diff] [blame] | 948 | return false; |
| 949 | } |
| 950 | } |
| 951 | // We only support v1.3+ of GL_NV_path_rendering which allows us to |
| 952 | // set individual fragment inputs with ProgramPathFragmentInputGen. The API |
| 953 | // additions are detected by checking the existence of the function. |
| 954 | // We also use *Then* functions that not all drivers might have. Check |
| 955 | // them for consistency. |
bsalomon | 9f2dc27 | 2016-02-08 07:22:17 -0800 | [diff] [blame] | 956 | if (!gli->fFunctions.fStencilThenCoverFillPath || |
| 957 | !gli->fFunctions.fStencilThenCoverStrokePath || |
| 958 | !gli->fFunctions.fStencilThenCoverFillPathInstanced || |
| 959 | !gli->fFunctions.fStencilThenCoverStrokePathInstanced || |
| 960 | !gli->fFunctions.fProgramPathFragmentInputGen) { |
kkinnunen | cfe62e3 | 2015-07-01 02:58:50 -0700 | [diff] [blame] | 961 | return false; |
| 962 | } |
| 963 | return true; |
| 964 | } |
bsalomon | 1aa2029 | 2016-01-22 08:16:09 -0800 | [diff] [blame] | 965 | |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 966 | bool GrGLCaps::readPixelsSupported(GrPixelConfig surfaceConfig, |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 967 | GrPixelConfig readConfig, |
bsalomon | 1aa2029 | 2016-01-22 08:16:09 -0800 | [diff] [blame] | 968 | std::function<void (GrGLenum, GrGLint*)> getIntegerv, |
bsalomon | 2c3db32 | 2016-11-08 13:26:24 -0800 | [diff] [blame] | 969 | std::function<bool ()> bindRenderTarget, |
| 970 | std::function<void ()> unbindRenderTarget) const { |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 971 | // If it's not possible to even have a color attachment of surfaceConfig then read pixels is |
bsalomon | e957331 | 2016-01-25 14:33:25 -0800 | [diff] [blame] | 972 | // not supported regardless of readConfig. |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 973 | if (!this->canConfigBeFBOColorAttachment(surfaceConfig)) { |
bsalomon | e957331 | 2016-01-25 14:33:25 -0800 | [diff] [blame] | 974 | return false; |
| 975 | } |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 976 | |
Brian Salomon | bf7b620 | 2016-11-11 16:08:03 -0500 | [diff] [blame] | 977 | if (GrPixelConfigIsSint(surfaceConfig) != GrPixelConfigIsSint(readConfig)) { |
| 978 | return false; |
| 979 | } |
| 980 | |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 981 | GrGLenum readFormat; |
| 982 | GrGLenum readType; |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 983 | if (!this->getReadPixelsFormat(surfaceConfig, readConfig, &readFormat, &readType)) { |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 984 | return false; |
| 985 | } |
| 986 | |
bsalomon | 1aa2029 | 2016-01-22 08:16:09 -0800 | [diff] [blame] | 987 | if (kGL_GrGLStandard == fStandard) { |
bsalomon | e957331 | 2016-01-25 14:33:25 -0800 | [diff] [blame] | 988 | // Some OpenGL implementations allow GL_ALPHA as a format to glReadPixels. However, |
| 989 | // the manual (https://www.opengl.org/sdk/docs/man/) says only these formats are allowed: |
| 990 | // GL_STENCIL_INDEX, GL_DEPTH_COMPONENT, GL_DEPTH_STENCIL, GL_RED, GL_GREEN, GL_BLUE, |
| 991 | // GL_RGB, GL_BGR, GL_RGBA, and GL_BGRA. We check for the subset that we would use. |
Brian Salomon | bf7b620 | 2016-11-11 16:08:03 -0500 | [diff] [blame] | 992 | // The manual does not seem to fully match the spec as the spec allows integer formats |
| 993 | // when the bound color buffer is an integer buffer. It doesn't specify which integer |
| 994 | // formats are allowed, so perhaps all of them are. We only use GL_RGBA_INTEGER currently. |
csmartdalton | 6aa0e11 | 2017-02-08 16:14:11 -0500 | [diff] [blame] | 995 | if (readFormat != GR_GL_RED && readFormat != GR_GL_RG && readFormat != GR_GL_RGB && |
| 996 | readFormat != GR_GL_RGBA && readFormat != GR_GL_BGRA && |
| 997 | readFormat != GR_GL_RGBA_INTEGER) { |
bsalomon | e957331 | 2016-01-25 14:33:25 -0800 | [diff] [blame] | 998 | return false; |
| 999 | } |
| 1000 | // There is also a set of allowed types, but all the types we use are in the set: |
| 1001 | // GL_UNSIGNED_BYTE, GL_BYTE, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, |
| 1002 | // GL_HALF_FLOAT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, |
| 1003 | // GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, |
| 1004 | // GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, |
| 1005 | // GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV,GL_UNSIGNED_INT_10_10_10_2, |
| 1006 | // GL_UNSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_INT_24_8, GL_UNSIGNED_INT_10F_11F_11F_REV, |
| 1007 | // GL_UNSIGNED_INT_5_9_9_9_REV, or GL_FLOAT_32_UNSIGNED_INT_24_8_REV. |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1008 | return true; |
piotaixr | e4b2314 | 2014-10-02 10:57:53 -0700 | [diff] [blame] | 1009 | } |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1010 | |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1011 | // See Section 16.1.2 in the ES 3.2 specification. |
Brian Salomon | bf7b620 | 2016-11-11 16:08:03 -0500 | [diff] [blame] | 1012 | switch (fConfigTable[surfaceConfig].fFormatType) { |
| 1013 | case kNormalizedFixedPoint_FormatType: |
| 1014 | if (GR_GL_RGBA == readFormat && GR_GL_UNSIGNED_BYTE == readType) { |
| 1015 | return true; |
| 1016 | } |
| 1017 | break; |
| 1018 | case kInteger_FormatType: |
| 1019 | if (GR_GL_RGBA_INTEGER == readFormat && GR_GL_INT == readType) { |
| 1020 | return true; |
| 1021 | } |
| 1022 | break; |
| 1023 | case kFloat_FormatType: |
| 1024 | if (GR_GL_RGBA == readFormat && GR_GL_FLOAT == readType) { |
| 1025 | return true; |
| 1026 | } |
| 1027 | break; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1028 | } |
| 1029 | |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1030 | if (0 == fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat) { |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1031 | ReadPixelsFormat* rpFormat = |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1032 | const_cast<ReadPixelsFormat*>(&fConfigTable[surfaceConfig].fSecondReadPixelsFormat); |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1033 | GrGLint format = 0, type = 0; |
bsalomon | 1aa2029 | 2016-01-22 08:16:09 -0800 | [diff] [blame] | 1034 | if (!bindRenderTarget()) { |
| 1035 | return false; |
| 1036 | } |
| 1037 | getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_FORMAT, &format); |
| 1038 | getIntegerv(GR_GL_IMPLEMENTATION_COLOR_READ_TYPE, &type); |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1039 | rpFormat->fFormat = format; |
| 1040 | rpFormat->fType = type; |
bsalomon | 2c3db32 | 2016-11-08 13:26:24 -0800 | [diff] [blame] | 1041 | unbindRenderTarget(); |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1042 | } |
| 1043 | |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1044 | return fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fFormat == readFormat && |
| 1045 | fConfigTable[surfaceConfig].fSecondReadPixelsFormat.fType == readType; |
piotaixr | e4b2314 | 2014-10-02 10:57:53 -0700 | [diff] [blame] | 1046 | } |
| 1047 | |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 1048 | void GrGLCaps::initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo& ctxInfo, |
| 1049 | const GrGLInterface* gli) { |
| 1050 | // We need dual source blending and the ability to disable multisample in order to support mixed |
| 1051 | // samples in every corner case. We only use mixed samples if the stencil-and-cover path |
| 1052 | // renderer is available and enabled; no other path renderers support this feature. |
| 1053 | if (fMultisampleDisableSupport && |
| 1054 | this->shaderCaps()->dualSourceBlendingSupport() && |
| 1055 | this->shaderCaps()->pathRenderingSupport() && |
| 1056 | (contextOptions.fGpuPathRenderers & GrContextOptions::GpuPathRenderers::kStencilAndCover)) { |
| 1057 | fUsesMixedSamples = ctxInfo.hasExtension("GL_NV_framebuffer_mixed_samples") || |
Robert Phillips | 3b3307f | 2017-05-24 07:44:02 -0400 | [diff] [blame] | 1058 | ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_mixed_samples"); |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 1059 | // Workaround NVIDIA bug related to glInvalidateFramebuffer and mixed samples. |
| 1060 | if (fUsesMixedSamples && (kNVIDIA_GrGLDriver == ctxInfo.driver() || |
| 1061 | kChromium_GrGLDriver == ctxInfo.driver())) { |
| 1062 | fDiscardRenderTargetSupport = false; |
| 1063 | fInvalidateFBType = kNone_InvalidateFBType; |
| 1064 | } |
| 1065 | } |
| 1066 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 1067 | if (kGL_GrGLStandard != ctxInfo.standard()) { |
commit-bot@chromium.org | a8e5a06 | 2013-09-05 23:44:09 +0000 | [diff] [blame] | 1068 | // We prefer the EXT/IMG extension over ES3 MSAA because we've observed |
| 1069 | // ES3 driver bugs on at least one device with a tiled GPU (N10). |
| 1070 | if (ctxInfo.hasExtension("GL_EXT_multisampled_render_to_texture")) { |
| 1071 | fMSFBOType = kES_EXT_MsToTexture_MSFBOType; |
| 1072 | } else if (ctxInfo.hasExtension("GL_IMG_multisampled_render_to_texture")) { |
| 1073 | fMSFBOType = kES_IMG_MsToTexture_MSFBOType; |
egdaniel | eed519e | 2016-01-15 11:36:18 -0800 | [diff] [blame] | 1074 | } else if (fUsesMixedSamples) { |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1075 | fMSFBOType = kMixedSamples_MSFBOType; |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1076 | } else if (ctxInfo.version() >= GR_GL_VER(3,0)) { |
| 1077 | fMSFBOType = kStandard_MSFBOType; |
| 1078 | fAlpha8IsRenderable = true; |
| 1079 | } else if (ctxInfo.hasExtension("GL_CHROMIUM_framebuffer_multisample")) { |
Brian Salomon | 00731b4 | 2016-10-14 11:30:51 -0400 | [diff] [blame] | 1080 | fMSFBOType = kStandard_MSFBOType; |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1081 | } else if (ctxInfo.hasExtension("GL_ANGLE_framebuffer_multisample")) { |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1082 | fMSFBOType = kStandard_MSFBOType; |
commit-bot@chromium.org | a8e5a06 | 2013-09-05 23:44:09 +0000 | [diff] [blame] | 1083 | } else if (ctxInfo.hasExtension("GL_APPLE_framebuffer_multisample")) { |
| 1084 | fMSFBOType = kES_Apple_MSFBOType; |
| 1085 | } |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1086 | } else { |
egdaniel | eed519e | 2016-01-15 11:36:18 -0800 | [diff] [blame] | 1087 | if (fUsesMixedSamples) { |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1088 | fMSFBOType = kMixedSamples_MSFBOType; |
Brian Salomon | 00731b4 | 2016-10-14 11:30:51 -0400 | [diff] [blame] | 1089 | } else if (ctxInfo.version() >= GR_GL_VER(3,0) || |
| 1090 | ctxInfo.hasExtension("GL_ARB_framebuffer_object")) { |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1091 | |
Brian Salomon | 00731b4 | 2016-10-14 11:30:51 -0400 | [diff] [blame] | 1092 | fMSFBOType = kStandard_MSFBOType; |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1093 | if (!fIsCoreProfile && ctxInfo.renderer() != kOSMesa_GrGLRenderer) { |
| 1094 | // Core profile removes ALPHA8 support. |
| 1095 | // OpenGL 3.0+ (and GL_ARB_framebuffer_object) supports ALPHA8 as renderable. |
| 1096 | // However, osmesa fails if it is used even when GL_ARB_framebuffer_object is |
| 1097 | // present. |
| 1098 | fAlpha8IsRenderable = true; |
| 1099 | } |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1100 | } else if (ctxInfo.hasExtension("GL_EXT_framebuffer_multisample") && |
| 1101 | ctxInfo.hasExtension("GL_EXT_framebuffer_blit")) { |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1102 | fMSFBOType = kStandard_MSFBOType; |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1103 | } |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1104 | } |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 1105 | |
Robert Phillips | 3b3307f | 2017-05-24 07:44:02 -0400 | [diff] [blame] | 1106 | // We disable MSAA across the board for Intel GPUs |
| 1107 | if (kIntel_GrGLVendor == ctxInfo.vendor()) { |
| 1108 | fMSFBOType = kNone_MSFBOType; |
| 1109 | } |
| 1110 | |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 1111 | if (GrGLCaps::kES_IMG_MsToTexture_MSFBOType == fMSFBOType) { |
| 1112 | GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES_IMG, &fMaxStencilSampleCount); |
| 1113 | } else if (GrGLCaps::kNone_MSFBOType != fMSFBOType) { |
| 1114 | GR_GL_GetIntegerv(gli, GR_GL_MAX_SAMPLES, &fMaxStencilSampleCount); |
| 1115 | } |
| 1116 | // We only have a use for raster multisample if there is coverage modulation from mixed samples. |
| 1117 | if (fUsesMixedSamples && ctxInfo.hasExtension("GL_EXT_raster_multisample")) { |
| 1118 | GR_GL_GetIntegerv(gli, GR_GL_MAX_RASTER_SAMPLES, &fMaxRasterSamples); |
| 1119 | // This is to guard against platforms that may not support as many samples for |
| 1120 | // glRasterSamples as they do for framebuffers. |
| 1121 | fMaxStencilSampleCount = SkTMin(fMaxStencilSampleCount, fMaxRasterSamples); |
| 1122 | } |
| 1123 | fMaxColorSampleCount = fMaxStencilSampleCount; |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1124 | } |
| 1125 | |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1126 | void GrGLCaps::initBlendEqationSupport(const GrGLContextInfo& ctxInfo) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1127 | GrShaderCaps* shaderCaps = static_cast<GrShaderCaps*>(fShaderCaps.get()); |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1128 | |
| 1129 | // Disabling advanced blend on various platforms with major known issues. We also block Chrome |
| 1130 | // for now until its own blacklists can be updated. |
| 1131 | if (kAdreno4xx_GrGLRenderer == ctxInfo.renderer() || |
Greg Daniel | 0ea7d43 | 2016-10-27 16:55:52 -0400 | [diff] [blame] | 1132 | kAdreno5xx_GrGLRenderer == ctxInfo.renderer() || |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1133 | kIntel_GrGLDriver == ctxInfo.driver() || |
joel.liang | 9764c40 | 2015-07-09 19:46:18 -0700 | [diff] [blame] | 1134 | kChromium_GrGLDriver == ctxInfo.driver()) { |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1135 | return; |
| 1136 | } |
| 1137 | |
| 1138 | if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced_coherent")) { |
| 1139 | fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport; |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1140 | shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction; |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1141 | } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced_coherent")) { |
| 1142 | fBlendEquationSupport = kAdvancedCoherent_BlendEquationSupport; |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1143 | shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction; |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1144 | } else if (kNVIDIA_GrGLDriver == ctxInfo.driver() && |
| 1145 | ctxInfo.driverVersion() < GR_GL_DRIVER_VER(337,00)) { |
| 1146 | // Non-coherent advanced blend has an issue on NVIDIA pre 337.00. |
| 1147 | return; |
| 1148 | } else if (ctxInfo.hasExtension("GL_NV_blend_equation_advanced")) { |
| 1149 | fBlendEquationSupport = kAdvanced_BlendEquationSupport; |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1150 | shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kAutomatic_AdvBlendEqInteraction; |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1151 | } else if (ctxInfo.hasExtension("GL_KHR_blend_equation_advanced")) { |
| 1152 | fBlendEquationSupport = kAdvanced_BlendEquationSupport; |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1153 | shaderCaps->fAdvBlendEqInteraction = GrShaderCaps::kGeneralEnable_AdvBlendEqInteraction; |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1154 | // TODO: Use kSpecificEnables_AdvBlendEqInteraction if "blend_support_all_equations" is |
| 1155 | // slow on a particular platform. |
| 1156 | } else { |
| 1157 | return; // No advanced blend support. |
| 1158 | } |
| 1159 | |
| 1160 | SkASSERT(this->advancedBlendEquationSupport()); |
| 1161 | |
csmartdalton | 3b88a03 | 2016-08-04 14:43:49 -0700 | [diff] [blame] | 1162 | if (kNVIDIA_GrGLDriver == ctxInfo.driver() && |
| 1163 | ctxInfo.driverVersion() < GR_GL_DRIVER_VER(355,00)) { |
| 1164 | // Blacklist color-dodge and color-burn on pre-355.00 NVIDIA. |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1165 | fAdvBlendEqBlacklist |= (1 << kColorDodge_GrBlendEquation) | |
| 1166 | (1 << kColorBurn_GrBlendEquation); |
| 1167 | } |
joel.liang | 9764c40 | 2015-07-09 19:46:18 -0700 | [diff] [blame] | 1168 | if (kARM_GrGLVendor == ctxInfo.vendor()) { |
| 1169 | // Blacklist color-burn on ARM until the fix is released. |
| 1170 | fAdvBlendEqBlacklist |= (1 << kColorBurn_GrBlendEquation); |
| 1171 | } |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1174 | namespace { |
egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 1175 | const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount; |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
Eric Karl | 5c77975 | 2017-05-08 12:02:07 -0700 | [diff] [blame] | 1178 | void GrGLCaps::initStencilSupport(const GrGLContextInfo& ctxInfo) { |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1179 | |
| 1180 | // Build up list of legal stencil formats (though perhaps not supported on |
| 1181 | // the particular gpu/driver) from most preferred to least. |
| 1182 | |
| 1183 | // these consts are in order of most preferred to least preferred |
| 1184 | // we don't bother with GL_STENCIL_INDEX1 or GL_DEPTH32F_STENCIL8 |
| 1185 | |
| 1186 | static const StencilFormat |
| 1187 | // internal Format stencil bits total bits packed? |
| 1188 | gS8 = {GR_GL_STENCIL_INDEX8, 8, 8, false}, |
| 1189 | gS16 = {GR_GL_STENCIL_INDEX16, 16, 16, false}, |
| 1190 | gD24S8 = {GR_GL_DEPTH24_STENCIL8, 8, 32, true }, |
| 1191 | gS4 = {GR_GL_STENCIL_INDEX4, 4, 4, false}, |
caryclark@google.com | cf6285b | 2012-06-06 12:09:01 +0000 | [diff] [blame] | 1192 | // gS = {GR_GL_STENCIL_INDEX, kUnknownBitCount, kUnknownBitCount, false}, |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1193 | gDS = {GR_GL_DEPTH_STENCIL, kUnknownBitCount, kUnknownBitCount, true }; |
| 1194 | |
commit-bot@chromium.org | 9e90aed | 2014-01-16 16:35:09 +0000 | [diff] [blame] | 1195 | if (kGL_GrGLStandard == ctxInfo.standard()) { |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1196 | bool supportsPackedDS = |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1197 | ctxInfo.version() >= GR_GL_VER(3,0) || |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1198 | ctxInfo.hasExtension("GL_EXT_packed_depth_stencil") || |
| 1199 | ctxInfo.hasExtension("GL_ARB_framebuffer_object"); |
| 1200 | |
| 1201 | // S1 thru S16 formats are in GL 3.0+, EXT_FBO, and ARB_FBO since we |
| 1202 | // require FBO support we can expect these are legal formats and don't |
| 1203 | // check. These also all support the unsized GL_STENCIL_INDEX. |
| 1204 | fStencilFormats.push_back() = gS8; |
| 1205 | fStencilFormats.push_back() = gS16; |
| 1206 | if (supportsPackedDS) { |
| 1207 | fStencilFormats.push_back() = gD24S8; |
| 1208 | } |
| 1209 | fStencilFormats.push_back() = gS4; |
| 1210 | if (supportsPackedDS) { |
| 1211 | fStencilFormats.push_back() = gDS; |
| 1212 | } |
| 1213 | } else { |
| 1214 | // ES2 has STENCIL_INDEX8 without extensions but requires extensions |
| 1215 | // for other formats. |
| 1216 | // ES doesn't support using the unsized format. |
| 1217 | |
| 1218 | fStencilFormats.push_back() = gS8; |
| 1219 | //fStencilFormats.push_back() = gS16; |
commit-bot@chromium.org | 04c500f | 2013-09-06 15:28:01 +0000 | [diff] [blame] | 1220 | if (ctxInfo.version() >= GR_GL_VER(3,0) || |
| 1221 | ctxInfo.hasExtension("GL_OES_packed_depth_stencil")) { |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1222 | fStencilFormats.push_back() = gD24S8; |
| 1223 | } |
| 1224 | if (ctxInfo.hasExtension("GL_OES_stencil4")) { |
| 1225 | fStencilFormats.push_back() = gS4; |
| 1226 | } |
| 1227 | } |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1228 | } |
| 1229 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1230 | SkString GrGLCaps::dump() const { |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1231 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1232 | SkString r = INHERITED::dump(); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1233 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1234 | r.appendf("--- GL-Specific ---\n"); |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1235 | for (int i = 0; i < fStencilFormats.count(); ++i) { |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1236 | r.appendf("Stencil Format %d, stencil bits: %02d, total bits: %02d\n", |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1237 | i, |
| 1238 | fStencilFormats[i].fStencilBits, |
| 1239 | fStencilFormats[i].fTotalBits); |
| 1240 | } |
| 1241 | |
bsalomon@google.com | 6b0cf02 | 2013-05-03 13:35:14 +0000 | [diff] [blame] | 1242 | static const char* kMSFBOExtStr[] = { |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1243 | "None", |
Brian Salomon | 00731b4 | 2016-10-14 11:30:51 -0400 | [diff] [blame] | 1244 | "Standard", |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1245 | "Apple", |
bsalomon@google.com | 347c382 | 2013-05-01 20:10:01 +0000 | [diff] [blame] | 1246 | "IMG MS To Texture", |
| 1247 | "EXT MS To Texture", |
vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 1248 | "MixedSamples", |
bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1249 | }; |
bsalomon@google.com | 6b0cf02 | 2013-05-03 13:35:14 +0000 | [diff] [blame] | 1250 | GR_STATIC_ASSERT(0 == kNone_MSFBOType); |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1251 | GR_STATIC_ASSERT(1 == kStandard_MSFBOType); |
| 1252 | GR_STATIC_ASSERT(2 == kES_Apple_MSFBOType); |
| 1253 | GR_STATIC_ASSERT(3 == kES_IMG_MsToTexture_MSFBOType); |
| 1254 | GR_STATIC_ASSERT(4 == kES_EXT_MsToTexture_MSFBOType); |
| 1255 | GR_STATIC_ASSERT(5 == kMixedSamples_MSFBOType); |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 1256 | GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMSFBOExtStr) == kLast_MSFBOType + 1); |
bsalomon@google.com | 6b0cf02 | 2013-05-03 13:35:14 +0000 | [diff] [blame] | 1257 | |
commit-bot@chromium.org | 52ffbf6 | 2014-04-02 16:19:33 +0000 | [diff] [blame] | 1258 | static const char* kInvalidateFBTypeStr[] = { |
| 1259 | "None", |
| 1260 | "Discard", |
| 1261 | "Invalidate", |
| 1262 | }; |
| 1263 | GR_STATIC_ASSERT(0 == kNone_InvalidateFBType); |
| 1264 | GR_STATIC_ASSERT(1 == kDiscard_InvalidateFBType); |
| 1265 | GR_STATIC_ASSERT(2 == kInvalidate_InvalidateFBType); |
| 1266 | GR_STATIC_ASSERT(SK_ARRAY_COUNT(kInvalidateFBTypeStr) == kLast_InvalidateFBType + 1); |
bsalomon@google.com | 6b0cf02 | 2013-05-03 13:35:14 +0000 | [diff] [blame] | 1267 | |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 1268 | static const char* kMapBufferTypeStr[] = { |
| 1269 | "None", |
| 1270 | "MapBuffer", |
| 1271 | "MapBufferRange", |
| 1272 | "Chromium", |
| 1273 | }; |
| 1274 | GR_STATIC_ASSERT(0 == kNone_MapBufferType); |
| 1275 | GR_STATIC_ASSERT(1 == kMapBuffer_MapBufferType); |
| 1276 | GR_STATIC_ASSERT(2 == kMapBufferRange_MapBufferType); |
| 1277 | GR_STATIC_ASSERT(3 == kChromium_MapBufferType); |
| 1278 | GR_STATIC_ASSERT(SK_ARRAY_COUNT(kMapBufferTypeStr) == kLast_MapBufferType + 1); |
| 1279 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1280 | r.appendf("Core Profile: %s\n", (fIsCoreProfile ? "YES" : "NO")); |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1281 | r.appendf("MSAA Type: %s\n", kMSFBOExtStr[fMSFBOType]); |
commit-bot@chromium.org | 52ffbf6 | 2014-04-02 16:19:33 +0000 | [diff] [blame] | 1282 | r.appendf("Invalidate FB Type: %s\n", kInvalidateFBTypeStr[fInvalidateFBType]); |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 1283 | r.appendf("Map Buffer Type: %s\n", kMapBufferTypeStr[fMapBufferType]); |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1284 | r.appendf("Max FS Uniform Vectors: %d\n", fMaxFragmentUniformVectors); |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1285 | r.appendf("Unpack Row length support: %s\n", (fUnpackRowLengthSupport ? "YES": "NO")); |
| 1286 | r.appendf("Unpack Flip Y support: %s\n", (fUnpackFlipYSupport ? "YES": "NO")); |
| 1287 | r.appendf("Pack Row length support: %s\n", (fPackRowLengthSupport ? "YES": "NO")); |
| 1288 | r.appendf("Pack Flip Y support: %s\n", (fPackFlipYSupport ? "YES": "NO")); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1289 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1290 | r.appendf("Texture Usage support: %s\n", (fTextureUsageSupport ? "YES": "NO")); |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1291 | r.appendf("GL_R support: %s\n", (fTextureRedSupport ? "YES": "NO")); |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1292 | r.appendf("Alpha8 is renderable: %s\n", (fAlpha8IsRenderable ? "YES" : "NO")); |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1293 | r.appendf("GL_ARB_imaging support: %s\n", (fImagingSupport ? "YES": "NO")); |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1294 | r.appendf("Vertex array object support: %s\n", (fVertexArrayObjectSupport ? "YES": "NO")); |
cdalton | 626e1ff | 2015-06-12 13:56:46 -0700 | [diff] [blame] | 1295 | r.appendf("Direct state access support: %s\n", (fDirectStateAccessSupport ? "YES": "NO")); |
| 1296 | r.appendf("Debug support: %s\n", (fDebugSupport ? "YES": "NO")); |
cdalton | 06604b9 | 2016-02-05 10:09:51 -0800 | [diff] [blame] | 1297 | r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO")); |
| 1298 | r.appendf("Multi draw indirect support: %s\n", (fMultiDrawIndirectSupport ? "YES" : "NO")); |
| 1299 | r.appendf("Base instance support: %s\n", (fBaseInstanceSupport ? "YES" : "NO")); |
robertphillips | 6392668 | 2015-08-20 09:39:02 -0700 | [diff] [blame] | 1300 | r.appendf("RGBA 8888 pixel ops are slow: %s\n", (fRGBA8888PixelsOpsAreSlow ? "YES" : "NO")); |
| 1301 | r.appendf("Partial FBO read is slow: %s\n", (fPartialFBOReadIsSlow ? "YES" : "NO")); |
joshualitt | 7bdd70a | 2015-10-01 06:28:11 -0700 | [diff] [blame] | 1302 | r.appendf("Bind uniform location support: %s\n", (fBindUniformLocationSupport ? "YES" : "NO")); |
bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 1303 | r.appendf("Rectangle texture support: %s\n", (fRectangleTextureSupport? "YES" : "NO")); |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1304 | r.appendf("Texture swizzle support: %s\n", (fTextureSwizzleSupport ? "YES" : "NO")); |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 1305 | r.appendf("BGRA to RGBA readback conversions are slow: %s\n", |
ericrk | b4ecabd | 2016-03-11 15:18:20 -0800 | [diff] [blame] | 1306 | (fRGBAToBGRAReadbackConversionsAreSlow ? "YES" : "NO")); |
Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 1307 | r.appendf("Intermediate texture for partial updates of unorm textures ever bound to FBOs: %s\n", |
| 1308 | fDisallowTexSubImageForUnormConfigTexturesEverBoundToFBO ? "YES" : "NO"); |
| 1309 | r.appendf("Intermediate texture for all updates of textures bound to FBOs: %s\n", |
| 1310 | fUseDrawInsteadOfAllRenderTargetWrites ? "YES" : "NO"); |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1311 | |
| 1312 | r.append("Configs\n-------\n"); |
| 1313 | for (int i = 0; i < kGrPixelConfigCnt; ++i) { |
| 1314 | r.appendf(" cfg: %d flags: 0x%04x, b_internal: 0x%08x s_internal: 0x%08x, e_format: " |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1315 | "0x%08x, e_format_teximage: 0x%08x, e_type: 0x%08x, i_for_teximage: 0x%08x, " |
| 1316 | "i_for_renderbuffer: 0x%08x\n", |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1317 | i, |
| 1318 | fConfigTable[i].fFlags, |
| 1319 | fConfigTable[i].fFormats.fBaseInternalFormat, |
| 1320 | fConfigTable[i].fFormats.fSizedInternalFormat, |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1321 | fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage], |
| 1322 | fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage], |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1323 | fConfigTable[i].fFormats.fExternalType, |
| 1324 | fConfigTable[i].fFormats.fInternalFormatTexImage, |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1325 | fConfigTable[i].fFormats.fInternalFormatRenderbuffer); |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1326 | } |
| 1327 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1328 | return r; |
| 1329 | } |
| 1330 | |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1331 | static GrGLenum precision_to_gl_float_type(GrSLPrecision p) { |
| 1332 | switch (p) { |
| 1333 | case kLow_GrSLPrecision: |
| 1334 | return GR_GL_LOW_FLOAT; |
| 1335 | case kMedium_GrSLPrecision: |
| 1336 | return GR_GL_MEDIUM_FLOAT; |
| 1337 | case kHigh_GrSLPrecision: |
| 1338 | return GR_GL_HIGH_FLOAT; |
Brian Osman | 33aa2c7 | 2017-04-05 09:26:15 -0400 | [diff] [blame] | 1339 | default: |
| 1340 | SkFAIL("Unexpected precision type."); |
| 1341 | return -1; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1342 | } |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1343 | } |
| 1344 | |
| 1345 | static GrGLenum shader_type_to_gl_shader(GrShaderType type) { |
| 1346 | switch (type) { |
| 1347 | case kVertex_GrShaderType: |
| 1348 | return GR_GL_VERTEX_SHADER; |
| 1349 | case kGeometry_GrShaderType: |
| 1350 | return GR_GL_GEOMETRY_SHADER; |
| 1351 | case kFragment_GrShaderType: |
| 1352 | return GR_GL_FRAGMENT_SHADER; |
| 1353 | } |
| 1354 | SkFAIL("Unknown shader type."); |
| 1355 | return -1; |
| 1356 | } |
| 1357 | |
jvanverth | cba99b8 | 2015-06-24 06:59:57 -0700 | [diff] [blame] | 1358 | void GrGLCaps::initShaderPrecisionTable(const GrGLContextInfo& ctxInfo, |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 1359 | const GrGLInterface* intf, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1360 | GrShaderCaps* shaderCaps) { |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1361 | if (kGLES_GrGLStandard == ctxInfo.standard() || ctxInfo.version() >= GR_GL_VER(4, 1) || |
| 1362 | ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) { |
| 1363 | for (int s = 0; s < kGrShaderTypeCount; ++s) { |
| 1364 | if (kGeometry_GrShaderType != s) { |
| 1365 | GrShaderType shaderType = static_cast<GrShaderType>(s); |
| 1366 | GrGLenum glShader = shader_type_to_gl_shader(shaderType); |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 1367 | GrShaderCaps::PrecisionInfo* first = nullptr; |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1368 | shaderCaps->fShaderPrecisionVaries = false; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1369 | for (int p = 0; p < kGrSLPrecisionCount; ++p) { |
| 1370 | GrSLPrecision precision = static_cast<GrSLPrecision>(p); |
| 1371 | GrGLenum glPrecision = precision_to_gl_float_type(precision); |
| 1372 | GrGLint range[2]; |
| 1373 | GrGLint bits; |
| 1374 | GR_GL_GetShaderPrecisionFormat(intf, glShader, glPrecision, range, &bits); |
| 1375 | if (bits) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1376 | shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = range[0]; |
| 1377 | shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = range[1]; |
| 1378 | shaderCaps->fFloatPrecisions[s][p].fBits = bits; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1379 | if (!first) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1380 | first = &shaderCaps->fFloatPrecisions[s][p]; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1381 | } |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1382 | else if (!shaderCaps->fShaderPrecisionVaries) { |
| 1383 | shaderCaps->fShaderPrecisionVaries = |
| 1384 | (*first != shaderCaps->fFloatPrecisions[s][p]); |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1385 | } |
| 1386 | } |
| 1387 | } |
| 1388 | } |
| 1389 | } |
| 1390 | } |
| 1391 | else { |
| 1392 | // We're on a desktop GL that doesn't have precision info. Assume they're all 32bit float. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1393 | shaderCaps->fShaderPrecisionVaries = false; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1394 | for (int s = 0; s < kGrShaderTypeCount; ++s) { |
| 1395 | if (kGeometry_GrShaderType != s) { |
| 1396 | for (int p = 0; p < kGrSLPrecisionCount; ++p) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1397 | shaderCaps->fFloatPrecisions[s][p].fLogRangeLow = 127; |
| 1398 | shaderCaps->fFloatPrecisions[s][p].fLogRangeHigh = 127; |
| 1399 | shaderCaps->fFloatPrecisions[s][p].fBits = 23; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1400 | } |
| 1401 | } |
| 1402 | } |
| 1403 | } |
| 1404 | // GetShaderPrecisionFormat doesn't accept GL_GEOMETRY_SHADER as a shader type. Assume they're |
| 1405 | // the same as the vertex shader. Only fragment shaders were ever allowed to omit support for |
| 1406 | // highp. GS was added after GetShaderPrecisionFormat was added to the list of features that |
| 1407 | // are recommended against. |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1408 | if (shaderCaps->fGeometryShaderSupport) { |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1409 | for (int p = 0; p < kGrSLPrecisionCount; ++p) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1410 | shaderCaps->fFloatPrecisions[kGeometry_GrShaderType][p] = |
| 1411 | shaderCaps->fFloatPrecisions[kVertex_GrShaderType][p]; |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1412 | } |
| 1413 | } |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1414 | shaderCaps->initSamplerPrecisionTable(); |
jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 1415 | } |
| 1416 | |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1417 | bool GrGLCaps::bgraIsInternalFormat() const { |
| 1418 | return fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat == GR_GL_BGRA; |
| 1419 | } |
| 1420 | |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1421 | bool GrGLCaps::getTexImageFormats(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig, |
| 1422 | GrGLenum* internalFormat, GrGLenum* externalFormat, |
| 1423 | GrGLenum* externalType) const { |
| 1424 | if (!this->getExternalFormat(surfaceConfig, externalConfig, kTexImage_ExternalFormatUsage, |
| 1425 | externalFormat, externalType)) { |
| 1426 | return false; |
| 1427 | } |
| 1428 | *internalFormat = fConfigTable[surfaceConfig].fFormats.fInternalFormatTexImage; |
| 1429 | return true; |
| 1430 | } |
| 1431 | |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1432 | bool GrGLCaps::getReadPixelsFormat(GrPixelConfig surfaceConfig, GrPixelConfig externalConfig, |
| 1433 | GrGLenum* externalFormat, GrGLenum* externalType) const { |
| 1434 | if (!this->getExternalFormat(surfaceConfig, externalConfig, kOther_ExternalFormatUsage, |
| 1435 | externalFormat, externalType)) { |
| 1436 | return false; |
| 1437 | } |
| 1438 | return true; |
| 1439 | } |
| 1440 | |
| 1441 | bool GrGLCaps::getRenderbufferFormat(GrPixelConfig config, GrGLenum* internalFormat) const { |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1442 | *internalFormat = fConfigTable[config].fFormats.fInternalFormatRenderbuffer; |
| 1443 | return true; |
| 1444 | } |
| 1445 | |
| 1446 | bool GrGLCaps::getExternalFormat(GrPixelConfig surfaceConfig, GrPixelConfig memoryConfig, |
| 1447 | ExternalFormatUsage usage, GrGLenum* externalFormat, |
| 1448 | GrGLenum* externalType) const { |
| 1449 | SkASSERT(externalFormat && externalType); |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1450 | |
| 1451 | bool surfaceIsAlphaOnly = GrPixelConfigIsAlphaOnly(surfaceConfig); |
| 1452 | bool memoryIsAlphaOnly = GrPixelConfigIsAlphaOnly(memoryConfig); |
| 1453 | |
| 1454 | // We don't currently support moving RGBA data into and out of ALPHA surfaces. It could be |
| 1455 | // made to work in many cases using glPixelStore and what not but is not needed currently. |
| 1456 | if (surfaceIsAlphaOnly && !memoryIsAlphaOnly) { |
| 1457 | return false; |
| 1458 | } |
| 1459 | |
| 1460 | *externalFormat = fConfigTable[memoryConfig].fFormats.fExternalFormat[usage]; |
| 1461 | *externalType = fConfigTable[memoryConfig].fFormats.fExternalType; |
| 1462 | |
bsalomon | e957331 | 2016-01-25 14:33:25 -0800 | [diff] [blame] | 1463 | // When GL_RED is supported as a texture format, our alpha-only textures are stored using |
| 1464 | // GL_RED and we swizzle in order to map all components to 'r'. However, in this case the |
| 1465 | // surface is not alpha-only and we want alpha to really mean the alpha component of the |
| 1466 | // texture, not the red component. |
| 1467 | if (memoryIsAlphaOnly && !surfaceIsAlphaOnly) { |
| 1468 | if (this->textureRedSupport()) { |
| 1469 | SkASSERT(GR_GL_RED == *externalFormat); |
| 1470 | *externalFormat = GR_GL_ALPHA; |
| 1471 | } |
| 1472 | } |
| 1473 | |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1474 | return true; |
| 1475 | } |
| 1476 | |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 1477 | void GrGLCaps::initConfigTable(const GrContextOptions& contextOptions, |
| 1478 | const GrGLContextInfo& ctxInfo, const GrGLInterface* gli, |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 1479 | GrShaderCaps* shaderCaps) { |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1480 | /* |
| 1481 | Comments on renderability of configs on various GL versions. |
| 1482 | OpenGL < 3.0: |
| 1483 | no built in support for render targets. |
| 1484 | GL_EXT_framebuffer_object adds possible support for any sized format with base internal |
| 1485 | format RGB, RGBA and NV float formats we don't use. |
| 1486 | This is the following: |
| 1487 | R3_G3_B2, RGB4, RGB5, RGB8, RGB10, RGB12, RGB16, RGBA2, RGBA4, RGB5_A1, RGBA8 |
| 1488 | RGB10_A2, RGBA12,RGBA16 |
| 1489 | Though, it is hard to believe the more obscure formats such as RGBA12 would work |
| 1490 | since they aren't required by later standards and the driver can simply return |
| 1491 | FRAMEBUFFER_UNSUPPORTED for anything it doesn't allow. |
| 1492 | GL_ARB_framebuffer_object adds everything added by the EXT extension and additionally |
| 1493 | any sized internal format with a base internal format of ALPHA, LUMINANCE, |
| 1494 | LUMINANCE_ALPHA, INTENSITY, RED, and RG. |
| 1495 | This adds a lot of additional renderable sized formats, including ALPHA8. |
| 1496 | The GL_ARB_texture_rg brings in the RED and RG formats (8, 8I, 8UI, 16, 16I, 16UI, |
| 1497 | 16F, 32I, 32UI, and 32F variants). |
| 1498 | Again, the driver has an escape hatch via FRAMEBUFFER_UNSUPPORTED. |
| 1499 | |
| 1500 | For both the above extensions we limit ourselves to those that are also required by |
| 1501 | OpenGL 3.0. |
| 1502 | |
| 1503 | OpenGL 3.0: |
| 1504 | Any format with base internal format ALPHA, RED, RG, RGB or RGBA is "color-renderable" |
| 1505 | but are not required to be supported as renderable textures/renderbuffer. |
| 1506 | Required renderable color formats: |
| 1507 | - RGBA32F, RGBA32I, RGBA32UI, RGBA16, RGBA16F, RGBA16I, |
| 1508 | RGBA16UI, RGBA8, RGBA8I, RGBA8UI, SRGB8_ALPHA8, and |
| 1509 | RGB10_A2. |
| 1510 | - R11F_G11F_B10F. |
| 1511 | - RG32F, RG32I, RG32UI, RG16, RG16F, RG16I, RG16UI, RG8, RG8I, |
| 1512 | and RG8UI. |
| 1513 | - R32F, R32I, R32UI, R16F, R16I, R16UI, R16, R8, R8I, and R8UI. |
| 1514 | - ALPHA8 |
| 1515 | |
| 1516 | OpenGL 3.1, 3.2, 3.3 |
| 1517 | Same as 3.0 except ALPHA8 requires GL_ARB_compatibility/compatibility profile. |
| 1518 | OpengGL 3.3, 4.0, 4.1 |
| 1519 | Adds RGB10_A2UI. |
| 1520 | OpengGL 4.2 |
| 1521 | Adds |
| 1522 | - RGB5_A1, RGBA4 |
| 1523 | - RGB565 |
| 1524 | OpenGL 4.4 |
| 1525 | Does away with the separate list and adds a column to the sized internal color format |
| 1526 | table. However, no new formats become required color renderable. |
| 1527 | |
| 1528 | ES 2.0 |
| 1529 | color renderable: RGBA4, RGB5_A1, RGB565 |
| 1530 | GL_EXT_texture_rg adds support for R8, RG5 as a color render target |
| 1531 | GL_OES_rgb8_rgba8 adds support for RGB8 and RGBA8 |
| 1532 | GL_ARM_rgba8 adds support for RGBA8 (but not RGB8) |
| 1533 | GL_EXT_texture_format_BGRA8888 does not add renderbuffer support |
| 1534 | GL_CHROMIUM_renderbuffer_format_BGRA8888 adds BGRA8 as color-renderable |
| 1535 | GL_APPLE_texture_format_BGRA8888 does not add renderbuffer support |
| 1536 | |
| 1537 | ES 3.0 |
| 1538 | - RGBA32I, RGBA32UI, RGBA16I, RGBA16UI, RGBA8, RGBA8I, |
| 1539 | RGBA8UI, SRGB8_ALPHA8, RGB10_A2, RGB10_A2UI, RGBA4, and |
| 1540 | RGB5_A1. |
| 1541 | - RGB8 and RGB565. |
| 1542 | - RG32I, RG32UI, RG16I, RG16UI, RG8, RG8I, and RG8UI. |
| 1543 | - R32I, R32UI, R16I, R16UI, R8, R8I, and R8UI |
| 1544 | ES 3.1 |
| 1545 | Adds RGB10_A2, RGB10_A2UI, |
| 1546 | ES 3.2 |
| 1547 | Adds R16F, RG16F, RGBA16F, R32F, RG32F, RGBA32F, R11F_G11F_B10F. |
| 1548 | */ |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1549 | uint32_t nonMSAARenderFlags = ConfigInfo::kRenderable_Flag | |
| 1550 | ConfigInfo::kFBOColorAttachment_Flag; |
| 1551 | uint32_t allRenderFlags = nonMSAARenderFlags; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1552 | if (kNone_MSFBOType != fMSFBOType) { |
| 1553 | allRenderFlags |= ConfigInfo::kRenderableWithMSAA_Flag; |
| 1554 | } |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1555 | GrGLStandard standard = ctxInfo.standard(); |
| 1556 | GrGLVersion version = ctxInfo.version(); |
| 1557 | |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1558 | bool texStorageSupported = false; |
| 1559 | if (kGL_GrGLStandard == standard) { |
| 1560 | // The EXT version can apply to either GL or GLES. |
| 1561 | texStorageSupported = version >= GR_GL_VER(4,2) || |
| 1562 | ctxInfo.hasExtension("GL_ARB_texture_storage") || |
| 1563 | ctxInfo.hasExtension("GL_EXT_texture_storage"); |
| 1564 | } else { |
Brian Salomon | 3ab83e2 | 2016-11-28 13:14:00 -0500 | [diff] [blame] | 1565 | texStorageSupported = version >= GR_GL_VER(3,0) || |
| 1566 | ctxInfo.hasExtension("GL_EXT_texture_storage"); |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | // TODO: remove after command buffer supports full ES 3.0 |
| 1570 | if (kGLES_GrGLStandard == standard && version >= GR_GL_VER(3,0) && |
| 1571 | kChromium_GrGLDriver == ctxInfo.driver()) { |
| 1572 | texStorageSupported = false; |
| 1573 | } |
| 1574 | |
cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 1575 | bool texelBufferSupport = this->shaderCaps()->texelBufferSupport(); |
| 1576 | |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1577 | fConfigTable[kUnknown_GrPixelConfig].fFormats.fBaseInternalFormat = 0; |
| 1578 | fConfigTable[kUnknown_GrPixelConfig].fFormats.fSizedInternalFormat = 0; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1579 | fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = 0; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1580 | fConfigTable[kUnknown_GrPixelConfig].fFormats.fExternalType = 0; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1581 | fConfigTable[kUnknown_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1582 | fConfigTable[kUnknown_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1583 | |
| 1584 | fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA; |
| 1585 | fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1586 | fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1587 | GR_GL_RGBA; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1588 | fConfigTable[kRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1589 | fConfigTable[kRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1590 | fConfigTable[kRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
| 1591 | if (kGL_GrGLStandard == standard) { |
| 1592 | // We require some form of FBO support and all GLs with FBO support can render to RGBA8 |
| 1593 | fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags; |
egdaniel | 4999df8 | 2016-01-07 17:06:04 -0800 | [diff] [blame] | 1594 | } else { |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1595 | if (version >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_OES_rgb8_rgba8") || |
| 1596 | ctxInfo.hasExtension("GL_ARM_rgba8")) { |
| 1597 | fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= allRenderFlags; |
| 1598 | } |
egdaniel | 4999df8 | 2016-01-07 17:06:04 -0800 | [diff] [blame] | 1599 | } |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1600 | if (texStorageSupported) { |
| 1601 | fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1602 | } |
cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 1603 | if (texelBufferSupport) { |
| 1604 | fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag; |
| 1605 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1606 | fConfigTable[kRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1607 | |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1608 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1609 | GR_GL_BGRA; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1610 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1611 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1612 | if (kGL_GrGLStandard == standard) { |
| 1613 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA; |
| 1614 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8; |
| 1615 | if (version >= GR_GL_VER(1, 2) || ctxInfo.hasExtension("GL_EXT_bgra")) { |
| 1616 | // Since the internal format is RGBA8, it is also renderable. |
| 1617 | fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag | |
| 1618 | allRenderFlags; |
| 1619 | } |
| 1620 | } else { |
| 1621 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_BGRA; |
| 1622 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_BGRA8; |
| 1623 | if (ctxInfo.hasExtension("GL_APPLE_texture_format_BGRA8888")) { |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1624 | // This APPLE extension introduces complexity on ES2. It leaves the internal format |
| 1625 | // as RGBA, but allows BGRA as the external format. From testing, it appears that the |
| 1626 | // driver remembers the external format when the texture is created (with TexImage). |
| 1627 | // If you then try to upload data in the other swizzle (with TexSubImage), it fails. |
| 1628 | // We could work around this, but it adds even more state tracking to code that is |
| 1629 | // already too tricky. Instead, we opt not to support BGRA on ES2 with this extension. |
| 1630 | // This also side-steps some ambiguous interactions with the texture storage extension. |
| 1631 | if (version >= GR_GL_VER(3,0)) { |
| 1632 | // The APPLE extension doesn't make this renderable. |
| 1633 | fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1634 | } |
| 1635 | } else if (ctxInfo.hasExtension("GL_EXT_texture_format_BGRA8888")) { |
| 1636 | fConfigTable[kBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag | |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1637 | nonMSAARenderFlags; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1638 | if (ctxInfo.hasExtension("GL_CHROMIUM_renderbuffer_format_BGRA8888") && |
kkinnunen | 9f63b44 | 2016-01-25 00:31:49 -0800 | [diff] [blame] | 1639 | (this->usesMSAARenderBuffers() || this->fMSFBOType == kMixedSamples_MSFBOType)) { |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1640 | fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= |
| 1641 | ConfigInfo::kRenderableWithMSAA_Flag; |
| 1642 | } |
| 1643 | } |
| 1644 | } |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1645 | |
| 1646 | bool isX86PowerVR = false; |
| 1647 | #if defined(SK_CPU_X86) |
| 1648 | if (kPowerVRRogue_GrGLRenderer == ctxInfo.renderer()) { |
| 1649 | isX86PowerVR = true; |
| 1650 | } |
| 1651 | #endif |
| 1652 | |
| 1653 | // Adreno 3xx, 4xx, 5xx, and NexusPlayer all fail if we try to use TexStorage with BGRA |
| 1654 | if (texStorageSupported && |
| 1655 | kAdreno3xx_GrGLRenderer != ctxInfo.renderer() && |
| 1656 | kAdreno4xx_GrGLRenderer != ctxInfo.renderer() && |
| 1657 | kAdreno5xx_GrGLRenderer != ctxInfo.renderer() && |
| 1658 | !isX86PowerVR) { |
| 1659 | fConfigTable[kBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1660 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1661 | fConfigTable[kBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1662 | |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1663 | // We only enable srgb support if both textures and FBOs support srgb, |
brianosman | 35b784d | 2016-05-05 11:52:53 -0700 | [diff] [blame] | 1664 | // *and* we can disable sRGB decode-on-read, to support "legacy" mode. |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1665 | if (kGL_GrGLStandard == standard) { |
| 1666 | if (ctxInfo.version() >= GR_GL_VER(3,0)) { |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1667 | fSRGBSupport = true; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1668 | } else if (ctxInfo.hasExtension("GL_EXT_texture_sRGB")) { |
| 1669 | if (ctxInfo.hasExtension("GL_ARB_framebuffer_sRGB") || |
| 1670 | ctxInfo.hasExtension("GL_EXT_framebuffer_sRGB")) { |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1671 | fSRGBSupport = true; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1672 | } |
| 1673 | } |
| 1674 | // All the above srgb extensions support toggling srgb writes |
bsalomon | 44d427e | 2016-05-10 09:05:06 -0700 | [diff] [blame] | 1675 | if (fSRGBSupport) { |
| 1676 | fSRGBWriteControl = true; |
| 1677 | } |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1678 | } else { |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 1679 | fSRGBSupport = ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB"); |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1680 | // NexusPlayer has strange bugs with sRGB (skbug.com/4148). This is a targeted fix to |
| 1681 | // blacklist that device (and any others that might be sharing the same driver). |
| 1682 | if (isX86PowerVR) { |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 1683 | fSRGBSupport = false; |
| 1684 | } |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1685 | // ES through 3.1 requires EXT_srgb_write_control to support toggling |
| 1686 | // sRGB writing for destinations. |
brianosman | c9986b6 | 2016-05-23 06:23:27 -0700 | [diff] [blame] | 1687 | // See https://bug.skia.org/5329 for Adreno4xx issue. |
| 1688 | fSRGBWriteControl = kAdreno4xx_GrGLRenderer != ctxInfo.renderer() && |
| 1689 | ctxInfo.hasExtension("GL_EXT_sRGB_write_control"); |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1690 | } |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 1691 | if (contextOptions.fRequireDecodeDisableForSRGB && !fSRGBDecodeDisableSupport) { |
| 1692 | // To support "legacy" L32 mode, we require the ability to turn off sRGB decode. Clients |
| 1693 | // can opt-out of that requirement, if they intend to always do linear blending. |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1694 | fSRGBSupport = false; |
| 1695 | } |
brianosman | 2047189 | 2016-12-02 06:43:32 -0800 | [diff] [blame] | 1696 | |
| 1697 | // This is very conservative, if we're on a platform where N32 is BGRA, and using ES, disable |
| 1698 | // all sRGB support. Too much code relies on creating surfaces with N32 + sRGB colorspace, |
| 1699 | // and sBGRA is basically impossible to support on any version of ES (with our current code). |
| 1700 | // In particular, ES2 doesn't support sBGRA at all, and even in ES3, there is no valid pair |
| 1701 | // of formats that can be used for TexImage calls to upload BGRA data to sRGBA (which is what |
| 1702 | // we *have* to use as the internal format, because sBGRA doesn't exist). This primarily |
| 1703 | // affects Windows. |
| 1704 | if (kSkia8888_GrPixelConfig == kBGRA_8888_GrPixelConfig && kGLES_GrGLStandard == standard) { |
| 1705 | fSRGBSupport = false; |
| 1706 | } |
| 1707 | |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1708 | // ES2 Command Buffer has several TexStorage restrictions. It appears to fail for any format |
| 1709 | // not explicitly allowed by GL_EXT_texture_storage, particularly those from other extensions. |
| 1710 | bool isCommandBufferES2 = kChromium_GrGLDriver == ctxInfo.driver() && version < GR_GL_VER(3, 0); |
| 1711 | |
Brian Osman | 6799939 | 2017-05-31 16:19:34 -0400 | [diff] [blame] | 1712 | uint32_t srgbRenderFlags = allRenderFlags; |
| 1713 | // MacPro devices with AMD cards fail to create MSAA sRGB render buffers |
| 1714 | #if defined(SK_BUILD_FOR_MAC) |
| 1715 | if (kATI_GrGLVendor == ctxInfo.vendor()) { |
| 1716 | srgbRenderFlags &= ~ConfigInfo::kRenderableWithMSAA_Flag; |
| 1717 | } |
| 1718 | #endif |
| 1719 | |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1720 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA; |
| 1721 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8; |
| 1722 | // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the |
| 1723 | // external format is GL_RGBA. See below for note about ES2.0 and glTex[Sub]Image. |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1724 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1725 | GR_GL_RGBA; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1726 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1727 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1728 | if (fSRGBSupport) { |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1729 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag | |
Brian Osman | 6799939 | 2017-05-31 16:19:34 -0400 | [diff] [blame] | 1730 | srgbRenderFlags; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1731 | } |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1732 | // ES2 Command Buffer does not allow TexStorage with SRGB8_ALPHA8_EXT |
| 1733 | if (texStorageSupported && !isCommandBufferES2) { |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1734 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1735 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1736 | fConfigTable[kSRGBA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1737 | // sBGRA is not a "real" thing in OpenGL, but GPUs support it, and on platforms where |
| 1738 | // kN32 == BGRA, we need some way to work with it. (The default framebuffer on Windows |
| 1739 | // is in this format, for example). |
| 1740 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_SRGB_ALPHA; |
| 1741 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_SRGB8_ALPHA8; |
| 1742 | // GL does not do srgb<->rgb conversions when transferring between cpu and gpu. Thus, the |
| 1743 | // external format is GL_BGRA. |
| 1744 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1745 | GR_GL_BGRA; |
| 1746 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE; |
| 1747 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1748 | if (fSRGBSupport && kGL_GrGLStandard == standard) { |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1749 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag | |
Brian Osman | 6799939 | 2017-05-31 16:19:34 -0400 | [diff] [blame] | 1750 | srgbRenderFlags; |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1751 | } |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1752 | |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 1753 | if (texStorageSupported) { |
| 1754 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1755 | } |
| 1756 | fConfigTable[kSBGRA_8888_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
| 1757 | |
Brian Salomon | bf7b620 | 2016-11-11 16:08:03 -0500 | [diff] [blame] | 1758 | bool hasIntegerTextures; |
| 1759 | if (standard == kGL_GrGLStandard) { |
| 1760 | hasIntegerTextures = version >= GR_GL_VER(3, 0) || |
| 1761 | ctxInfo.hasExtension("GL_EXT_texture_integer"); |
| 1762 | } else { |
| 1763 | hasIntegerTextures = (version >= GR_GL_VER(3, 0)); |
| 1764 | } |
| 1765 | // We may have limited GLSL to an earlier version that doesn't have integer sampler types. |
| 1766 | if (ctxInfo.glslGeneration() == k110_GrGLSLGeneration) { |
| 1767 | hasIntegerTextures = false; |
| 1768 | } |
| 1769 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA_INTEGER; |
| 1770 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA8I; |
| 1771 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = GR_GL_RGBA_INTEGER; |
| 1772 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormats.fExternalType = GR_GL_BYTE; |
| 1773 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFormatType = kInteger_FormatType; |
| 1774 | // We currently only support using integer textures as srcs, not for rendering (even though GL |
| 1775 | // allows it). |
| 1776 | if (hasIntegerTextures) { |
| 1777 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag | |
| 1778 | ConfigInfo::kFBOColorAttachment_Flag; |
| 1779 | if (texStorageSupported) { |
| 1780 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |= |
| 1781 | ConfigInfo::kCanUseTexStorage_Flag; |
| 1782 | } |
| 1783 | } |
| 1784 | |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1785 | fConfigTable[kRGB_565_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGB; |
| 1786 | if (this->ES2CompatibilitySupport()) { |
| 1787 | fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB565; |
| 1788 | } else { |
| 1789 | fConfigTable[kRGB_565_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGB5; |
| 1790 | } |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1791 | fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1792 | GR_GL_RGB; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1793 | fConfigTable[kRGB_565_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_5_6_5; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1794 | fConfigTable[kRGB_565_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1795 | fConfigTable[kRGB_565_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
| 1796 | if (kGL_GrGLStandard == standard) { |
elemental | a675910 | 2016-11-18 23:11:29 +0100 | [diff] [blame] | 1797 | if (version >= GR_GL_VER(4, 2) || ctxInfo.hasExtension("GL_ARB_ES2_compatibility")) { |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1798 | fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags; |
| 1799 | } |
| 1800 | } else { |
| 1801 | fConfigTable[kRGB_565_GrPixelConfig].fFlags |= allRenderFlags; |
| 1802 | } |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1803 | // 565 is not a sized internal format on desktop GL. So on desktop with |
| 1804 | // 565 we always use an unsized internal format to let the system pick |
| 1805 | // the best sized format to convert the 565 data to. Since TexStorage |
| 1806 | // only allows sized internal formats we disallow it. |
| 1807 | // |
| 1808 | // TODO: As of 4.2, regular GL supports 565. This logic is due for an |
| 1809 | // update. |
| 1810 | if (texStorageSupported && kGL_GrGLStandard != standard) { |
| 1811 | fConfigTable[kRGB_565_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1812 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1813 | fConfigTable[kRGB_565_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1814 | |
| 1815 | fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA; |
| 1816 | fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA4; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1817 | fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1818 | GR_GL_RGBA; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1819 | fConfigTable[kRGBA_4444_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_SHORT_4_4_4_4; |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1820 | fConfigTable[kRGBA_4444_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1821 | fConfigTable[kRGBA_4444_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
| 1822 | if (kGL_GrGLStandard == standard) { |
| 1823 | if (version >= GR_GL_VER(4, 2)) { |
| 1824 | fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags; |
| 1825 | } |
| 1826 | } else { |
| 1827 | fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= allRenderFlags; |
| 1828 | } |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1829 | if (texStorageSupported) { |
| 1830 | fConfigTable[kRGBA_4444_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1831 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1832 | fConfigTable[kRGBA_4444_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1833 | |
Brian Osman | f4faccd | 2017-01-10 16:53:58 -0500 | [diff] [blame] | 1834 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE; |
| 1835 | fConfigTable[kAlpha_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
| 1836 | fConfigTable[kAlpha_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1837 | if (this->textureRedSupport()) { |
| 1838 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED; |
| 1839 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1840 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1841 | GR_GL_RED; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1842 | fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRR(); |
cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 1843 | if (texelBufferSupport) { |
| 1844 | fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag; |
| 1845 | } |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1846 | fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1847 | } else { |
| 1848 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA; |
| 1849 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA8; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1850 | fConfigTable[kAlpha_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1851 | GR_GL_ALPHA; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1852 | fConfigTable[kAlpha_8_GrPixelConfig].fSwizzle = GrSwizzle::AAAA(); |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1853 | if (fAlpha8IsRenderable) { |
| 1854 | fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= allRenderFlags; |
| 1855 | } |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1856 | } |
Robert Phillips | 5ab7276 | 2017-06-07 12:04:18 -0400 | [diff] [blame] | 1857 | |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1858 | // ES2 Command Buffer does not allow TexStorage with R8_EXT (so Alpha_8 and Gray_8) |
| 1859 | if (texStorageSupported && !isCommandBufferES2) { |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1860 | fConfigTable[kAlpha_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1861 | } |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1862 | |
Brian Osman | f4faccd | 2017-01-10 16:53:58 -0500 | [diff] [blame] | 1863 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalType = GR_GL_UNSIGNED_BYTE; |
| 1864 | fConfigTable[kGray_8_GrPixelConfig].fFormatType = kNormalizedFixedPoint_FormatType; |
| 1865 | fConfigTable[kGray_8_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
Brian Osman | 986563b | 2017-01-10 14:20:02 -0500 | [diff] [blame] | 1866 | if (this->textureRedSupport()) { |
| 1867 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED; |
| 1868 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R8; |
| 1869 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1870 | GR_GL_RED; |
| 1871 | fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RRRA(); |
| 1872 | if (texelBufferSupport) { |
| 1873 | fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag; |
| 1874 | } |
| 1875 | } else { |
| 1876 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_LUMINANCE; |
| 1877 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_LUMINANCE8; |
| 1878 | fConfigTable[kGray_8_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1879 | GR_GL_LUMINANCE; |
| 1880 | fConfigTable[kGray_8_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
| 1881 | } |
Brian Osman | 986563b | 2017-01-10 14:20:02 -0500 | [diff] [blame] | 1882 | #if 0 // Leaving Gray8 as non-renderable, to keep things simple and match raster |
| 1883 | if (this->textureRedSupport() || |
| 1884 | (kDesktop_ARB_MSFBOType == this->msFBOType() && |
| 1885 | ctxInfo.renderer() != kOSMesa_GrGLRenderer)) { |
| 1886 | // desktop ARB extension/3.0+ supports LUMINANCE8 as renderable. |
| 1887 | // However, osmesa fails if it used even when GL_ARB_framebuffer_object is present. |
| 1888 | // Core profile removes LUMINANCE8 support, but we should have chosen R8 in that case. |
| 1889 | fConfigTable[kGray_8_GrPixelConfig].fFlags |= allRenderFlags; |
| 1890 | } |
| 1891 | #endif |
Brian Osman | 48c9919 | 2017-06-02 08:45:06 -0400 | [diff] [blame] | 1892 | if (texStorageSupported && !isCommandBufferES2) { |
Brian Osman | 986563b | 2017-01-10 14:20:02 -0500 | [diff] [blame] | 1893 | fConfigTable[kGray_8_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1894 | } |
| 1895 | |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1896 | // Check for [half] floating point texture support |
| 1897 | // NOTE: We disallow floating point textures on ES devices if linear filtering modes are not |
| 1898 | // supported. This is for simplicity, but a more granular approach is possible. Coincidentally, |
| 1899 | // [half] floating point textures became part of the standard in ES3.1 / OGL 3.0. |
| 1900 | bool hasFPTextures = false; |
| 1901 | bool hasHalfFPTextures = false; |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1902 | bool rgIsTexturable = false; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1903 | // for now we don't support floating point MSAA on ES |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1904 | uint32_t fpRenderFlags = (kGL_GrGLStandard == standard) ? allRenderFlags : nonMSAARenderFlags; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1905 | |
| 1906 | if (kGL_GrGLStandard == standard) { |
| 1907 | if (version >= GR_GL_VER(3, 0) || ctxInfo.hasExtension("GL_ARB_texture_float")) { |
| 1908 | hasFPTextures = true; |
| 1909 | hasHalfFPTextures = true; |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1910 | rgIsTexturable = true; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1911 | } |
| 1912 | } else { |
| 1913 | if (version >= GR_GL_VER(3, 1)) { |
| 1914 | hasFPTextures = true; |
| 1915 | hasHalfFPTextures = true; |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1916 | rgIsTexturable = true; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1917 | } else { |
| 1918 | if (ctxInfo.hasExtension("GL_OES_texture_float_linear") && |
| 1919 | ctxInfo.hasExtension("GL_OES_texture_float")) { |
| 1920 | hasFPTextures = true; |
| 1921 | } |
| 1922 | if (ctxInfo.hasExtension("GL_OES_texture_half_float_linear") && |
| 1923 | ctxInfo.hasExtension("GL_OES_texture_half_float")) { |
| 1924 | hasHalfFPTextures = true; |
| 1925 | } |
| 1926 | } |
| 1927 | } |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1928 | |
csmartdalton | 6aa0e11 | 2017-02-08 16:14:11 -0500 | [diff] [blame] | 1929 | for (auto fpconfig : {kRGBA_float_GrPixelConfig, kRG_float_GrPixelConfig}) { |
| 1930 | const GrGLenum format = kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA : GR_GL_RG; |
| 1931 | fConfigTable[fpconfig].fFormats.fBaseInternalFormat = format; |
| 1932 | fConfigTable[fpconfig].fFormats.fSizedInternalFormat = |
| 1933 | kRGBA_float_GrPixelConfig == fpconfig ? GR_GL_RGBA32F : GR_GL_RG32F; |
| 1934 | fConfigTable[fpconfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = format; |
| 1935 | fConfigTable[fpconfig].fFormats.fExternalType = GR_GL_FLOAT; |
| 1936 | fConfigTable[fpconfig].fFormatType = kFloat_FormatType; |
| 1937 | if (hasFPTextures) { |
Robert Phillips | b7b7e5f | 2017-05-22 13:23:19 -0400 | [diff] [blame] | 1938 | fConfigTable[fpconfig].fFlags = rgIsTexturable ? ConfigInfo::kTextureable_Flag : 0; |
csmartdalton | 6aa0e11 | 2017-02-08 16:14:11 -0500 | [diff] [blame] | 1939 | // For now we only enable rendering to float on desktop, because on ES we'd have to |
| 1940 | // solve many precision issues and no clients actually want this yet. |
| 1941 | if (kGL_GrGLStandard == standard /* || version >= GR_GL_VER(3,2) || |
| 1942 | ctxInfo.hasExtension("GL_EXT_color_buffer_float")*/) { |
| 1943 | fConfigTable[fpconfig].fFlags |= fpRenderFlags; |
| 1944 | } |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1945 | } |
csmartdalton | 6aa0e11 | 2017-02-08 16:14:11 -0500 | [diff] [blame] | 1946 | if (texStorageSupported) { |
| 1947 | fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1948 | } |
| 1949 | if (texelBufferSupport) { |
| 1950 | fConfigTable[fpconfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag; |
| 1951 | } |
| 1952 | fConfigTable[fpconfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 1953 | } |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1954 | |
| 1955 | if (this->textureRedSupport()) { |
| 1956 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RED; |
| 1957 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_R16F; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1958 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] |
| 1959 | = GR_GL_RED; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1960 | fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::RRRR(); |
cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 1961 | if (texelBufferSupport) { |
| 1962 | fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= |
| 1963 | ConfigInfo::kCanUseWithTexelBuffer_Flag; |
| 1964 | } |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1965 | } else { |
| 1966 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_ALPHA; |
| 1967 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_ALPHA16F; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1968 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] |
| 1969 | = GR_GL_ALPHA; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 1970 | fConfigTable[kAlpha_half_GrPixelConfig].fSwizzle = GrSwizzle::AAAA(); |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1971 | } |
Brian Osman | 3a88725 | 2016-11-17 13:27:31 -0500 | [diff] [blame] | 1972 | // ANGLE always returns GL_HALF_FLOAT_OES for GL_IMPLEMENTATION_COLOR_READ_TYPE, even though |
| 1973 | // ES3 would typically return GL_HALF_FLOAT. The correct fix is for us to respect the value |
| 1974 | // returned when we query, but that turns into a bigger refactor, so just work around it. |
| 1975 | if (kGL_GrGLStandard == ctxInfo.standard() || |
| 1976 | (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) { |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1977 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT; |
| 1978 | } else { |
| 1979 | fConfigTable[kAlpha_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES; |
| 1980 | } |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 1981 | fConfigTable[kAlpha_half_GrPixelConfig].fFormatType = kFloat_FormatType; |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 1982 | if (texStorageSupported) { |
| 1983 | fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 1984 | } |
csmartdalton | 6aa0e11 | 2017-02-08 16:14:11 -0500 | [diff] [blame] | 1985 | if (hasHalfFPTextures) { |
| 1986 | fConfigTable[kAlpha_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
| 1987 | // ES requires either 3.2 or the combination of EXT_color_buffer_half_float and support for |
| 1988 | // GL_RED internal format. |
| 1989 | if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3, 2) || |
| 1990 | (this->textureRedSupport() && |
| 1991 | ctxInfo.hasExtension("GL_EXT_color_buffer_half_float"))) { |
| 1992 | fConfigTable[kAlpha_half_GrPixelConfig].fFlags |= fpRenderFlags; |
| 1993 | } |
| 1994 | } |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1995 | |
| 1996 | fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fBaseInternalFormat = GR_GL_RGBA; |
| 1997 | fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fSizedInternalFormat = GR_GL_RGBA16F; |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1998 | fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalFormat[kOther_ExternalFormatUsage] = |
| 1999 | GR_GL_RGBA; |
Brian Osman | 3a88725 | 2016-11-17 13:27:31 -0500 | [diff] [blame] | 2000 | // See comment above, re: ANGLE and ES3. |
| 2001 | if (kGL_GrGLStandard == ctxInfo.standard() || |
| 2002 | (ctxInfo.version() >= GR_GL_VER(3, 0) && kANGLE_GrGLDriver != ctxInfo.driver())) { |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2003 | fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT; |
| 2004 | } else { |
| 2005 | fConfigTable[kRGBA_half_GrPixelConfig].fFormats.fExternalType = GR_GL_HALF_FLOAT_OES; |
| 2006 | } |
bsalomon | 7928ef6 | 2016-01-05 10:26:39 -0800 | [diff] [blame] | 2007 | fConfigTable[kRGBA_half_GrPixelConfig].fFormatType = kFloat_FormatType; |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 2008 | if (hasHalfFPTextures) { |
| 2009 | fConfigTable[kRGBA_half_GrPixelConfig].fFlags = ConfigInfo::kTextureable_Flag; |
| 2010 | // ES requires 3.2 or EXT_color_buffer_half_float. |
| 2011 | if (kGL_GrGLStandard == standard || version >= GR_GL_VER(3,2) || |
| 2012 | ctxInfo.hasExtension("GL_EXT_color_buffer_half_float")) { |
| 2013 | fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= fpRenderFlags; |
| 2014 | } |
| 2015 | } |
cblume | 790d513 | 2016-02-29 11:13:29 -0800 | [diff] [blame] | 2016 | if (texStorageSupported) { |
| 2017 | fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseTexStorage_Flag; |
| 2018 | } |
cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 2019 | if (texelBufferSupport) { |
| 2020 | fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseWithTexelBuffer_Flag; |
| 2021 | } |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 2022 | fConfigTable[kRGBA_half_GrPixelConfig].fSwizzle = GrSwizzle::RGBA(); |
bsalomon | 41e4384e | 2016-01-08 09:12:44 -0800 | [diff] [blame] | 2023 | |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2024 | // Bulk populate the texture internal/external formats here and then deal with exceptions below. |
| 2025 | |
| 2026 | // ES 2.0 requires that the internal/external formats match. |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2027 | bool useSizedTexFormats = (kGL_GrGLStandard == ctxInfo.standard() || |
| 2028 | ctxInfo.version() >= GR_GL_VER(3,0)); |
| 2029 | // All ES versions (thus far) require sized internal formats for render buffers. |
| 2030 | // TODO: Always use sized internal format? |
| 2031 | bool useSizedRbFormats = kGLES_GrGLStandard == ctxInfo.standard(); |
| 2032 | |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2033 | for (int i = 0; i < kGrPixelConfigCnt; ++i) { |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2034 | // Almost always we want to pass fExternalFormat[kOther_ExternalFormatUsage] as the <format> |
| 2035 | // param to glTex[Sub]Image. |
| 2036 | fConfigTable[i].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] = |
| 2037 | fConfigTable[i].fFormats.fExternalFormat[kOther_ExternalFormatUsage]; |
| 2038 | fConfigTable[i].fFormats.fInternalFormatTexImage = useSizedTexFormats ? |
| 2039 | fConfigTable[i].fFormats.fSizedInternalFormat : |
| 2040 | fConfigTable[i].fFormats.fBaseInternalFormat; |
| 2041 | fConfigTable[i].fFormats.fInternalFormatRenderbuffer = useSizedRbFormats ? |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2042 | fConfigTable[i].fFormats.fSizedInternalFormat : |
| 2043 | fConfigTable[i].fFormats.fBaseInternalFormat; |
| 2044 | } |
| 2045 | // OpenGL ES 2.0 + GL_EXT_sRGB allows GL_SRGB_ALPHA to be specified as the <format> |
| 2046 | // param to Tex(Sub)Image. ES 2.0 requires the <internalFormat> and <format> params to match. |
| 2047 | // Thus, on ES 2.0 we will use GL_SRGB_ALPHA as the <format> param. |
| 2048 | // On OpenGL and ES 3.0+ GL_SRGB_ALPHA does not work for the <format> param to glTexImage. |
| 2049 | if (ctxInfo.standard() == kGLES_GrGLStandard && ctxInfo.version() == GR_GL_VER(2,0)) { |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2050 | fConfigTable[kSRGBA_8888_GrPixelConfig].fFormats.fExternalFormat[kTexImage_ExternalFormatUsage] = |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2051 | GR_GL_SRGB_ALPHA; |
brianosman | a635936 | 2016-03-21 06:55:37 -0700 | [diff] [blame] | 2052 | |
| 2053 | // Additionally, because we had to "invent" sBGRA, there is no way to make it work |
| 2054 | // in ES 2.0, because there is no <internalFormat> we can use. So just make that format |
| 2055 | // unsupported. (If we have no sRGB support at all, this will get overwritten below). |
| 2056 | fConfigTable[kSBGRA_8888_GrPixelConfig].fFlags = 0; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2057 | } |
| 2058 | |
| 2059 | // If BGRA is supported as an internal format it must always be specified to glTex[Sub]Image |
| 2060 | // as a base format. |
| 2061 | // GL_EXT_texture_format_BGRA8888: |
| 2062 | // This extension GL_BGRA as an unsized internal format. However, it is written against ES |
| 2063 | // 2.0 and therefore doesn't define a value for GL_BGRA8 as ES 2.0 uses unsized internal |
| 2064 | // formats. |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 2065 | // GL_APPLE_texture_format_BGRA8888: |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2066 | // ES 2.0: the extension makes BGRA an external format but not an internal format. |
| 2067 | // ES 3.0: the extension explicitly states GL_BGRA8 is not a valid internal format for |
| 2068 | // glTexImage (just for glTexStorage). |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2069 | if (useSizedTexFormats && this->bgraIsInternalFormat()) { |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2070 | fConfigTable[kBGRA_8888_GrPixelConfig].fFormats.fInternalFormatTexImage = GR_GL_BGRA; |
| 2071 | } |
| 2072 | |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 2073 | // If we don't have texture swizzle support then the shader generator must insert the |
| 2074 | // swizzle into shader code. |
| 2075 | if (!this->textureSwizzleSupport()) { |
| 2076 | for (int i = 0; i < kGrPixelConfigCnt; ++i) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 2077 | shaderCaps->fConfigTextureSwizzle[i] = fConfigTable[i].fSwizzle; |
bsalomon | cdee009 | 2016-01-08 13:20:12 -0800 | [diff] [blame] | 2078 | } |
| 2079 | } |
| 2080 | |
bsalomon | 7f9b2e4 | 2016-01-12 13:29:26 -0800 | [diff] [blame] | 2081 | // Shader output swizzles will default to RGBA. When we've use GL_RED instead of GL_ALPHA to |
| 2082 | // implement kAlpha_8_GrPixelConfig we need to swizzle the shader outputs so the alpha channel |
| 2083 | // gets written to the single component. |
| 2084 | if (this->textureRedSupport()) { |
| 2085 | for (int i = 0; i < kGrPixelConfigCnt; ++i) { |
| 2086 | GrPixelConfig config = static_cast<GrPixelConfig>(i); |
| 2087 | if (GrPixelConfigIsAlphaOnly(config) && |
| 2088 | fConfigTable[i].fFormats.fBaseInternalFormat == GR_GL_RED) { |
Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 2089 | shaderCaps->fConfigOutputSwizzle[i] = GrSwizzle::AAAA(); |
bsalomon | 7f9b2e4 | 2016-01-12 13:29:26 -0800 | [diff] [blame] | 2090 | } |
| 2091 | } |
| 2092 | } |
| 2093 | |
Brian Salomon | f9f4512 | 2016-11-29 11:59:17 -0500 | [diff] [blame] | 2094 | // We currently only support images on rgba textures formats. We could add additional formats |
| 2095 | // if desired. The shader builder would have to be updated to add swizzles where appropriate |
| 2096 | // (e.g. where we use GL_RED textures to implement alpha configs). |
| 2097 | if (this->shaderCaps()->imageLoadStoreSupport()) { |
| 2098 | fConfigTable[kRGBA_8888_sint_GrPixelConfig].fFlags |= |
| 2099 | ConfigInfo::kCanUseAsImageStorage_Flag; |
| 2100 | // In OpenGL ES a texture may only be used with BindImageTexture if it has been made |
| 2101 | // immutable via TexStorage. We create non-integer textures as mutable textures using |
| 2102 | // TexImage because we may lazily add MIP levels. Thus, on ES we currently disable image |
| 2103 | // storage support for non-integer textures. |
| 2104 | if (kGL_GrGLStandard == ctxInfo.standard()) { |
| 2105 | fConfigTable[kRGBA_8888_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag; |
| 2106 | fConfigTable[kRGBA_float_GrPixelConfig].fFlags |= |
| 2107 | ConfigInfo::kCanUseAsImageStorage_Flag; |
| 2108 | fConfigTable[kRGBA_half_GrPixelConfig].fFlags |= ConfigInfo::kCanUseAsImageStorage_Flag; |
| 2109 | } |
| 2110 | } |
| 2111 | |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 2112 | bool hasInternalformatFunction = gli->fFunctions.fGetInternalformativ != nullptr; |
| 2113 | for (int i = 0; i < kGrPixelConfigCnt; ++i) { |
| 2114 | if (ConfigInfo::kRenderableWithMSAA_Flag & fConfigTable[i].fFlags) { |
| 2115 | if (hasInternalformatFunction && // This check is temporary until chrome is updated |
| 2116 | ((kGL_GrGLStandard == ctxInfo.standard() && |
| 2117 | (ctxInfo.version() >= GR_GL_VER(4,2) || |
| 2118 | ctxInfo.hasExtension("GL_ARB_internalformat_query"))) || |
| 2119 | (kGLES_GrGLStandard == ctxInfo.standard() && ctxInfo.version() >= GR_GL_VER(3,0)))) { |
| 2120 | int count; |
| 2121 | GrGLenum format = fConfigTable[i].fFormats.fInternalFormatRenderbuffer; |
| 2122 | GR_GL_GetInternalformativ(gli, GR_GL_RENDERBUFFER, format, GR_GL_NUM_SAMPLE_COUNTS, |
| 2123 | 1, &count); |
| 2124 | if (count) { |
| 2125 | int* temp = new int[count]; |
| 2126 | GR_GL_GetInternalformativ(gli, GR_GL_RENDERBUFFER, format, GR_GL_SAMPLES, count, |
| 2127 | temp); |
| 2128 | fConfigTable[i].fColorSampleCounts.setCount(count+1); |
| 2129 | // We initialize our supported values with 0 (no msaa) and reverse the order |
| 2130 | // returned by GL so that the array is ascending. |
| 2131 | fConfigTable[i].fColorSampleCounts[0] = 0; |
| 2132 | for (int j = 0; j < count; ++j) { |
| 2133 | fConfigTable[i].fColorSampleCounts[j+1] = temp[count - j - 1]; |
| 2134 | } |
| 2135 | delete[] temp; |
| 2136 | } |
| 2137 | } else { |
| 2138 | static const int kDefaultSamples[] = {0,1,2,4,8}; |
| 2139 | int count = SK_ARRAY_COUNT(kDefaultSamples); |
| 2140 | for (; count > 0; --count) { |
Greg Daniel | 2bb6ecc | 2017-07-20 13:11:14 +0000 | [diff] [blame^] | 2141 | if (kDefaultSamples[count-1] <= fMaxColorSampleCount) { |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 2142 | break; |
| 2143 | } |
| 2144 | } |
| 2145 | if (count > 0) { |
| 2146 | fConfigTable[i].fColorSampleCounts.append(count, kDefaultSamples); |
| 2147 | } |
| 2148 | } |
| 2149 | } |
| 2150 | } |
| 2151 | |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2152 | #ifdef SK_DEBUG |
| 2153 | // Make sure we initialized everything. |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2154 | ConfigInfo defaultEntry; |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2155 | for (int i = 0; i < kGrPixelConfigCnt; ++i) { |
Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 2156 | // Make sure we didn't set renderable and not blittable or renderable with msaa and not |
| 2157 | // renderable. |
| 2158 | SkASSERT(!((ConfigInfo::kRenderable_Flag) && !(ConfigInfo::kFBOColorAttachment_Flag))); |
| 2159 | SkASSERT(!((ConfigInfo::kRenderableWithMSAA_Flag) && !(ConfigInfo::kRenderable_Flag))); |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2160 | SkASSERT(defaultEntry.fFormats.fBaseInternalFormat != |
| 2161 | fConfigTable[i].fFormats.fBaseInternalFormat); |
| 2162 | SkASSERT(defaultEntry.fFormats.fSizedInternalFormat != |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2163 | fConfigTable[i].fFormats.fSizedInternalFormat); |
bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 2164 | for (int j = 0; j < kExternalFormatUsageCnt; ++j) { |
| 2165 | SkASSERT(defaultEntry.fFormats.fExternalFormat[j] != |
| 2166 | fConfigTable[i].fFormats.fExternalFormat[j]); |
| 2167 | } |
| 2168 | SkASSERT(defaultEntry.fFormats.fExternalType != fConfigTable[i].fFormats.fExternalType); |
bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 2169 | } |
| 2170 | #endif |
| 2171 | } |
| 2172 | |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 2173 | bool GrGLCaps::initDescForDstCopy(const GrRenderTargetProxy* src, GrSurfaceDesc* desc, |
Eric Karl | 7448088 | 2017-04-03 14:49:05 -0700 | [diff] [blame] | 2174 | bool* rectsMustMatch, bool* disallowSubrect) const { |
| 2175 | // By default, we don't require rects to match. |
| 2176 | *rectsMustMatch = false; |
| 2177 | |
| 2178 | // By default, we allow subrects. |
| 2179 | *disallowSubrect = false; |
| 2180 | |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2181 | // If the src is a texture, we can implement the blit as a draw assuming the config is |
| 2182 | // renderable. |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 2183 | if (src->asTextureProxy() && this->isConfigRenderable(src->config(), false)) { |
| 2184 | desc->fOrigin = kBottomLeft_GrSurfaceOrigin; |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2185 | desc->fFlags = kRenderTarget_GrSurfaceFlag; |
| 2186 | desc->fConfig = src->config(); |
| 2187 | return true; |
| 2188 | } |
| 2189 | |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 2190 | { |
| 2191 | // The only way we could see a non-GR_GL_TEXTURE_2D texture would be if it were |
| 2192 | // wrapped. In that case the proxy would already be instantiated. |
| 2193 | const GrTexture* srcTexture = src->priv().peekTexture(); |
| 2194 | const GrGLTexture* glSrcTexture = static_cast<const GrGLTexture*>(srcTexture); |
| 2195 | if (glSrcTexture && glSrcTexture->target() != GR_GL_TEXTURE_2D) { |
| 2196 | // Not supported for FBO blit or CopyTexSubImage |
| 2197 | return false; |
| 2198 | } |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2199 | } |
| 2200 | |
| 2201 | // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are |
| 2202 | // possible and we return false to fallback to creating a render target dst for render-to- |
| 2203 | // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo |
| 2204 | // creation. It isn't clear that avoiding temporary fbo creation is actually optimal. |
Robert Phillips | bb581ce | 2017-05-29 15:05:15 -0400 | [diff] [blame] | 2205 | GrSurfaceOrigin originForBlitFramebuffer = kTopLeft_GrSurfaceOrigin; |
Eric Karl | 7448088 | 2017-04-03 14:49:05 -0700 | [diff] [blame] | 2206 | bool rectsMustMatchForBlitFramebuffer = false; |
| 2207 | bool disallowSubrectForBlitFramebuffer = false; |
| 2208 | if (src->numColorSamples() && |
| 2209 | (this->blitFramebufferSupportFlags() & kResolveMustBeFull_BlitFrambufferFlag)) { |
| 2210 | rectsMustMatchForBlitFramebuffer = true; |
| 2211 | disallowSubrectForBlitFramebuffer = true; |
| 2212 | // Mirroring causes rects to mismatch later, don't allow it. |
| 2213 | originForBlitFramebuffer = src->origin(); |
| 2214 | } else if (src->numColorSamples() && (this->blitFramebufferSupportFlags() & |
| 2215 | kRectsMustMatchForMSAASrc_BlitFramebufferFlag)) { |
| 2216 | rectsMustMatchForBlitFramebuffer = true; |
| 2217 | // Mirroring causes rects to mismatch later, don't allow it. |
| 2218 | originForBlitFramebuffer = src->origin(); |
| 2219 | } else if (this->blitFramebufferSupportFlags() & kNoScalingOrMirroring_BlitFramebufferFlag) { |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2220 | originForBlitFramebuffer = src->origin(); |
| 2221 | } |
| 2222 | |
| 2223 | // Check for format issues with glCopyTexSubImage2D |
| 2224 | if (this->bgraIsInternalFormat() && kBGRA_8888_GrPixelConfig == src->config()) { |
| 2225 | // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit |
| 2226 | // then we set up for that, otherwise fail. |
| 2227 | if (this->canConfigBeFBOColorAttachment(kBGRA_8888_GrPixelConfig)) { |
| 2228 | desc->fOrigin = originForBlitFramebuffer; |
| 2229 | desc->fConfig = kBGRA_8888_GrPixelConfig; |
Eric Karl | 7448088 | 2017-04-03 14:49:05 -0700 | [diff] [blame] | 2230 | *rectsMustMatch = rectsMustMatchForBlitFramebuffer; |
| 2231 | *disallowSubrect = disallowSubrectForBlitFramebuffer; |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2232 | return true; |
| 2233 | } |
| 2234 | return false; |
| 2235 | } |
| 2236 | |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 2237 | { |
Brian Salomon | 63e7973 | 2017-05-15 21:23:13 -0400 | [diff] [blame] | 2238 | bool srcIsMSAARenderbuffer = GrFSAAType::kUnifiedMSAA == src->fsaaType() && |
| 2239 | this->usesMSAARenderBuffers(); |
Robert Phillips | bf25d43 | 2017-04-07 10:08:53 -0400 | [diff] [blame] | 2240 | if (srcIsMSAARenderbuffer) { |
| 2241 | // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO |
| 2242 | // blit or fail. |
| 2243 | if (this->canConfigBeFBOColorAttachment(src->config())) { |
| 2244 | desc->fOrigin = originForBlitFramebuffer; |
| 2245 | desc->fConfig = src->config(); |
| 2246 | *rectsMustMatch = rectsMustMatchForBlitFramebuffer; |
| 2247 | *disallowSubrect = disallowSubrectForBlitFramebuffer; |
| 2248 | return true; |
| 2249 | } |
| 2250 | return false; |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2251 | } |
Brian Salomon | 467921e | 2017-03-06 16:17:12 -0500 | [diff] [blame] | 2252 | } |
| 2253 | |
| 2254 | // We'll do a CopyTexSubImage. Make the dst a plain old texture. |
| 2255 | desc->fConfig = src->config(); |
| 2256 | desc->fOrigin = src->origin(); |
| 2257 | desc->fFlags = kNone_GrSurfaceFlags; |
| 2258 | return true; |
| 2259 | } |
| 2260 | |
csmartdalton | e0d3629 | 2016-07-29 08:14:20 -0700 | [diff] [blame] | 2261 | void GrGLCaps::onApplyOptionsOverrides(const GrContextOptions& options) { |
| 2262 | if (options.fEnableInstancedRendering) { |
| 2263 | fInstancedSupport = gr_instanced::GLInstancedRendering::CheckSupport(*this); |
| 2264 | #ifndef SK_BUILD_FOR_MAC |
| 2265 | // OS X doesn't seem to write correctly to floating point textures when using |
| 2266 | // glDraw*Indirect, regardless of the underlying GPU. |
| 2267 | fAvoidInstancedDrawsToFPTargets = true; |
| 2268 | #endif |
| 2269 | } |
Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 2270 | if (options.fUseDrawInsteadOfPartialRenderTargetWrite) { |
| 2271 | fUseDrawInsteadOfAllRenderTargetWrites = true; |
| 2272 | } |
csmartdalton | e0d3629 | 2016-07-29 08:14:20 -0700 | [diff] [blame] | 2273 | } |
Greg Daniel | 81e7bf8 | 2017-07-19 14:47:42 -0400 | [diff] [blame] | 2274 | |
| 2275 | int GrGLCaps::getSampleCount(int requestedCount, GrPixelConfig config) const { |
| 2276 | int count = fConfigTable[config].fColorSampleCounts.count(); |
| 2277 | if (!count || !this->isConfigRenderable(config, true)) { |
| 2278 | return 0; |
| 2279 | } |
| 2280 | |
| 2281 | for (int i = 0; i < count; ++i) { |
| 2282 | if (fConfigTable[config].fColorSampleCounts[i] >= requestedCount) { |
| 2283 | return fConfigTable[config].fColorSampleCounts[i]; |
| 2284 | } |
| 2285 | } |
| 2286 | return fConfigTable[config].fColorSampleCounts[count-1]; |
| 2287 | } |
| 2288 | |