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