| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* | 
| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2011 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. | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ | 
|  | 7 |  | 
| Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/core/SkPixmap.h" | 
|  | 9 | #include "include/core/SkStrokeRec.h" | 
|  | 10 | #include "include/core/SkTypes.h" | 
|  | 11 | #include "include/gpu/GrBackendSemaphore.h" | 
|  | 12 | #include "include/gpu/GrBackendSurface.h" | 
|  | 13 | #include "include/gpu/GrTypes.h" | 
|  | 14 | #include "include/private/SkHalf.h" | 
|  | 15 | #include "include/private/SkTemplates.h" | 
|  | 16 | #include "include/private/SkTo.h" | 
|  | 17 | #include "src/core/SkAutoMalloc.h" | 
|  | 18 | #include "src/core/SkConvertPixels.h" | 
|  | 19 | #include "src/core/SkMakeUnique.h" | 
|  | 20 | #include "src/core/SkMipMap.h" | 
|  | 21 | #include "src/core/SkTraceEvent.h" | 
| Brian Osman | 8518f2e | 2019-05-01 14:13:41 -0400 | [diff] [blame] | 22 | #include "src/gpu/GrContextPriv.h" | 
| Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 23 | #include "src/gpu/GrCpuBuffer.h" | 
| Robert Phillips | 459b295 | 2019-05-23 09:38:27 -0400 | [diff] [blame] | 24 | #include "src/gpu/GrDataUtils.h" | 
| Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 25 | #include "src/gpu/GrFixedClip.h" | 
|  | 26 | #include "src/gpu/GrGpuResourcePriv.h" | 
|  | 27 | #include "src/gpu/GrMesh.h" | 
|  | 28 | #include "src/gpu/GrPipeline.h" | 
|  | 29 | #include "src/gpu/GrRenderTargetPriv.h" | 
|  | 30 | #include "src/gpu/GrShaderCaps.h" | 
|  | 31 | #include "src/gpu/GrSurfaceProxyPriv.h" | 
|  | 32 | #include "src/gpu/GrTexturePriv.h" | 
|  | 33 | #include "src/gpu/gl/GrGLBuffer.h" | 
|  | 34 | #include "src/gpu/gl/GrGLGpu.h" | 
| Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 35 | #include "src/gpu/gl/GrGLOpsRenderPass.h" | 
| Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 36 | #include "src/gpu/gl/GrGLSemaphore.h" | 
|  | 37 | #include "src/gpu/gl/GrGLStencilAttachment.h" | 
|  | 38 | #include "src/gpu/gl/GrGLTextureRenderTarget.h" | 
|  | 39 | #include "src/gpu/gl/builders/GrGLShaderStringBuilder.h" | 
|  | 40 | #include "src/sksl/SkSLCompiler.h" | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 41 |  | 
| Hal Canary | c640d0d | 2018-06-13 09:59:02 -0400 | [diff] [blame] | 42 | #include <cmath> | 
|  | 43 |  | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 44 | #define GL_CALL(X) GR_GL_CALL(this->glInterface(), X) | 
| bsalomon@google.com | 56bfc5a | 2011-09-01 13:28:16 +0000 | [diff] [blame] | 45 | #define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->glInterface(), RET, X) | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 46 |  | 
| bsalomon@google.com | 4f3c253 | 2012-01-19 16:16:52 +0000 | [diff] [blame] | 47 | #if GR_GL_CHECK_ALLOC_WITH_GET_ERROR | 
|  | 48 | #define CLEAR_ERROR_BEFORE_ALLOC(iface)   GrGLClearErr(iface) | 
|  | 49 | #define GL_ALLOC_CALL(iface, call)        GR_GL_CALL_NOERRCHECK(iface, call) | 
|  | 50 | #define CHECK_ALLOC_ERROR(iface)          GR_GL_GET_ERROR(iface) | 
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 51 | #else | 
| bsalomon@google.com | 4f3c253 | 2012-01-19 16:16:52 +0000 | [diff] [blame] | 52 | #define CLEAR_ERROR_BEFORE_ALLOC(iface) | 
|  | 53 | #define GL_ALLOC_CALL(iface, call)        GR_GL_CALL(iface, call) | 
|  | 54 | #define CHECK_ALLOC_ERROR(iface)          GR_GL_NO_ERROR | 
|  | 55 | #endif | 
|  | 56 |  | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 57 | //#define USE_NSIGHT | 
|  | 58 |  | 
| bsalomon@google.com | 4bcb0c6 | 2012-02-07 16:06:47 +0000 | [diff] [blame] | 59 | /////////////////////////////////////////////////////////////////////////////// | 
|  | 60 |  | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 61 | static const GrGLenum gXfermodeEquation2Blend[] = { | 
|  | 62 | // Basic OpenGL blend equations. | 
|  | 63 | GR_GL_FUNC_ADD, | 
|  | 64 | GR_GL_FUNC_SUBTRACT, | 
|  | 65 | GR_GL_FUNC_REVERSE_SUBTRACT, | 
|  | 66 |  | 
|  | 67 | // GL_KHR_blend_equation_advanced. | 
|  | 68 | GR_GL_SCREEN, | 
|  | 69 | GR_GL_OVERLAY, | 
|  | 70 | GR_GL_DARKEN, | 
|  | 71 | GR_GL_LIGHTEN, | 
|  | 72 | GR_GL_COLORDODGE, | 
|  | 73 | GR_GL_COLORBURN, | 
|  | 74 | GR_GL_HARDLIGHT, | 
|  | 75 | GR_GL_SOFTLIGHT, | 
|  | 76 | GR_GL_DIFFERENCE, | 
|  | 77 | GR_GL_EXCLUSION, | 
|  | 78 | GR_GL_MULTIPLY, | 
|  | 79 | GR_GL_HSL_HUE, | 
|  | 80 | GR_GL_HSL_SATURATION, | 
|  | 81 | GR_GL_HSL_COLOR, | 
| Mike Klein | 3674336 | 2018-11-06 08:23:30 -0500 | [diff] [blame] | 82 | GR_GL_HSL_LUMINOSITY, | 
|  | 83 |  | 
|  | 84 | // Illegal... needs to map to something. | 
|  | 85 | GR_GL_FUNC_ADD, | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 86 | }; | 
|  | 87 | GR_STATIC_ASSERT(0 == kAdd_GrBlendEquation); | 
|  | 88 | GR_STATIC_ASSERT(1 == kSubtract_GrBlendEquation); | 
|  | 89 | GR_STATIC_ASSERT(2 == kReverseSubtract_GrBlendEquation); | 
|  | 90 | GR_STATIC_ASSERT(3 == kScreen_GrBlendEquation); | 
|  | 91 | GR_STATIC_ASSERT(4 == kOverlay_GrBlendEquation); | 
|  | 92 | GR_STATIC_ASSERT(5 == kDarken_GrBlendEquation); | 
|  | 93 | GR_STATIC_ASSERT(6 == kLighten_GrBlendEquation); | 
|  | 94 | GR_STATIC_ASSERT(7 == kColorDodge_GrBlendEquation); | 
|  | 95 | GR_STATIC_ASSERT(8 == kColorBurn_GrBlendEquation); | 
|  | 96 | GR_STATIC_ASSERT(9 == kHardLight_GrBlendEquation); | 
|  | 97 | GR_STATIC_ASSERT(10 == kSoftLight_GrBlendEquation); | 
|  | 98 | GR_STATIC_ASSERT(11 == kDifference_GrBlendEquation); | 
|  | 99 | GR_STATIC_ASSERT(12 == kExclusion_GrBlendEquation); | 
|  | 100 | GR_STATIC_ASSERT(13 == kMultiply_GrBlendEquation); | 
|  | 101 | GR_STATIC_ASSERT(14 == kHSLHue_GrBlendEquation); | 
|  | 102 | GR_STATIC_ASSERT(15 == kHSLSaturation_GrBlendEquation); | 
|  | 103 | GR_STATIC_ASSERT(16 == kHSLColor_GrBlendEquation); | 
|  | 104 | GR_STATIC_ASSERT(17 == kHSLLuminosity_GrBlendEquation); | 
| bsalomon | f7cc877 | 2015-05-11 11:21:14 -0700 | [diff] [blame] | 105 | GR_STATIC_ASSERT(SK_ARRAY_COUNT(gXfermodeEquation2Blend) == kGrBlendEquationCnt); | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 106 |  | 
| twiz@google.com | 0f31ca7 | 2011-03-18 17:38:11 +0000 | [diff] [blame] | 107 | static const GrGLenum gXfermodeCoeff2Blend[] = { | 
|  | 108 | GR_GL_ZERO, | 
|  | 109 | GR_GL_ONE, | 
|  | 110 | GR_GL_SRC_COLOR, | 
|  | 111 | GR_GL_ONE_MINUS_SRC_COLOR, | 
|  | 112 | GR_GL_DST_COLOR, | 
|  | 113 | GR_GL_ONE_MINUS_DST_COLOR, | 
|  | 114 | GR_GL_SRC_ALPHA, | 
|  | 115 | GR_GL_ONE_MINUS_SRC_ALPHA, | 
|  | 116 | GR_GL_DST_ALPHA, | 
|  | 117 | GR_GL_ONE_MINUS_DST_ALPHA, | 
|  | 118 | GR_GL_CONSTANT_COLOR, | 
|  | 119 | GR_GL_ONE_MINUS_CONSTANT_COLOR, | 
|  | 120 | GR_GL_CONSTANT_ALPHA, | 
|  | 121 | GR_GL_ONE_MINUS_CONSTANT_ALPHA, | 
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 122 |  | 
|  | 123 | // extended blend coeffs | 
|  | 124 | GR_GL_SRC1_COLOR, | 
|  | 125 | GR_GL_ONE_MINUS_SRC1_COLOR, | 
|  | 126 | GR_GL_SRC1_ALPHA, | 
|  | 127 | GR_GL_ONE_MINUS_SRC1_ALPHA, | 
| Mike Klein | 3674336 | 2018-11-06 08:23:30 -0500 | [diff] [blame] | 128 |  | 
|  | 129 | // Illegal... needs to map to something. | 
|  | 130 | GR_GL_ZERO, | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 131 | }; | 
|  | 132 |  | 
| bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 133 | bool GrGLGpu::BlendCoeffReferencesConstant(GrBlendCoeff coeff) { | 
| bsalomon@google.com | 080773c | 2011-03-15 19:09:25 +0000 | [diff] [blame] | 134 | static const bool gCoeffReferencesBlendConst[] = { | 
|  | 135 | false, | 
|  | 136 | false, | 
|  | 137 | false, | 
|  | 138 | false, | 
|  | 139 | false, | 
|  | 140 | false, | 
|  | 141 | false, | 
|  | 142 | false, | 
|  | 143 | false, | 
|  | 144 | false, | 
|  | 145 | true, | 
|  | 146 | true, | 
|  | 147 | true, | 
|  | 148 | true, | 
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 149 |  | 
|  | 150 | // extended blend coeffs | 
|  | 151 | false, | 
|  | 152 | false, | 
|  | 153 | false, | 
|  | 154 | false, | 
| Mike Klein | 3674336 | 2018-11-06 08:23:30 -0500 | [diff] [blame] | 155 |  | 
|  | 156 | // Illegal. | 
|  | 157 | false, | 
| bsalomon@google.com | 080773c | 2011-03-15 19:09:25 +0000 | [diff] [blame] | 158 | }; | 
|  | 159 | return gCoeffReferencesBlendConst[coeff]; | 
| bsalomon | f7cc877 | 2015-05-11 11:21:14 -0700 | [diff] [blame] | 160 | GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gCoeffReferencesBlendConst)); | 
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 161 |  | 
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 162 | GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff); | 
|  | 163 | GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff); | 
|  | 164 | GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff); | 
|  | 165 | GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff); | 
|  | 166 | GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff); | 
|  | 167 | GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff); | 
|  | 168 | GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff); | 
|  | 169 | GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff); | 
|  | 170 | GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff); | 
|  | 171 | GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff); | 
|  | 172 | GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff); | 
|  | 173 | GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff); | 
|  | 174 | GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff); | 
|  | 175 | GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff); | 
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 176 |  | 
| bsalomon@google.com | 4705954 | 2012-06-06 20:51:20 +0000 | [diff] [blame] | 177 | GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff); | 
|  | 178 | GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff); | 
|  | 179 | GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff); | 
|  | 180 | GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff); | 
| bsalomon@google.com | 271cffc | 2011-05-20 14:13:56 +0000 | [diff] [blame] | 181 |  | 
|  | 182 | // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope | 
| bsalomon | f7cc877 | 2015-05-11 11:21:14 -0700 | [diff] [blame] | 183 | GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gXfermodeCoeff2Blend)); | 
| bsalomon@google.com | 080773c | 2011-03-15 19:09:25 +0000 | [diff] [blame] | 184 | } | 
|  | 185 |  | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 186 | ////////////////////////////////////////////////////////////////////////////// | 
|  | 187 |  | 
|  | 188 | static int gl_target_to_binding_index(GrGLenum target) { | 
|  | 189 | switch (target) { | 
|  | 190 | case GR_GL_TEXTURE_2D: | 
|  | 191 | return 0; | 
|  | 192 | case GR_GL_TEXTURE_RECTANGLE: | 
|  | 193 | return 1; | 
|  | 194 | case GR_GL_TEXTURE_EXTERNAL: | 
|  | 195 | return 2; | 
|  | 196 | } | 
|  | 197 | SK_ABORT("Unexpected GL texture target."); | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 198 | } | 
|  | 199 |  | 
|  | 200 | GrGpuResource::UniqueID GrGLGpu::TextureUnitBindings::boundID(GrGLenum target) const { | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 201 | return fTargetBindings[gl_target_to_binding_index(target)].fBoundResourceID; | 
|  | 202 | } | 
|  | 203 |  | 
|  | 204 | bool GrGLGpu::TextureUnitBindings::hasBeenModified(GrGLenum target) const { | 
|  | 205 | return fTargetBindings[gl_target_to_binding_index(target)].fHasBeenModified; | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 206 | } | 
|  | 207 |  | 
|  | 208 | void GrGLGpu::TextureUnitBindings::setBoundID(GrGLenum target, GrGpuResource::UniqueID resourceID) { | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 209 | int targetIndex = gl_target_to_binding_index(target); | 
|  | 210 | fTargetBindings[targetIndex].fBoundResourceID = resourceID; | 
|  | 211 | fTargetBindings[targetIndex].fHasBeenModified = true; | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 212 | } | 
|  | 213 |  | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 214 | void GrGLGpu::TextureUnitBindings::invalidateForScratchUse(GrGLenum target) { | 
|  | 215 | this->setBoundID(target, GrGpuResource::UniqueID()); | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 216 | } | 
|  | 217 |  | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 218 | void GrGLGpu::TextureUnitBindings::invalidateAllTargets(bool markUnmodified) { | 
|  | 219 | for (auto& targetBinding : fTargetBindings) { | 
|  | 220 | targetBinding.fBoundResourceID.makeInvalid(); | 
|  | 221 | if (markUnmodified) { | 
|  | 222 | targetBinding.fHasBeenModified = false; | 
|  | 223 | } | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 224 | } | 
|  | 225 | } | 
|  | 226 |  | 
|  | 227 | ////////////////////////////////////////////////////////////////////////////// | 
|  | 228 |  | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 229 | static GrGLenum filter_to_gl_mag_filter(GrSamplerState::Filter filter) { | 
|  | 230 | switch (filter) { | 
|  | 231 | case GrSamplerState::Filter::kNearest: return GR_GL_NEAREST; | 
|  | 232 | case GrSamplerState::Filter::kBilerp:  return GR_GL_LINEAR; | 
|  | 233 | case GrSamplerState::Filter::kMipMap:  return GR_GL_LINEAR; | 
|  | 234 | } | 
|  | 235 | SK_ABORT("Unknown filter"); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 236 | } | 
|  | 237 |  | 
|  | 238 | static GrGLenum filter_to_gl_min_filter(GrSamplerState::Filter filter) { | 
|  | 239 | switch (filter) { | 
|  | 240 | case GrSamplerState::Filter::kNearest: return GR_GL_NEAREST; | 
|  | 241 | case GrSamplerState::Filter::kBilerp:  return GR_GL_LINEAR; | 
|  | 242 | case GrSamplerState::Filter::kMipMap:  return GR_GL_LINEAR_MIPMAP_LINEAR; | 
|  | 243 | } | 
|  | 244 | SK_ABORT("Unknown filter"); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 247 | static inline GrGLenum wrap_mode_to_gl_wrap(GrSamplerState::WrapMode wrapMode, | 
|  | 248 | const GrCaps& caps) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 249 | switch (wrapMode) { | 
|  | 250 | case GrSamplerState::WrapMode::kClamp:        return GR_GL_CLAMP_TO_EDGE; | 
|  | 251 | case GrSamplerState::WrapMode::kRepeat:       return GR_GL_REPEAT; | 
|  | 252 | case GrSamplerState::WrapMode::kMirrorRepeat: return GR_GL_MIRRORED_REPEAT; | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 253 | case GrSamplerState::WrapMode::kClampToBorder: | 
|  | 254 | // May not be supported but should have been caught earlier | 
|  | 255 | SkASSERT(caps.clampToBorderSupport()); | 
|  | 256 | return GR_GL_CLAMP_TO_BORDER; | 
| Brian Salomon | 2335644 | 2018-11-30 15:33:19 -0500 | [diff] [blame] | 257 | } | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 258 | SK_ABORT("Unknown wrap mode"); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 259 | } | 
|  | 260 |  | 
|  | 261 | /////////////////////////////////////////////////////////////////////////////// | 
|  | 262 |  | 
|  | 263 | class GrGLGpu::SamplerObjectCache { | 
|  | 264 | public: | 
|  | 265 | SamplerObjectCache(GrGLGpu* gpu) : fGpu(gpu) { | 
|  | 266 | fNumTextureUnits = fGpu->glCaps().shaderCaps()->maxFragmentSamplers(); | 
|  | 267 | fHWBoundSamplers.reset(new GrGLuint[fNumTextureUnits]); | 
|  | 268 | std::fill_n(fHWBoundSamplers.get(), fNumTextureUnits, 0); | 
|  | 269 | std::fill_n(fSamplers, kNumSamplers, 0); | 
|  | 270 | } | 
|  | 271 |  | 
|  | 272 | ~SamplerObjectCache() { | 
|  | 273 | if (!fNumTextureUnits) { | 
|  | 274 | // We've already been abandoned. | 
|  | 275 | return; | 
|  | 276 | } | 
| Chris Dalton | 703fe68 | 2019-05-15 12:58:12 -0600 | [diff] [blame] | 277 | for (GrGLuint sampler : fSamplers) { | 
|  | 278 | // The spec states that "zero" values should be silently ignored, however they still | 
|  | 279 | // trigger GL errors on some NVIDIA platforms. | 
|  | 280 | if (sampler) { | 
|  | 281 | GR_GL_CALL(fGpu->glInterface(), DeleteSamplers(1, &sampler)); | 
|  | 282 | } | 
|  | 283 | } | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 284 | } | 
|  | 285 |  | 
|  | 286 | void bindSampler(int unitIdx, const GrSamplerState& state) { | 
|  | 287 | int index = StateToIndex(state); | 
|  | 288 | if (!fSamplers[index]) { | 
|  | 289 | GrGLuint s; | 
|  | 290 | GR_GL_CALL(fGpu->glInterface(), GenSamplers(1, &s)); | 
|  | 291 | if (!s) { | 
|  | 292 | return; | 
|  | 293 | } | 
|  | 294 | fSamplers[index] = s; | 
|  | 295 | auto minFilter = filter_to_gl_min_filter(state.filter()); | 
|  | 296 | auto magFilter = filter_to_gl_mag_filter(state.filter()); | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 297 | auto wrapX = wrap_mode_to_gl_wrap(state.wrapModeX(), fGpu->glCaps()); | 
|  | 298 | auto wrapY = wrap_mode_to_gl_wrap(state.wrapModeY(), fGpu->glCaps()); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 299 | GR_GL_CALL(fGpu->glInterface(), | 
|  | 300 | SamplerParameteri(s, GR_GL_TEXTURE_MIN_FILTER, minFilter)); | 
|  | 301 | GR_GL_CALL(fGpu->glInterface(), | 
|  | 302 | SamplerParameteri(s, GR_GL_TEXTURE_MAG_FILTER, magFilter)); | 
|  | 303 | GR_GL_CALL(fGpu->glInterface(), SamplerParameteri(s, GR_GL_TEXTURE_WRAP_S, wrapX)); | 
|  | 304 | GR_GL_CALL(fGpu->glInterface(), SamplerParameteri(s, GR_GL_TEXTURE_WRAP_T, wrapY)); | 
|  | 305 | } | 
|  | 306 | if (fHWBoundSamplers[unitIdx] != fSamplers[index]) { | 
|  | 307 | GR_GL_CALL(fGpu->glInterface(), BindSampler(unitIdx, fSamplers[index])); | 
|  | 308 | fHWBoundSamplers[unitIdx] = fSamplers[index]; | 
|  | 309 | } | 
|  | 310 | } | 
|  | 311 |  | 
|  | 312 | void invalidateBindings() { | 
|  | 313 | // When we have sampler support we always use samplers. So setting these to zero will cause | 
|  | 314 | // a rebind on next usage. | 
|  | 315 | std::fill_n(fHWBoundSamplers.get(), fNumTextureUnits, 0); | 
|  | 316 | } | 
|  | 317 |  | 
|  | 318 | void abandon() { | 
|  | 319 | fHWBoundSamplers.reset(); | 
|  | 320 | fNumTextureUnits = 0; | 
|  | 321 | } | 
|  | 322 |  | 
|  | 323 | void release() { | 
|  | 324 | if (!fNumTextureUnits) { | 
|  | 325 | // We've already been abandoned. | 
|  | 326 | return; | 
|  | 327 | } | 
|  | 328 | GR_GL_CALL(fGpu->glInterface(), DeleteSamplers(kNumSamplers, fSamplers)); | 
|  | 329 | std::fill_n(fSamplers, kNumSamplers, 0); | 
|  | 330 | // Deleting a bound sampler implicitly binds sampler 0. | 
|  | 331 | std::fill_n(fHWBoundSamplers.get(), fNumTextureUnits, 0); | 
|  | 332 | } | 
|  | 333 |  | 
|  | 334 | private: | 
|  | 335 | static int StateToIndex(const GrSamplerState& state) { | 
|  | 336 | int filter = static_cast<int>(state.filter()); | 
|  | 337 | SkASSERT(filter >= 0 && filter < 3); | 
|  | 338 | int wrapX = static_cast<int>(state.wrapModeX()); | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 339 | SkASSERT(wrapX >= 0 && wrapX < 4); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 340 | int wrapY = static_cast<int>(state.wrapModeY()); | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 341 | SkASSERT(wrapY >= 0 && wrapY < 4); | 
|  | 342 | int idx = 16 * filter + 4 * wrapX + wrapY; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 343 | SkASSERT(idx < kNumSamplers); | 
|  | 344 | return idx; | 
|  | 345 | } | 
|  | 346 |  | 
|  | 347 | GrGLGpu* fGpu; | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 348 | static constexpr int kNumSamplers = 48; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 349 | std::unique_ptr<GrGLuint[]> fHWBoundSamplers; | 
|  | 350 | GrGLuint fSamplers[kNumSamplers]; | 
|  | 351 | int fNumTextureUnits; | 
|  | 352 | }; | 
|  | 353 |  | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 354 | /////////////////////////////////////////////////////////////////////////////// | 
|  | 355 |  | 
| Brian Salomon | 384fab4 | 2017-12-07 12:33:05 -0500 | [diff] [blame] | 356 | sk_sp<GrGpu> GrGLGpu::Make(sk_sp<const GrGLInterface> interface, const GrContextOptions& options, | 
|  | 357 | GrContext* context) { | 
|  | 358 | if (!interface) { | 
| Brian Salomon | 3d6801e | 2017-12-11 10:06:31 -0500 | [diff] [blame] | 359 | interface = GrGLMakeNativeInterface(); | 
|  | 360 | // For clients that have written their own GrGLCreateNativeInterface and haven't yet updated | 
|  | 361 | // to GrGLMakeNativeInterface. | 
|  | 362 | if (!interface) { | 
|  | 363 | interface = sk_ref_sp(GrGLCreateNativeInterface()); | 
|  | 364 | } | 
| Brian Salomon | 384fab4 | 2017-12-07 12:33:05 -0500 | [diff] [blame] | 365 | if (!interface) { | 
|  | 366 | return nullptr; | 
|  | 367 | } | 
| bsalomon | 424cc26 | 2015-05-22 10:37:30 -0700 | [diff] [blame] | 368 | } | 
| Jim Van Verth | 7633477 | 2017-05-05 16:46:05 -0400 | [diff] [blame] | 369 | #ifdef USE_NSIGHT | 
|  | 370 | const_cast<GrContextOptions&>(options).fSuppressPathRendering = true; | 
|  | 371 | #endif | 
| Brian Salomon | 8ab1cc4 | 2017-12-07 12:40:00 -0500 | [diff] [blame] | 372 | auto glContext = GrGLContext::Make(std::move(interface), options); | 
|  | 373 | if (!glContext) { | 
|  | 374 | return nullptr; | 
| bsalomon | 424cc26 | 2015-05-22 10:37:30 -0700 | [diff] [blame] | 375 | } | 
| Brian Salomon | 8ab1cc4 | 2017-12-07 12:40:00 -0500 | [diff] [blame] | 376 | return sk_sp<GrGpu>(new GrGLGpu(std::move(glContext), context)); | 
| bsalomon | 424cc26 | 2015-05-22 10:37:30 -0700 | [diff] [blame] | 377 | } | 
|  | 378 |  | 
| Brian Salomon | 8ab1cc4 | 2017-12-07 12:40:00 -0500 | [diff] [blame] | 379 | GrGLGpu::GrGLGpu(std::unique_ptr<GrGLContext> ctx, GrContext* context) | 
|  | 380 | : GrGpu(context) | 
|  | 381 | , fGLContext(std::move(ctx)) | 
|  | 382 | , fProgramCache(new ProgramCache(this)) | 
|  | 383 | , fHWProgramID(0) | 
|  | 384 | , fTempSrcFBOID(0) | 
|  | 385 | , fTempDstFBOID(0) | 
| Brian Osman | a63593a | 2018-12-06 15:54:53 -0500 | [diff] [blame] | 386 | , fStencilClearFBOID(0) { | 
| Brian Salomon | 8ab1cc4 | 2017-12-07 12:40:00 -0500 | [diff] [blame] | 387 | SkASSERT(fGLContext); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 388 | GrGLClearErr(this->glInterface()); | 
| Brian Salomon | 8ab1cc4 | 2017-12-07 12:40:00 -0500 | [diff] [blame] | 389 | fCaps = sk_ref_sp(fGLContext->caps()); | 
| bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 390 |  | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 391 | fHWTextureUnitBindings.reset(this->numTextureUnits()); | 
| commit-bot@chromium.org | a15f7e5 | 2013-06-05 23:29:25 +0000 | [diff] [blame] | 392 |  | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 393 | this->hwBufferState(GrGpuBufferType::kVertex)->fGLTarget = GR_GL_ARRAY_BUFFER; | 
|  | 394 | this->hwBufferState(GrGpuBufferType::kIndex)->fGLTarget = GR_GL_ELEMENT_ARRAY_BUFFER; | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 395 | if (GrGLCaps::kChromium_TransferBufferType == this->glCaps().transferBufferType()) { | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 396 | this->hwBufferState(GrGpuBufferType::kXferCpuToGpu)->fGLTarget = | 
|  | 397 | GR_GL_PIXEL_UNPACK_TRANSFER_BUFFER_CHROMIUM; | 
|  | 398 | this->hwBufferState(GrGpuBufferType::kXferGpuToCpu)->fGLTarget = | 
|  | 399 | GR_GL_PIXEL_PACK_TRANSFER_BUFFER_CHROMIUM; | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 400 | } else { | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 401 | this->hwBufferState(GrGpuBufferType::kXferCpuToGpu)->fGLTarget = GR_GL_PIXEL_UNPACK_BUFFER; | 
|  | 402 | this->hwBufferState(GrGpuBufferType::kXferGpuToCpu)->fGLTarget = GR_GL_PIXEL_PACK_BUFFER; | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 403 | } | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 404 | for (int i = 0; i < kGrGpuBufferTypeCount; ++i) { | 
| Rob Phillips | bc534f6 | 2017-09-05 19:56:19 -0400 | [diff] [blame] | 405 | fHWBufferState[i].invalidate(); | 
|  | 406 | } | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 407 | GR_STATIC_ASSERT(4 == SK_ARRAY_COUNT(fHWBufferState)); | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 408 |  | 
|  | 409 | if (this->glCaps().shaderCaps()->pathRenderingSupport()) { | 
|  | 410 | fPathRendering.reset(new GrGLPathRendering(this)); | 
|  | 411 | } | 
|  | 412 |  | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 413 | if (this->glCaps().samplerObjectSupport()) { | 
|  | 414 | fSamplerObjectCache.reset(new SamplerObjectCache(this)); | 
|  | 415 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 416 | } | 
|  | 417 |  | 
| bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 418 | GrGLGpu::~GrGLGpu() { | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 419 | // Ensure any GrGpuResource objects get deleted first, since they may require a working GrGLGpu | 
|  | 420 | // to release the resources held by the objects themselves. | 
| kkinnunen | 702501d | 2016-01-13 23:36:45 -0800 | [diff] [blame] | 421 | fPathRendering.reset(); | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 422 | fCopyProgramArrayBuffer.reset(); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 423 | fMipmapProgramArrayBuffer.reset(); | 
| kkinnunen | 702501d | 2016-01-13 23:36:45 -0800 | [diff] [blame] | 424 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 425 | fHWProgram.reset(); | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 426 | if (fHWProgramID) { | 
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 427 | // detach the current program so there is no confusion on OpenGL's part | 
|  | 428 | // that we want it to be deleted | 
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 429 | GL_CALL(UseProgram(0)); | 
|  | 430 | } | 
|  | 431 |  | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 432 | if (fTempSrcFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 433 | this->deleteFramebuffer(fTempSrcFBOID); | 
| egdaniel | 0f5f967 | 2015-02-03 11:10:51 -0800 | [diff] [blame] | 434 | } | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 435 | if (fTempDstFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 436 | this->deleteFramebuffer(fTempDstFBOID); | 
| egdaniel | 0f5f967 | 2015-02-03 11:10:51 -0800 | [diff] [blame] | 437 | } | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 438 | if (fStencilClearFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 439 | this->deleteFramebuffer(fStencilClearFBOID); | 
| bsalomon | dd3143b | 2015-02-23 09:27:45 -0800 | [diff] [blame] | 440 | } | 
| egdaniel | 0f5f967 | 2015-02-03 11:10:51 -0800 | [diff] [blame] | 441 |  | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 442 | for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) { | 
|  | 443 | if (0 != fCopyPrograms[i].fProgram) { | 
|  | 444 | GL_CALL(DeleteProgram(fCopyPrograms[i].fProgram)); | 
|  | 445 | } | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 446 | } | 
| bsalomon | 6dea83f | 2015-12-03 12:58:06 -0800 | [diff] [blame] | 447 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 448 | for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) { | 
|  | 449 | if (0 != fMipmapPrograms[i].fProgram) { | 
|  | 450 | GL_CALL(DeleteProgram(fMipmapPrograms[i].fProgram)); | 
|  | 451 | } | 
|  | 452 | } | 
|  | 453 |  | 
| bsalomon@google.com | c1d2a58 | 2012-06-01 15:08:19 +0000 | [diff] [blame] | 454 | delete fProgramCache; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 455 | fSamplerObjectCache.reset(); | 
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 456 | } | 
|  | 457 |  | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 458 | void GrGLGpu::disconnect(DisconnectType type) { | 
|  | 459 | INHERITED::disconnect(type); | 
|  | 460 | if (DisconnectType::kCleanup == type) { | 
|  | 461 | if (fHWProgramID) { | 
|  | 462 | GL_CALL(UseProgram(0)); | 
|  | 463 | } | 
|  | 464 | if (fTempSrcFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 465 | this->deleteFramebuffer(fTempSrcFBOID); | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 466 | } | 
|  | 467 | if (fTempDstFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 468 | this->deleteFramebuffer(fTempDstFBOID); | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 469 | } | 
|  | 470 | if (fStencilClearFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 471 | this->deleteFramebuffer(fStencilClearFBOID); | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 472 | } | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 473 | for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) { | 
|  | 474 | if (fCopyPrograms[i].fProgram) { | 
|  | 475 | GL_CALL(DeleteProgram(fCopyPrograms[i].fProgram)); | 
|  | 476 | } | 
|  | 477 | } | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 478 | for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) { | 
|  | 479 | if (fMipmapPrograms[i].fProgram) { | 
|  | 480 | GL_CALL(DeleteProgram(fMipmapPrograms[i].fProgram)); | 
|  | 481 | } | 
|  | 482 | } | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 483 |  | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 484 | if (fSamplerObjectCache) { | 
|  | 485 | fSamplerObjectCache->release(); | 
|  | 486 | } | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 487 | } else { | 
|  | 488 | if (fProgramCache) { | 
|  | 489 | fProgramCache->abandon(); | 
|  | 490 | } | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 491 | if (fSamplerObjectCache) { | 
|  | 492 | fSamplerObjectCache->abandon(); | 
|  | 493 | } | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 494 | } | 
|  | 495 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 496 | fHWProgram.reset(); | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 497 | delete fProgramCache; | 
|  | 498 | fProgramCache = nullptr; | 
|  | 499 |  | 
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 500 | fHWProgramID = 0; | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 501 | fTempSrcFBOID = 0; | 
|  | 502 | fTempDstFBOID = 0; | 
|  | 503 | fStencilClearFBOID = 0; | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 504 | fCopyProgramArrayBuffer.reset(); | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 505 | for (size_t i = 0; i < SK_ARRAY_COUNT(fCopyPrograms); ++i) { | 
|  | 506 | fCopyPrograms[i].fProgram = 0; | 
|  | 507 | } | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 508 | fMipmapProgramArrayBuffer.reset(); | 
|  | 509 | for (size_t i = 0; i < SK_ARRAY_COUNT(fMipmapPrograms); ++i) { | 
|  | 510 | fMipmapPrograms[i].fProgram = 0; | 
|  | 511 | } | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 512 |  | 
| jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 513 | if (this->glCaps().shaderCaps()->pathRenderingSupport()) { | 
| bsalomon | 6e2aad4 | 2016-04-01 11:54:31 -0700 | [diff] [blame] | 514 | this->glPathRendering()->disconnect(type); | 
| bsalomon | c8dc1f7 | 2014-08-21 13:02:13 -0700 | [diff] [blame] | 515 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 516 | } | 
|  | 517 |  | 
| bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 518 | /////////////////////////////////////////////////////////////////////////////// | 
| bsalomon@google.com | a85449d | 2011-11-19 02:36:05 +0000 | [diff] [blame] | 519 |  | 
| bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 520 | void GrGLGpu::onResetContext(uint32_t resetBits) { | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 521 | if (resetBits & kMisc_GrGLBackendState) { | 
| Brian Salomon | f086167 | 2017-05-08 11:10:10 -0400 | [diff] [blame] | 522 | // we don't use the zb at all | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 523 | GL_CALL(Disable(GR_GL_DEPTH_TEST)); | 
|  | 524 | GL_CALL(DepthMask(GR_GL_FALSE)); | 
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 525 |  | 
| Brian Salomon | f086167 | 2017-05-08 11:10:10 -0400 | [diff] [blame] | 526 | // We don't use face culling. | 
|  | 527 | GL_CALL(Disable(GR_GL_CULL_FACE)); | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 528 | // We do use separate stencil. Our algorithms don't care which face is front vs. back so | 
|  | 529 | // just set this to the default for self-consistency. | 
|  | 530 | GL_CALL(FrontFace(GR_GL_CCW)); | 
| Brian Salomon | f086167 | 2017-05-08 11:10:10 -0400 | [diff] [blame] | 531 |  | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 532 | this->hwBufferState(GrGpuBufferType::kXferCpuToGpu)->invalidate(); | 
|  | 533 | this->hwBufferState(GrGpuBufferType::kXferGpuToCpu)->invalidate(); | 
| cdalton | c161310 | 2016-03-16 07:48:20 -0700 | [diff] [blame] | 534 |  | 
| Kevin Lubick | 8aa203c | 2019-03-19 13:23:10 -0400 | [diff] [blame] | 535 | if (GR_IS_GR_GL(this->glStandard())) { | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 536 | #ifndef USE_NSIGHT | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 537 | // Desktop-only state that we never change | 
|  | 538 | if (!this->glCaps().isCoreProfile()) { | 
|  | 539 | GL_CALL(Disable(GR_GL_POINT_SMOOTH)); | 
|  | 540 | GL_CALL(Disable(GR_GL_LINE_SMOOTH)); | 
|  | 541 | GL_CALL(Disable(GR_GL_POLYGON_SMOOTH)); | 
|  | 542 | GL_CALL(Disable(GR_GL_POLYGON_STIPPLE)); | 
|  | 543 | GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP)); | 
|  | 544 | GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP)); | 
|  | 545 | } | 
|  | 546 | // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a | 
|  | 547 | // core profile. This seems like a bug since the core spec removes any mention of | 
|  | 548 | // GL_ARB_imaging. | 
|  | 549 | if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) { | 
|  | 550 | GL_CALL(Disable(GR_GL_COLOR_TABLE)); | 
|  | 551 | } | 
|  | 552 | GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL)); | 
| Jim Van Verth | 609e7cc | 2017-03-30 14:28:08 -0400 | [diff] [blame] | 553 |  | 
| Jim Van Verth | fbdc080 | 2017-05-02 16:15:53 -0400 | [diff] [blame] | 554 | if (this->caps()->wireframeMode()) { | 
|  | 555 | GL_CALL(PolygonMode(GR_GL_FRONT_AND_BACK, GR_GL_LINE)); | 
|  | 556 | } else { | 
|  | 557 | GL_CALL(PolygonMode(GR_GL_FRONT_AND_BACK, GR_GL_FILL)); | 
|  | 558 | } | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 559 | #endif | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 560 | // Since ES doesn't support glPointSize at all we always use the VS to | 
|  | 561 | // set the point size | 
|  | 562 | GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE)); | 
|  | 563 |  | 
| bsalomon@google.com | 2b1b8c0 | 2013-02-28 22:06:02 +0000 | [diff] [blame] | 564 | } | 
| joshualitt | 5816233 | 2014-08-01 06:44:53 -0700 | [diff] [blame] | 565 |  | 
| Kevin Lubick | 8aa203c | 2019-03-19 13:23:10 -0400 | [diff] [blame] | 566 | if (GR_IS_GR_GL_ES(this->glStandard()) && | 
| Brian Salomon | 8bc352c | 2019-01-28 09:05:22 -0500 | [diff] [blame] | 567 | this->glCaps().fbFetchRequiresEnablePerSample()) { | 
| joshualitt | 5816233 | 2014-08-01 06:44:53 -0700 | [diff] [blame] | 568 | // The arm extension requires specifically enabling MSAA fetching per sample. | 
|  | 569 | // On some devices this may have a perf hit.  Also multiple render targets are disabled | 
| Brian Salomon | 8bc352c | 2019-01-28 09:05:22 -0500 | [diff] [blame] | 570 | GL_CALL(Enable(GR_GL_FETCH_PER_SAMPLE)); | 
| joshualitt | 5816233 | 2014-08-01 06:44:53 -0700 | [diff] [blame] | 571 | } | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 572 | fHWWriteToColor = kUnknown_TriState; | 
|  | 573 | // we only ever use lines in hairline mode | 
|  | 574 | GL_CALL(LineWidth(1)); | 
| bsalomon | aca31fe | 2015-09-22 11:38:46 -0700 | [diff] [blame] | 575 | GL_CALL(Disable(GR_GL_DITHER)); | 
| Brian Salomon | 805cc7a | 2019-01-28 09:52:34 -0500 | [diff] [blame] | 576 |  | 
|  | 577 | fHWClearColor[0] = fHWClearColor[1] = fHWClearColor[2] = fHWClearColor[3] = SK_FloatNaN; | 
| bsalomon@google.com | cad107b | 2013-06-28 14:32:08 +0000 | [diff] [blame] | 578 | } | 
| edisonn@google.com | ba66999 | 2013-06-28 16:03:21 +0000 | [diff] [blame] | 579 |  | 
| egdaniel | b414f25 | 2014-07-29 13:15:47 -0700 | [diff] [blame] | 580 | if (resetBits & kMSAAEnable_GrGLBackendState) { | 
|  | 581 | fMSAAEnabled = kUnknown_TriState; | 
| vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 582 |  | 
| Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 583 | if (this->caps()->mixedSamplesSupport()) { | 
| cdalton | af8bc7d | 2016-02-05 09:35:20 -0800 | [diff] [blame] | 584 | // The skia blend modes all use premultiplied alpha and therefore expect RGBA coverage | 
|  | 585 | // modulation. This state has no effect when not rendering to a mixed sampled target. | 
| vbuzinov | dded696 | 2015-06-12 08:59:45 -0700 | [diff] [blame] | 586 | GL_CALL(CoverageModulation(GR_GL_RGBA)); | 
|  | 587 | } | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 588 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 589 |  | 
| commit-bot@chromium.org | 46fbfe0 | 2013-08-30 15:52:12 +0000 | [diff] [blame] | 590 | fHWActiveTextureUnitIdx = -1; // invalid | 
| Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 591 | fLastPrimitiveType = static_cast<GrPrimitiveType>(-1); | 
| commit-bot@chromium.org | 46fbfe0 | 2013-08-30 15:52:12 +0000 | [diff] [blame] | 592 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 593 | if (resetBits & kTextureBinding_GrGLBackendState) { | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 594 | for (int s = 0; s < this->numTextureUnits(); ++s) { | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 595 | fHWTextureUnitBindings[s].invalidateAllTargets(false); | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 596 | } | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 597 | if (fSamplerObjectCache) { | 
|  | 598 | fSamplerObjectCache->invalidateBindings(); | 
|  | 599 | } | 
| bsalomon@google.com | 8531c1c | 2011-01-13 19:52:45 +0000 | [diff] [blame] | 600 | } | 
| bsalomon@google.com | 316f9923 | 2011-01-13 21:28:12 +0000 | [diff] [blame] | 601 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 602 | if (resetBits & kBlend_GrGLBackendState) { | 
|  | 603 | fHWBlendState.invalidate(); | 
|  | 604 | } | 
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 605 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 606 | if (resetBits & kView_GrGLBackendState) { | 
|  | 607 | fHWScissorSettings.invalidate(); | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 608 | fHWWindowRectsState.invalidate(); | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 609 | fHWViewport.invalidate(); | 
|  | 610 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 611 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 612 | if (resetBits & kStencil_GrGLBackendState) { | 
|  | 613 | fHWStencilSettings.invalidate(); | 
|  | 614 | fHWStencilTestEnabled = kUnknown_TriState; | 
|  | 615 | } | 
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 616 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 617 | // Vertex | 
|  | 618 | if (resetBits & kVertex_GrGLBackendState) { | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 619 | fHWVertexArrayState.invalidate(); | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 620 | this->hwBufferState(GrGpuBufferType::kVertex)->invalidate(); | 
|  | 621 | this->hwBufferState(GrGpuBufferType::kIndex)->invalidate(); | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 622 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 623 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 624 | if (resetBits & kRenderTarget_GrGLBackendState) { | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 625 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| bsalomon | 16921ec | 2015-07-30 15:34:56 -0700 | [diff] [blame] | 626 | fHWSRGBFramebuffer = kUnknown_TriState; | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 627 | } | 
| bsalomon@google.com | 8ef3fd0 | 2011-11-21 15:53:13 +0000 | [diff] [blame] | 628 |  | 
| commit-bot@chromium.org | 0a6fe71 | 2014-04-23 19:26:26 +0000 | [diff] [blame] | 629 | if (resetBits & kPathRendering_GrGLBackendState) { | 
| jvanverth | e9c0fc6 | 2015-04-29 11:18:05 -0700 | [diff] [blame] | 630 | if (this->caps()->shaderCaps()->pathRenderingSupport()) { | 
| kkinnunen | ccdaa04 | 2014-08-20 01:36:23 -0700 | [diff] [blame] | 631 | this->glPathRendering()->resetContext(); | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 632 | } | 
| bsalomon@google.com | 05a718c | 2012-06-29 14:01:53 +0000 | [diff] [blame] | 633 | } | 
| bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 634 |  | 
| bsalomon@google.com | 8ef3fd0 | 2011-11-21 15:53:13 +0000 | [diff] [blame] | 635 | // we assume these values | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 636 | if (resetBits & kPixelStore_GrGLBackendState) { | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 637 | if (this->caps()->writePixelsRowBytesSupport()) { | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 638 | GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0)); | 
|  | 639 | } | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 640 | if (this->glCaps().readPixelsRowBytesSupport()) { | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 641 | GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0)); | 
|  | 642 | } | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 643 | if (this->glCaps().packFlipYSupport()) { | 
|  | 644 | GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE)); | 
|  | 645 | } | 
| bsalomon@google.com | 56d11e0 | 2011-11-30 19:59:08 +0000 | [diff] [blame] | 646 | } | 
| bsalomon@google.com | 5739d2c | 2012-05-31 15:07:19 +0000 | [diff] [blame] | 647 |  | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 648 | if (resetBits & kProgram_GrGLBackendState) { | 
|  | 649 | fHWProgramID = 0; | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 650 | fHWProgram.reset(); | 
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 651 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 652 | ++fResetTimestampForTextureParameters; | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 653 | } | 
|  | 654 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 655 | static bool check_backend_texture(const GrBackendTexture& backendTex, const GrColorType colorType, | 
|  | 656 | const GrGLCaps& caps, GrGLTexture::Desc* desc, | 
|  | 657 | bool skipRectTexSupportCheck = false) { | 
| Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 658 | GrGLTextureInfo info; | 
| Robert Phillips | 1cd1ed8 | 2019-07-23 13:21:01 -0400 | [diff] [blame] | 659 | if (!backendTex.getGLTextureInfo(&info) || !info.fID || !info.fFormat) { | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 660 | return false; | 
| bsalomon | 091f60c | 2015-11-10 11:54:56 -0800 | [diff] [blame] | 661 | } | 
| robertphillips@google.com | b72e5d3 | 2012-10-30 15:18:10 +0000 | [diff] [blame] | 662 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 663 | desc->fSize = {backendTex.width(), backendTex.height()}; | 
|  | 664 | desc->fTarget = info.fTarget; | 
|  | 665 | desc->fID = info.fID; | 
|  | 666 | desc->fFormat = GrGLFormatFromGLEnum(info.fFormat); | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 667 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 668 | if (desc->fFormat == GrGLFormat::kUnknown) { | 
|  | 669 | return false; | 
|  | 670 | } | 
|  | 671 | if (GR_GL_TEXTURE_EXTERNAL == desc->fTarget) { | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 672 | if (!caps.shaderCaps()->externalTextureSupport()) { | 
|  | 673 | return false; | 
|  | 674 | } | 
| Brian Salomon | f04fb44 | 2019-08-08 16:06:29 -0400 | [diff] [blame] | 675 | } else if (GR_GL_TEXTURE_RECTANGLE == desc->fTarget) { | 
|  | 676 | if (!caps.rectangleTextureSupport() && !skipRectTexSupportCheck) { | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 677 | return false; | 
|  | 678 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 679 | } else if (GR_GL_TEXTURE_2D != desc->fTarget) { | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 680 | return false; | 
|  | 681 | } | 
| Brian Salomon | e8a766b | 2019-07-19 14:24:36 -0400 | [diff] [blame] | 682 | if (backendTex.isProtected()) { | 
|  | 683 | // Not supported in GL backend at this time. | 
|  | 684 | return false; | 
|  | 685 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 686 |  | 
|  | 687 | desc->fConfig = caps.getConfigFromBackendFormat(backendTex.getBackendFormat(), colorType); | 
|  | 688 | SkASSERT(desc->fConfig != kUnknown_GrPixelConfig); | 
|  | 689 |  | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 690 | return true; | 
|  | 691 | } | 
|  | 692 |  | 
|  | 693 | sk_sp<GrTexture> GrGLGpu::onWrapBackendTexture(const GrBackendTexture& backendTex, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 694 | GrColorType colorType, GrWrapOwnership ownership, | 
| Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 695 | GrWrapCacheable cacheable, GrIOType ioType) { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 696 | GrGLTexture::Desc desc; | 
|  | 697 | if (!check_backend_texture(backendTex, colorType, this->glCaps(), &desc)) { | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 698 | return nullptr; | 
|  | 699 | } | 
| Robert Phillips | 1cd1ed8 | 2019-07-23 13:21:01 -0400 | [diff] [blame] | 700 |  | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 701 | if (kBorrow_GrWrapOwnership == ownership) { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 702 | desc.fOwnership = GrBackendObjectOwnership::kBorrowed; | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 703 | } else { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 704 | desc.fOwnership = GrBackendObjectOwnership::kOwned; | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 705 | } | 
| bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 706 |  | 
| Greg Daniel | 177e695 | 2017-10-12 12:27:11 -0400 | [diff] [blame] | 707 | GrMipMapsStatus mipMapsStatus = backendTex.hasMipMaps() ? GrMipMapsStatus::kValid | 
|  | 708 | : GrMipMapsStatus::kNotAllocated; | 
|  | 709 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 710 | auto texture = GrGLTexture::MakeWrapped(this, mipMapsStatus, desc, | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 711 | backendTex.getGLTextureParams(), cacheable, ioType); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 712 | // We don't know what parameters are already set on wrapped textures. | 
|  | 713 | texture->textureParamsModified(); | 
| Brian Salomon | 9c73e3d | 2019-08-15 10:55:49 -0400 | [diff] [blame] | 714 | return texture; | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 715 | } | 
|  | 716 |  | 
|  | 717 | sk_sp<GrTexture> GrGLGpu::onWrapRenderableBackendTexture(const GrBackendTexture& backendTex, | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 718 | int sampleCnt, | 
| Robert Phillips | 0902c98 | 2019-07-16 07:47:56 -0400 | [diff] [blame] | 719 | GrColorType colorType, | 
| Brian Salomon | aa6ca0a | 2019-01-24 16:03:07 -0500 | [diff] [blame] | 720 | GrWrapOwnership ownership, | 
|  | 721 | GrWrapCacheable cacheable) { | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 722 | const GrGLCaps& caps = this->glCaps(); | 
|  | 723 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 724 | GrGLTexture::Desc desc; | 
|  | 725 | if (!check_backend_texture(backendTex, colorType, this->glCaps(), &desc)) { | 
| bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 726 | return nullptr; | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 727 | } | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 728 | SkASSERT(caps.isFormatRenderable(desc.fFormat, sampleCnt)); | 
|  | 729 | SkASSERT(caps.isFormatTexturable(desc.fFormat)); | 
| bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 730 |  | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 731 | // We don't support rendering to a EXTERNAL texture. | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 732 | if (GR_GL_TEXTURE_EXTERNAL == desc.fTarget) { | 
| bsalomon | a98419b | 2015-11-23 07:09:50 -0800 | [diff] [blame] | 733 | return nullptr; | 
|  | 734 | } | 
| bsalomon | 10528f1 | 2015-10-14 12:54:52 -0700 | [diff] [blame] | 735 |  | 
| Brian Osman | 766fcbb | 2017-03-13 09:33:09 -0400 | [diff] [blame] | 736 | if (kBorrow_GrWrapOwnership == ownership) { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 737 | desc.fOwnership = GrBackendObjectOwnership::kBorrowed; | 
| Brian Osman | 766fcbb | 2017-03-13 09:33:09 -0400 | [diff] [blame] | 738 | } else { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 739 | desc.fOwnership = GrBackendObjectOwnership::kOwned; | 
| bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 740 | } | 
| bsalomon | b15b4c1 | 2014-10-29 12:41:57 -0700 | [diff] [blame] | 741 |  | 
| Robert Phillips | 0902c98 | 2019-07-16 07:47:56 -0400 | [diff] [blame] | 742 |  | 
| Greg Daniel | 6fa62e2 | 2019-08-07 15:52:37 -0400 | [diff] [blame] | 743 | sampleCnt = caps.getRenderTargetSampleCount(sampleCnt, desc.fFormat); | 
|  | 744 | SkASSERT(sampleCnt); | 
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 745 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 746 | GrGLRenderTarget::IDs rtIDs; | 
|  | 747 | if (!this->createRenderTargetObjects(desc, sampleCnt, &rtIDs)) { | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 748 | return nullptr; | 
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 749 | } | 
| Greg Daniel | 177e695 | 2017-10-12 12:27:11 -0400 | [diff] [blame] | 750 |  | 
|  | 751 | GrMipMapsStatus mipMapsStatus = backendTex.hasMipMaps() ? GrMipMapsStatus::kDirty | 
|  | 752 | : GrMipMapsStatus::kNotAllocated; | 
|  | 753 |  | 
| Brian Salomon | aa6ca0a | 2019-01-24 16:03:07 -0500 | [diff] [blame] | 754 | sk_sp<GrGLTextureRenderTarget> texRT(GrGLTextureRenderTarget::MakeWrapped( | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 755 | this, sampleCnt, desc, backendTex.getGLTextureParams(), rtIDs, cacheable, | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 756 | mipMapsStatus)); | 
| Brian Salomon | d17f658 | 2017-07-19 18:28:58 -0400 | [diff] [blame] | 757 | texRT->baseLevelWasBoundToFBO(); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 758 | // We don't know what parameters are already set on wrapped textures. | 
|  | 759 | texRT->textureParamsModified(); | 
| Brian Salomon | 9c73e3d | 2019-08-15 10:55:49 -0400 | [diff] [blame] | 760 | return texRT; | 
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 761 | } | 
|  | 762 |  | 
| Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 763 | sk_sp<GrRenderTarget> GrGLGpu::onWrapBackendRenderTarget(const GrBackendRenderTarget& backendRT, | 
|  | 764 | GrColorType grColorType) { | 
| Greg Daniel | 323fbcf | 2018-04-10 13:46:30 -0400 | [diff] [blame] | 765 | GrGLFramebufferInfo info; | 
|  | 766 | if (!backendRT.getGLFramebufferInfo(&info)) { | 
| Greg Daniel | bcf612b | 2017-05-01 13:50:58 +0000 | [diff] [blame] | 767 | return nullptr; | 
|  | 768 | } | 
|  | 769 |  | 
| Brian Salomon | e8a766b | 2019-07-19 14:24:36 -0400 | [diff] [blame] | 770 | if (backendRT.isProtected()) { | 
|  | 771 | // Not supported in GL at this time. | 
|  | 772 | return nullptr; | 
|  | 773 | } | 
|  | 774 |  | 
| Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 775 | const auto format = backendRT.getBackendFormat().asGLFormat(); | 
| Greg Daniel | 6fa62e2 | 2019-08-07 15:52:37 -0400 | [diff] [blame] | 776 | if (!this->glCaps().isFormatRenderable(format, backendRT.sampleCnt())) { | 
|  | 777 | return nullptr; | 
|  | 778 | } | 
|  | 779 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 780 | GrGLRenderTarget::IDs rtIDs; | 
|  | 781 | rtIDs.fRTFBOID = info.fFBOID; | 
|  | 782 | rtIDs.fMSColorRenderbufferID = 0; | 
|  | 783 | rtIDs.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID; | 
|  | 784 | rtIDs.fRTFBOOwnership = GrBackendObjectOwnership::kBorrowed; | 
| senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 785 |  | 
| Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 786 | GrPixelConfig config = this->caps()->getConfigFromBackendFormat(backendRT.getBackendFormat(), | 
|  | 787 | grColorType); | 
| Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 788 | SkASSERT(kUnknown_GrPixelConfig != config); | 
| Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 789 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 790 | const auto size = SkISize::Make(backendRT.width(), backendRT.height()); | 
| Greg Daniel | 6fa62e2 | 2019-08-07 15:52:37 -0400 | [diff] [blame] | 791 | int sampleCount = this->glCaps().getRenderTargetSampleCount(backendRT.sampleCnt(), format); | 
| bsalomon | b15b4c1 | 2014-10-29 12:41:57 -0700 | [diff] [blame] | 792 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 793 | return GrGLRenderTarget::MakeWrapped(this, size, format, config, sampleCount, rtIDs, | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 794 | backendRT.stencilBits()); | 
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 795 | } | 
|  | 796 |  | 
| Greg Daniel | 7ef28f3 | 2017-04-20 16:41:55 +0000 | [diff] [blame] | 797 | sk_sp<GrRenderTarget> GrGLGpu::onWrapBackendTextureAsRenderTarget(const GrBackendTexture& tex, | 
| Robert Phillips | c80b0e9 | 2019-07-23 10:27:09 -0400 | [diff] [blame] | 798 | int sampleCnt, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 799 | GrColorType colorType) { | 
|  | 800 | GrGLTexture::Desc desc; | 
|  | 801 | // We do not check whether texture rectangle is supported by Skia - if the caller provided us | 
|  | 802 | // with a texture rectangle,we assume the necessary support exists. | 
|  | 803 | if (!check_backend_texture(tex, colorType, this->glCaps(), &desc, true)) { | 
| ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 804 | return nullptr; | 
|  | 805 | } | 
| Greg Daniel | 6fa62e2 | 2019-08-07 15:52:37 -0400 | [diff] [blame] | 806 |  | 
|  | 807 | if (!this->glCaps().isFormatRenderable(desc.fFormat, sampleCnt)) { | 
|  | 808 | return nullptr; | 
|  | 809 | } | 
|  | 810 |  | 
|  | 811 | const int sampleCount = this->glCaps().getRenderTargetSampleCount(sampleCnt, desc.fFormat); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 812 | GrGLRenderTarget::IDs rtIDs; | 
|  | 813 | if (!this->createRenderTargetObjects(desc, sampleCount, &rtIDs)) { | 
| ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 814 | return nullptr; | 
|  | 815 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 816 | return GrGLRenderTarget::MakeWrapped(this, desc.fSize, desc.fFormat, desc.fConfig, sampleCount, | 
|  | 817 | rtIDs, 0); | 
| ericrk | f7b8b8a | 2016-02-24 14:49:51 -0800 | [diff] [blame] | 818 | } | 
|  | 819 |  | 
| Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 820 | static bool check_write_and_transfer_input(GrGLTexture* glTex) { | 
| bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 821 | if (!glTex) { | 
|  | 822 | return false; | 
|  | 823 | } | 
| bsalomon@google.com | 280e99f | 2012-01-05 16:17:38 +0000 | [diff] [blame] | 824 |  | 
| bsalomon | e5286e0 | 2016-01-14 09:24:09 -0800 | [diff] [blame] | 825 | // Write or transfer of pixels is not implemented for TEXTURE_EXTERNAL textures | 
|  | 826 | if (GR_GL_TEXTURE_EXTERNAL == glTex->target()) { | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 827 | return false; | 
|  | 828 | } | 
|  | 829 |  | 
| jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 830 | return true; | 
|  | 831 | } | 
|  | 832 |  | 
| Brian Salomon | a9b04b9 | 2018-06-01 15:04:28 -0400 | [diff] [blame] | 833 | bool GrGLGpu::onWritePixels(GrSurface* surface, int left, int top, int width, int height, | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 834 | GrColorType surfaceColorType, GrColorType srcColorType, | 
| Greg Daniel | b20d7e5 | 2019-09-03 13:54:39 -0400 | [diff] [blame] | 835 | const GrMipLevel texels[], int mipLevelCount, | 
|  | 836 | bool prepForTexSampling) { | 
| Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 837 | auto glTex = static_cast<GrGLTexture*>(surface->asTexture()); | 
| jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 838 |  | 
| Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 839 | if (!check_write_and_transfer_input(glTex)) { | 
| jvanverth | 17aa047 | 2016-01-05 10:41:27 -0800 | [diff] [blame] | 840 | return false; | 
|  | 841 | } | 
|  | 842 |  | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 843 | this->bindTextureToScratchUnit(glTex->target(), glTex->textureID()); | 
| bsalomon@google.com | 9d6cfd8 | 2011-11-05 13:25:21 +0000 | [diff] [blame] | 844 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 845 | SkASSERT(!GrGLFormatIsCompressed(glTex->format())); | 
| Brian Salomon | 85769bf | 2019-08-01 15:52:34 -0400 | [diff] [blame] | 846 | return this->uploadTexData(glTex->format(), surfaceColorType, glTex->width(), glTex->height(), | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 847 | glTex->target(), left, top, width, height, srcColorType, texels, | 
|  | 848 | mipLevelCount); | 
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 849 | } | 
|  | 850 |  | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 851 | bool GrGLGpu::onTransferPixelsTo(GrTexture* texture, int left, int top, int width, int height, | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 852 | GrColorType textureColorType, GrColorType bufferColorType, | 
|  | 853 | GrGpuBuffer* transferBuffer, size_t offset, size_t rowBytes) { | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 854 | GrGLTexture* glTex = static_cast<GrGLTexture*>(texture); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 855 |  | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 856 | // Can't transfer compressed data | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 857 | SkASSERT(!GrGLFormatIsCompressed(glTex->format())); | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 858 |  | 
| Brian Salomon | c320b15 | 2018-02-20 14:05:36 -0500 | [diff] [blame] | 859 | if (!check_write_and_transfer_input(glTex)) { | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 860 | return false; | 
|  | 861 | } | 
|  | 862 |  | 
| Hal Canary | c36f7e7 | 2018-06-18 15:50:09 -0400 | [diff] [blame] | 863 | static_assert(sizeof(int) == sizeof(int32_t), ""); | 
|  | 864 | if (width <= 0 || height <= 0) { | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 865 | return false; | 
|  | 866 | } | 
|  | 867 |  | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 868 | this->bindTextureToScratchUnit(glTex->target(), glTex->textureID()); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 869 |  | 
|  | 870 | SkASSERT(!transferBuffer->isMapped()); | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 871 | SkASSERT(!transferBuffer->isCpuBuffer()); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 872 | const GrGLBuffer* glBuffer = static_cast<const GrGLBuffer*>(transferBuffer); | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 873 | this->bindBuffer(GrGpuBufferType::kXferCpuToGpu, glBuffer); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 874 |  | 
| Greg Daniel | 660cc99 | 2017-06-26 14:55:05 -0400 | [diff] [blame] | 875 | SkDEBUGCODE( | 
|  | 876 | SkIRect subRect = SkIRect::MakeXYWH(left, top, width, height); | 
|  | 877 | SkIRect bounds = SkIRect::MakeWH(texture->width(), texture->height()); | 
|  | 878 | SkASSERT(bounds.contains(subRect)); | 
|  | 879 | ) | 
|  | 880 |  | 
| Brian Salomon | b28cb68 | 2019-07-26 12:48:47 -0400 | [diff] [blame] | 881 | size_t bpp = GrColorTypeBytesPerPixel(bufferColorType); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 882 | const size_t trimRowBytes = width * bpp; | 
| Greg Daniel | 660cc99 | 2017-06-26 14:55:05 -0400 | [diff] [blame] | 883 | const void* pixels = (void*)offset; | 
| Bruce Dawson | 71479b7 | 2017-07-05 14:30:20 -0700 | [diff] [blame] | 884 | if (width < 0 || height < 0) { | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 885 | return false; | 
|  | 886 | } | 
|  | 887 |  | 
|  | 888 | bool restoreGLRowLength = false; | 
|  | 889 | if (trimRowBytes != rowBytes) { | 
|  | 890 | // we should have checked for this support already | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 891 | SkASSERT(this->glCaps().writePixelsRowBytesSupport()); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 892 | GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowBytes / bpp)); | 
|  | 893 | restoreGLRowLength = true; | 
|  | 894 | } | 
|  | 895 |  | 
| Greg Daniel | ba88ab6 | 2019-07-26 09:14:01 -0400 | [diff] [blame] | 896 | GrGLFormat textureFormat = glTex->format(); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 897 | // External format and type come from the upload data. | 
| Greg Daniel | ba88ab6 | 2019-07-26 09:14:01 -0400 | [diff] [blame] | 898 | GrGLenum externalFormat = 0; | 
|  | 899 | GrGLenum externalType = 0; | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 900 | this->glCaps().getTexSubImageExternalFormatAndType( | 
|  | 901 | textureFormat, textureColorType, bufferColorType, &externalFormat, &externalType); | 
| Greg Daniel | ba88ab6 | 2019-07-26 09:14:01 -0400 | [diff] [blame] | 902 | if (!externalFormat || !externalType) { | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 903 | return false; | 
|  | 904 | } | 
|  | 905 |  | 
| Brian Salomon | 8cbf662 | 2019-07-30 11:03:14 -0400 | [diff] [blame] | 906 | GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, 1)); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 907 | GL_CALL(TexSubImage2D(glTex->target(), | 
|  | 908 | 0, | 
|  | 909 | left, top, | 
|  | 910 | width, | 
|  | 911 | height, | 
|  | 912 | externalFormat, externalType, | 
|  | 913 | pixels)); | 
|  | 914 |  | 
|  | 915 | if (restoreGLRowLength) { | 
|  | 916 | GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0)); | 
|  | 917 | } | 
|  | 918 |  | 
|  | 919 | return true; | 
|  | 920 | } | 
|  | 921 |  | 
| Brian Salomon | 26de56e | 2019-04-10 12:14:26 -0400 | [diff] [blame] | 922 | bool GrGLGpu::onTransferPixelsFrom(GrSurface* surface, int left, int top, int width, int height, | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 923 | GrColorType surfaceColorType, GrColorType dstColorType, | 
|  | 924 | GrGpuBuffer* transferBuffer, size_t offset) { | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 925 | auto* glBuffer = static_cast<GrGLBuffer*>(transferBuffer); | 
|  | 926 | this->bindBuffer(GrGpuBufferType::kXferGpuToCpu, glBuffer); | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 927 | auto offsetAsPtr = reinterpret_cast<void*>(offset); | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 928 | return this->readOrTransferPixelsFrom(surface, left, top, width, height, surfaceColorType, | 
|  | 929 | dstColorType, offsetAsPtr, width); | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 930 | } | 
|  | 931 |  | 
| Brian Osman | 9b56024 | 2017-09-05 15:34:52 -0400 | [diff] [blame] | 932 | void GrGLGpu::unbindCpuToGpuXferBuffer() { | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 933 | auto* xferBufferState = this->hwBufferState(GrGpuBufferType::kXferCpuToGpu); | 
|  | 934 | if (!xferBufferState->fBoundBufferUniqueID.isInvalid()) { | 
|  | 935 | GL_CALL(BindBuffer(xferBufferState->fGLTarget, 0)); | 
|  | 936 | xferBufferState->invalidate(); | 
| Brian Osman | 9b56024 | 2017-09-05 15:34:52 -0400 | [diff] [blame] | 937 | } | 
| Brian Osman | 9b56024 | 2017-09-05 15:34:52 -0400 | [diff] [blame] | 938 | } | 
|  | 939 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 940 | bool GrGLGpu::uploadTexData(GrGLFormat textureFormat, GrColorType textureColorType, int texWidth, | 
|  | 941 | int texHeight, GrGLenum target, int left, int top, int width, | 
|  | 942 | int height, GrColorType srcColorType, const GrMipLevel texels[], | 
|  | 943 | int mipLevelCount, GrMipMapsStatus* mipMapsStatus) { | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 944 | // If we're uploading compressed data then we should be using uploadCompressedTexData | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 945 | SkASSERT(!GrGLFormatIsCompressed(textureFormat)); | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 946 |  | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 947 | SkASSERT(this->glCaps().isFormatTexturable(textureFormat)); | 
| Greg Daniel | 660cc99 | 2017-06-26 14:55:05 -0400 | [diff] [blame] | 948 | SkDEBUGCODE( | 
|  | 949 | SkIRect subRect = SkIRect::MakeXYWH(left, top, width, height); | 
|  | 950 | SkIRect bounds = SkIRect::MakeWH(texWidth, texHeight); | 
|  | 951 | SkASSERT(bounds.contains(subRect)); | 
|  | 952 | ) | 
| Robert Phillips | 590533f | 2017-07-11 14:22:35 -0400 | [diff] [blame] | 953 | SkASSERT(1 == mipLevelCount || | 
| Greg Daniel | 660cc99 | 2017-06-26 14:55:05 -0400 | [diff] [blame] | 954 | (0 == left && 0 == top && width == texWidth && height == texHeight)); | 
| bsalomon | 5b30c6f | 2015-12-17 14:17:34 -0800 | [diff] [blame] | 955 |  | 
| Brian Osman | 9b56024 | 2017-09-05 15:34:52 -0400 | [diff] [blame] | 956 | this->unbindCpuToGpuXferBuffer(); | 
| Jim Van Verth | 2e5eaf0 | 2017-06-21 15:55:46 -0400 | [diff] [blame] | 957 |  | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 958 | const GrGLInterface* interface = this->glInterface(); | 
|  | 959 | const GrGLCaps& caps = this->glCaps(); | 
|  | 960 |  | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 961 | size_t bpp = GrColorTypeBytesPerPixel(srcColorType); | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 962 |  | 
|  | 963 | if (width == 0 || height == 0) { | 
| bsalomon@google.com | 136f55b | 2011-11-28 18:34:44 +0000 | [diff] [blame] | 964 | return false; | 
| bsalomon@google.com | 71f341a | 2011-08-01 13:36:00 +0000 | [diff] [blame] | 965 | } | 
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 966 |  | 
| bsalomon | 5b30c6f | 2015-12-17 14:17:34 -0800 | [diff] [blame] | 967 | // External format and type come from the upload data. | 
| bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 968 | GrGLenum externalFormat; | 
|  | 969 | GrGLenum externalType; | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 970 | this->glCaps().getTexSubImageExternalFormatAndType( | 
|  | 971 | textureFormat, textureColorType, srcColorType, &externalFormat, &externalType); | 
| Greg Daniel | ba88ab6 | 2019-07-26 09:14:01 -0400 | [diff] [blame] | 972 | if (!externalFormat || !externalType) { | 
| bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 973 | return false; | 
|  | 974 | } | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 975 |  | 
| bsalomon@google.com | 71f341a | 2011-08-01 13:36:00 +0000 | [diff] [blame] | 976 | /* | 
| bsalomon | 5b30c6f | 2015-12-17 14:17:34 -0800 | [diff] [blame] | 977 | *  Check whether to allocate a temporary buffer for flipping y or | 
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 978 | *  because our srcData has extra bytes past each row. If so, we need | 
|  | 979 | *  to trim those off here, since GL ES may not let us specify | 
|  | 980 | *  GL_UNPACK_ROW_LENGTH. | 
| bsalomon@google.com | 71f341a | 2011-08-01 13:36:00 +0000 | [diff] [blame] | 981 | */ | 
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 982 | bool restoreGLRowLength = false; | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 983 |  | 
| Greg Daniel | 0fc4d2d | 2017-10-12 11:23:36 -0400 | [diff] [blame] | 984 | if (mipMapsStatus) { | 
| Chris Dalton | 95d8ceb | 2019-07-30 11:17:59 -0600 | [diff] [blame] | 985 | *mipMapsStatus = (mipLevelCount > 1) ? | 
|  | 986 | GrMipMapsStatus::kValid : GrMipMapsStatus::kNotAllocated; | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 987 | } | 
| bsalomon | e699d0c | 2016-03-09 06:25:15 -0800 | [diff] [blame] | 988 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 989 | GR_GL_CALL(interface, PixelStorei(GR_GL_UNPACK_ALIGNMENT, 1)); | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 990 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 991 | for (int currentMipLevel = 0; currentMipLevel < mipLevelCount; currentMipLevel++) { | 
|  | 992 | if (!texels[currentMipLevel].fPixels) { | 
|  | 993 | if (mipMapsStatus) { | 
|  | 994 | *mipMapsStatus = GrMipMapsStatus::kDirty; | 
| Greg Daniel | 55afd6d | 2017-09-29 09:32:44 -0400 | [diff] [blame] | 995 | } | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 996 | continue; | 
| Brian Salomon | 8e63cab | 2019-09-10 19:02:29 +0000 | [diff] [blame] | 997 | } | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 998 | int twoToTheMipLevel = 1 << currentMipLevel; | 
|  | 999 | const int currentWidth = SkTMax(1, width / twoToTheMipLevel); | 
|  | 1000 | const int currentHeight = SkTMax(1, height / twoToTheMipLevel); | 
|  | 1001 | const size_t trimRowBytes = currentWidth * bpp; | 
|  | 1002 | const size_t rowBytes = texels[currentMipLevel].fRowBytes; | 
|  | 1003 |  | 
|  | 1004 | if (caps.writePixelsRowBytesSupport() && (rowBytes != trimRowBytes || restoreGLRowLength)) { | 
|  | 1005 | GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp); | 
|  | 1006 | GR_GL_CALL(interface, PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength)); | 
|  | 1007 | restoreGLRowLength = true; | 
|  | 1008 | } | 
|  | 1009 |  | 
|  | 1010 | GL_CALL(TexSubImage2D(target, currentMipLevel, left, top, currentWidth, currentHeight, | 
|  | 1011 | externalFormat, externalType, texels[currentMipLevel].fPixels)); | 
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1012 | } | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1013 | if (restoreGLRowLength) { | 
|  | 1014 | SkASSERT(caps.writePixelsRowBytesSupport()); | 
|  | 1015 | GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0)); | 
|  | 1016 | } | 
|  | 1017 | return true; | 
| bsalomon@google.com | 71f341a | 2011-08-01 13:36:00 +0000 | [diff] [blame] | 1018 | } | 
|  | 1019 |  | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1020 | bool GrGLGpu::uploadCompressedTexData(GrGLFormat format, | 
|  | 1021 | SkImage::CompressionType compressionType, | 
|  | 1022 | const SkISize& size, | 
|  | 1023 | GrGLenum target, | 
|  | 1024 | const void* data) { | 
|  | 1025 | SkASSERT(format != GrGLFormat::kUnknown); | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 1026 | const GrGLCaps& caps = this->glCaps(); | 
|  | 1027 |  | 
|  | 1028 | // We only need the internal format for compressed 2D textures. | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1029 | GrGLenum internalFormat = caps.getTexImageOrStorageInternalFormat(format); | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1030 | if (!internalFormat) { | 
|  | 1031 | return 0; | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 1032 | } | 
|  | 1033 |  | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1034 | bool useTexStorage = caps.formatSupportsTexStorage(format); | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1035 |  | 
|  | 1036 | static constexpr int kMipLevelCount = 1; | 
|  | 1037 |  | 
|  | 1038 | // Make sure that the width and height that we pass to OpenGL | 
|  | 1039 | // is a multiple of the block size. | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1040 | size_t dataSize = GrCompressedDataSize(compressionType, size.width(), size.height()); | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1041 |  | 
|  | 1042 | if (useTexStorage) { | 
|  | 1043 | // We never resize or change formats of textures. | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1044 | GL_ALLOC_CALL( | 
|  | 1045 | this->glInterface(), | 
|  | 1046 | TexStorage2D(target, kMipLevelCount, internalFormat, size.width(), size.height())); | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1047 | GrGLenum error = CHECK_ALLOC_ERROR(this->glInterface()); | 
|  | 1048 | if (error != GR_GL_NO_ERROR) { | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1049 | return false; | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1050 | } | 
|  | 1051 | GL_CALL(CompressedTexSubImage2D(target, | 
|  | 1052 | 0,  // level | 
|  | 1053 | 0,  // left | 
|  | 1054 | 0,  // top | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1055 | size.width(), | 
|  | 1056 | size.height(), | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1057 | internalFormat, | 
|  | 1058 | SkToInt(dataSize), | 
|  | 1059 | data)); | 
|  | 1060 | } else { | 
|  | 1061 | GL_ALLOC_CALL(this->glInterface(), CompressedTexImage2D(target, | 
|  | 1062 | 0,  // level | 
|  | 1063 | internalFormat, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1064 | size.width(), | 
|  | 1065 | size.height(), | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1066 | 0,  // border | 
|  | 1067 | SkToInt(dataSize), | 
|  | 1068 | data)); | 
|  | 1069 |  | 
|  | 1070 | GrGLenum error = CHECK_ALLOC_ERROR(this->glInterface()); | 
|  | 1071 | if (error != GR_GL_NO_ERROR) { | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1072 | return false; | 
| Greg Kaiser | 73bfb89 | 2019-02-11 09:03:41 -0800 | [diff] [blame] | 1073 | } | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 1074 | } | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1075 | return true; | 
| Jim Van Verth | 1676cb9 | 2019-01-15 13:24:45 -0500 | [diff] [blame] | 1076 | } | 
|  | 1077 |  | 
| bsalomon | 424cc26 | 2015-05-22 10:37:30 -0700 | [diff] [blame] | 1078 | static bool renderbuffer_storage_msaa(const GrGLContext& ctx, | 
| commit-bot@chromium.org | 040fd8f | 2013-09-06 20:00:41 +0000 | [diff] [blame] | 1079 | int sampleCount, | 
|  | 1080 | GrGLenum format, | 
|  | 1081 | int width, int height) { | 
| robertphillips@google.com | 6177e69 | 2013-02-28 20:16:25 +0000 | [diff] [blame] | 1082 | CLEAR_ERROR_BEFORE_ALLOC(ctx.interface()); | 
| commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 1083 | SkASSERT(GrGLCaps::kNone_MSFBOType != ctx.caps()->msFBOType()); | 
| commit-bot@chromium.org | b1854a8 | 2014-01-16 18:39:04 +0000 | [diff] [blame] | 1084 | switch (ctx.caps()->msFBOType()) { | 
| Brian Salomon | 00731b4 | 2016-10-14 11:30:51 -0400 | [diff] [blame] | 1085 | case GrGLCaps::kStandard_MSFBOType: | 
| commit-bot@chromium.org | 040fd8f | 2013-09-06 20:00:41 +0000 | [diff] [blame] | 1086 | GL_ALLOC_CALL(ctx.interface(), | 
|  | 1087 | RenderbufferStorageMultisample(GR_GL_RENDERBUFFER, | 
|  | 1088 | sampleCount, | 
|  | 1089 | format, | 
|  | 1090 | width, height)); | 
|  | 1091 | break; | 
|  | 1092 | case GrGLCaps::kES_Apple_MSFBOType: | 
|  | 1093 | GL_ALLOC_CALL(ctx.interface(), | 
|  | 1094 | RenderbufferStorageMultisampleES2APPLE(GR_GL_RENDERBUFFER, | 
|  | 1095 | sampleCount, | 
|  | 1096 | format, | 
|  | 1097 | width, height)); | 
|  | 1098 | break; | 
|  | 1099 | case GrGLCaps::kES_EXT_MsToTexture_MSFBOType: | 
|  | 1100 | case GrGLCaps::kES_IMG_MsToTexture_MSFBOType: | 
|  | 1101 | GL_ALLOC_CALL(ctx.interface(), | 
|  | 1102 | RenderbufferStorageMultisampleES2EXT(GR_GL_RENDERBUFFER, | 
|  | 1103 | sampleCount, | 
|  | 1104 | format, | 
|  | 1105 | width, height)); | 
|  | 1106 | break; | 
|  | 1107 | case GrGLCaps::kNone_MSFBOType: | 
| Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 1108 | SK_ABORT("Shouldn't be here if we don't support multisampled renderbuffers."); | 
| commit-bot@chromium.org | 040fd8f | 2013-09-06 20:00:41 +0000 | [diff] [blame] | 1109 | break; | 
| bsalomon@google.com | c9668ec | 2012-04-11 18:16:41 +0000 | [diff] [blame] | 1110 | } | 
| Brian Salomon | 9251d4e | 2015-03-17 16:03:19 -0400 | [diff] [blame] | 1111 | return (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface())); | 
| bsalomon@google.com | c9668ec | 2012-04-11 18:16:41 +0000 | [diff] [blame] | 1112 | } | 
|  | 1113 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1114 | bool GrGLGpu::createRenderTargetObjects(const GrGLTexture::Desc& desc, | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1115 | int sampleCount, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1116 | GrGLRenderTarget::IDs* rtIDs) { | 
|  | 1117 | rtIDs->fMSColorRenderbufferID = 0; | 
|  | 1118 | rtIDs->fRTFBOID = 0; | 
|  | 1119 | rtIDs->fRTFBOOwnership = GrBackendObjectOwnership::kOwned; | 
|  | 1120 | rtIDs->fTexFBOID = 0; | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1121 |  | 
| bsalomon | a11e5fc | 2015-12-18 07:59:41 -0800 | [diff] [blame] | 1122 | GrGLenum colorRenderbufferFormat = 0; // suppress warning | 
| bsalomon@google.com | ab15d61 | 2011-08-09 12:57:56 +0000 | [diff] [blame] | 1123 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1124 | if (desc.fFormat == GrGLFormat::kUnknown) { | 
| Greg Daniel | 9bb268b | 2019-07-17 10:40:13 -0400 | [diff] [blame] | 1125 | goto FAILED; | 
|  | 1126 | } | 
|  | 1127 |  | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1128 | if (sampleCount > 1 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) { | 
| bsalomon@google.com | 347c382 | 2013-05-01 20:10:01 +0000 | [diff] [blame] | 1129 | goto FAILED; | 
|  | 1130 | } | 
|  | 1131 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1132 | GL_CALL(GenFramebuffers(1, &rtIDs->fTexFBOID)); | 
|  | 1133 | if (!rtIDs->fTexFBOID) { | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1134 | goto FAILED; | 
|  | 1135 | } | 
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1136 |  | 
| bsalomon@google.com | f3a60c0 | 2013-03-19 19:06:09 +0000 | [diff] [blame] | 1137 | // If we are using multisampling we will create two FBOS. We render to one and then resolve to | 
|  | 1138 | // the texture bound to the other. The exception is the IMG multisample extension. With this | 
|  | 1139 | // extension the texture is multisampled when rendered to and then auto-resolves it when it is | 
|  | 1140 | // rendered from. | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1141 | if (sampleCount > 1 && this->glCaps().usesMSAARenderBuffers()) { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1142 | GL_CALL(GenFramebuffers(1, &rtIDs->fRTFBOID)); | 
|  | 1143 | GL_CALL(GenRenderbuffers(1, &rtIDs->fMSColorRenderbufferID)); | 
|  | 1144 | if (!rtIDs->fRTFBOID || !rtIDs->fMSColorRenderbufferID) { | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1145 | goto FAILED; | 
|  | 1146 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1147 | colorRenderbufferFormat = this->glCaps().getRenderbufferInternalFormat(desc.fFormat); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1148 | } else { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1149 | rtIDs->fRTFBOID = rtIDs->fTexFBOID; | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1150 | } | 
|  | 1151 |  | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 1152 | // below here we may bind the FBO | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 1153 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1154 | if (rtIDs->fRTFBOID != rtIDs->fTexFBOID) { | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1155 | SkASSERT(sampleCount > 1); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1156 | GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, rtIDs->fMSColorRenderbufferID)); | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1157 | if (!renderbuffer_storage_msaa(*fGLContext, sampleCount, colorRenderbufferFormat, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1158 | desc.fSize.width(), desc.fSize.height())) { | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1159 | goto FAILED; | 
|  | 1160 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1161 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, rtIDs->fRTFBOID); | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 1162 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, | 
| bsalomon | 10528f1 | 2015-10-14 12:54:52 -0700 | [diff] [blame] | 1163 | GR_GL_COLOR_ATTACHMENT0, | 
|  | 1164 | GR_GL_RENDERBUFFER, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1165 | rtIDs->fMSColorRenderbufferID)); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1166 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1167 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, rtIDs->fTexFBOID); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1168 |  | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1169 | if (this->glCaps().usesImplicitMSAAResolve() && sampleCount > 1) { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1170 | GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER, | 
|  | 1171 | GR_GL_COLOR_ATTACHMENT0, | 
|  | 1172 | desc.fTarget, | 
|  | 1173 | desc.fID, | 
|  | 1174 | 0, | 
|  | 1175 | sampleCount)); | 
| bsalomon@google.com | f3a60c0 | 2013-03-19 19:06:09 +0000 | [diff] [blame] | 1176 | } else { | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 1177 | GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, | 
| bsalomon@google.com | f3a60c0 | 2013-03-19 19:06:09 +0000 | [diff] [blame] | 1178 | GR_GL_COLOR_ATTACHMENT0, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1179 | desc.fTarget, | 
|  | 1180 | desc.fID, | 
|  | 1181 | 0)); | 
| bsalomon@google.com | f3a60c0 | 2013-03-19 19:06:09 +0000 | [diff] [blame] | 1182 | } | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1183 |  | 
|  | 1184 | return true; | 
|  | 1185 |  | 
|  | 1186 | FAILED: | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1187 | if (rtIDs->fMSColorRenderbufferID) { | 
|  | 1188 | GL_CALL(DeleteRenderbuffers(1, &rtIDs->fMSColorRenderbufferID)); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1189 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1190 | if (rtIDs->fRTFBOID != rtIDs->fTexFBOID) { | 
|  | 1191 | this->deleteFramebuffer(rtIDs->fRTFBOID); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1192 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1193 | if (rtIDs->fTexFBOID) { | 
|  | 1194 | this->deleteFramebuffer(rtIDs->fTexFBOID); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1195 | } | 
|  | 1196 | return false; | 
|  | 1197 | } | 
|  | 1198 |  | 
| bsalomon@google.com | 3f3ffd6 | 2011-01-18 17:14:52 +0000 | [diff] [blame] | 1199 | // good to set a break-point here to know when createTexture fails | 
| Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 1200 | static sk_sp<GrTexture> return_null_texture() { | 
| mtklein@google.com | 330313a | 2013-08-22 15:37:26 +0000 | [diff] [blame] | 1201 | //    SkDEBUGFAIL("null texture"); | 
| halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 1202 | return nullptr; | 
| bsalomon@google.com | 3f3ffd6 | 2011-01-18 17:14:52 +0000 | [diff] [blame] | 1203 | } | 
|  | 1204 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 1205 | static GrGLTextureParameters::SamplerOverriddenState set_initial_texture_params( | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1206 | const GrGLInterface* interface, GrGLenum target) { | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 1207 | // Some drivers like to know filter/wrap before seeing glTexImage2D. Some | 
|  | 1208 | // drivers have a bug where an FBO won't be complete if it includes a | 
|  | 1209 | // texture that is not mipmap complete (considering the filter in use). | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 1210 | GrGLTextureParameters::SamplerOverriddenState state; | 
|  | 1211 | state.fMinFilter = GR_GL_NEAREST; | 
|  | 1212 | state.fMagFilter = GR_GL_NEAREST; | 
|  | 1213 | state.fWrapS = GR_GL_CLAMP_TO_EDGE; | 
|  | 1214 | state.fWrapT = GR_GL_CLAMP_TO_EDGE; | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1215 | GR_GL_CALL(interface, TexParameteri(target, GR_GL_TEXTURE_MAG_FILTER, state.fMagFilter)); | 
|  | 1216 | GR_GL_CALL(interface, TexParameteri(target, GR_GL_TEXTURE_MIN_FILTER, state.fMinFilter)); | 
|  | 1217 | GR_GL_CALL(interface, TexParameteri(target, GR_GL_TEXTURE_WRAP_S, state.fWrapS)); | 
|  | 1218 | GR_GL_CALL(interface, TexParameteri(target, GR_GL_TEXTURE_WRAP_T, state.fWrapT)); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 1219 | return state; | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 1220 | } | 
|  | 1221 |  | 
| Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 1222 | sk_sp<GrTexture> GrGLGpu::onCreateTexture(const GrSurfaceDesc& desc, | 
| Brian Salomon | 81536f2 | 2019-08-08 16:30:49 -0400 | [diff] [blame] | 1223 | const GrBackendFormat& format, | 
| Brian Salomon | f2c2ba9 | 2019-07-17 09:59:59 -0400 | [diff] [blame] | 1224 | GrRenderable renderable, | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1225 | int renderTargetSampleCnt, | 
| Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 1226 | SkBudgeted budgeted, | 
| Brian Salomon | e8a766b | 2019-07-19 14:24:36 -0400 | [diff] [blame] | 1227 | GrProtected isProtected, | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1228 | int mipLevelCount, | 
|  | 1229 | uint32_t levelClearMask) { | 
| Brian Salomon | e8a766b | 2019-07-19 14:24:36 -0400 | [diff] [blame] | 1230 | // We don't support protected textures in GL. | 
|  | 1231 | if (isProtected == GrProtected::kYes) { | 
|  | 1232 | return nullptr; | 
|  | 1233 | } | 
| Brian Salomon | 27b4d8d | 2019-07-22 14:23:45 -0400 | [diff] [blame] | 1234 | SkASSERT(GrGLCaps::kNone_MSFBOType != this->glCaps().msFBOType() || renderTargetSampleCnt == 1); | 
| bsalomon@google.com | 71f341a | 2011-08-01 13:36:00 +0000 | [diff] [blame] | 1235 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1236 | SkASSERT(mipLevelCount > 0); | 
|  | 1237 | GrMipMapsStatus mipMapsStatus = | 
|  | 1238 | mipLevelCount > 1 ? GrMipMapsStatus::kDirty : GrMipMapsStatus::kNotAllocated; | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 1239 | GrGLTextureParameters::SamplerOverriddenState initialState; | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1240 | GrGLTexture::Desc texDesc; | 
|  | 1241 | texDesc.fSize = {desc.fWidth, desc.fHeight}; | 
|  | 1242 | texDesc.fTarget = GR_GL_TEXTURE_2D; | 
| Brian Salomon | 81536f2 | 2019-08-08 16:30:49 -0400 | [diff] [blame] | 1243 | texDesc.fFormat = format.asGLFormat(); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1244 | texDesc.fConfig = desc.fConfig; | 
|  | 1245 | texDesc.fOwnership = GrBackendObjectOwnership::kOwned; | 
| Brian Salomon | 81536f2 | 2019-08-08 16:30:49 -0400 | [diff] [blame] | 1246 | SkASSERT(texDesc.fFormat != GrGLFormat::kUnknown); | 
|  | 1247 | SkASSERT(!GrGLFormatIsCompressed(texDesc.fFormat)); | 
| Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 1248 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1249 | texDesc.fID = this->createTexture2D({desc.fWidth, desc.fHeight}, texDesc.fFormat, renderable, | 
|  | 1250 | &initialState, mipLevelCount); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1251 |  | 
|  | 1252 | if (!texDesc.fID) { | 
| bsalomon@google.com | b1d14fd | 2011-12-09 18:41:34 +0000 | [diff] [blame] | 1253 | return return_null_texture(); | 
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 1254 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1255 |  | 
| Robert Phillips | 67d52cf | 2017-06-05 13:38:13 -0400 | [diff] [blame] | 1256 | sk_sp<GrGLTexture> tex; | 
| Brian Salomon | f2c2ba9 | 2019-07-17 09:59:59 -0400 | [diff] [blame] | 1257 | if (renderable == GrRenderable::kYes) { | 
| robertphillips@google.com | ba0cc3e | 2012-03-26 17:58:35 +0000 | [diff] [blame] | 1258 | // unbind the texture from the texture unit before binding it to the frame buffer | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1259 | GL_CALL(BindTexture(texDesc.fTarget, 0)); | 
|  | 1260 | GrGLRenderTarget::IDs rtIDDesc; | 
| robertphillips@google.com | ba0cc3e | 2012-03-26 17:58:35 +0000 | [diff] [blame] | 1261 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1262 | if (!this->createRenderTargetObjects(texDesc, renderTargetSampleCnt, &rtIDDesc)) { | 
|  | 1263 | GL_CALL(DeleteTextures(1, &texDesc.fID)); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1264 | return return_null_texture(); | 
|  | 1265 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1266 | tex = sk_make_sp<GrGLTextureRenderTarget>( | 
|  | 1267 | this, budgeted, renderTargetSampleCnt, texDesc, rtIDDesc, mipMapsStatus); | 
| Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 1268 | tex->baseLevelWasBoundToFBO(); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1269 | } else { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1270 | tex = sk_make_sp<GrGLTexture>(this, budgeted, texDesc, mipMapsStatus); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1271 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 1272 | // The non-sampler params are still at their default values. | 
|  | 1273 | tex->parameters()->set(&initialState, GrGLTextureParameters::NonsamplerState(), | 
|  | 1274 | fResetTimestampForTextureParameters); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1275 | if (levelClearMask) { | 
|  | 1276 | GrGLenum externalFormat, externalType; | 
|  | 1277 | size_t bpp; | 
|  | 1278 | this->glCaps().getTexSubImageZeroFormatTypeAndBpp(texDesc.fFormat, &externalFormat, | 
|  | 1279 | &externalType, &bpp); | 
|  | 1280 | if (this->glCaps().clearTextureSupport()) { | 
|  | 1281 | for (int i = 0; i < mipLevelCount; ++i) { | 
|  | 1282 | if (levelClearMask & (1U << i)) { | 
|  | 1283 | GL_CALL(ClearTexImage(tex->textureID(), i, externalFormat, externalType, | 
|  | 1284 | nullptr)); | 
|  | 1285 | } | 
|  | 1286 | } | 
|  | 1287 | } else if (this->glCaps().canFormatBeFBOColorAttachment(format.asGLFormat()) && | 
|  | 1288 | !this->glCaps().performColorClearsAsDraws()) { | 
|  | 1289 | this->disableScissor(); | 
|  | 1290 | this->disableWindowRectangles(); | 
|  | 1291 | this->flushColorWrite(true); | 
|  | 1292 | this->flushClearColor(0, 0, 0, 0); | 
|  | 1293 | for (int i = 0; i < mipLevelCount; ++i) { | 
|  | 1294 | if (levelClearMask & (1U << i)) { | 
|  | 1295 | this->bindSurfaceFBOForPixelOps(tex.get(), i, GR_GL_FRAMEBUFFER, | 
|  | 1296 | kDst_TempFBOTarget); | 
|  | 1297 | GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT)); | 
|  | 1298 | this->unbindSurfaceFBOForPixelOps(tex.get(), i, GR_GL_FRAMEBUFFER); | 
|  | 1299 | } | 
|  | 1300 | } | 
| Brian Salomon | c224985 | 2019-09-16 11:08:50 -0400 | [diff] [blame] | 1301 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1302 | } else { | 
|  | 1303 | std::unique_ptr<char[]> zeros; | 
|  | 1304 | GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, 1)); | 
|  | 1305 | for (int i = 0; i < mipLevelCount; ++i) { | 
|  | 1306 | if (levelClearMask & (1U << i)) { | 
|  | 1307 | int levelWidth  = SkTMax(1, texDesc.fSize.width()  >> i); | 
|  | 1308 | int levelHeight = SkTMax(1, texDesc.fSize.height() >> i); | 
|  | 1309 | // Levels only get smaller as we proceed. Once we create a zeros use it for all | 
|  | 1310 | // smaller levels that need clearing. | 
|  | 1311 | if (!zeros) { | 
|  | 1312 | size_t size = levelWidth * levelHeight * bpp; | 
|  | 1313 | zeros.reset(new char[size]()); | 
|  | 1314 | } | 
|  | 1315 | this->bindTextureToScratchUnit(GR_GL_TEXTURE_2D, tex->textureID()); | 
|  | 1316 | GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D, i, 0, 0, levelWidth, levelHeight, | 
|  | 1317 | externalFormat, externalType, zeros.get())); | 
|  | 1318 | } | 
| Brian Salomon | a3e2996 | 2019-07-16 11:52:08 -0400 | [diff] [blame] | 1319 | } | 
| Brian Salomon | d17b4a6 | 2017-05-23 16:53:47 -0400 | [diff] [blame] | 1320 | } | 
|  | 1321 | } | 
| Brian Salomon | 9c73e3d | 2019-08-15 10:55:49 -0400 | [diff] [blame] | 1322 | return tex; | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1323 | } | 
|  | 1324 |  | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1325 | sk_sp<GrTexture> GrGLGpu::onCreateCompressedTexture(int width, int height, | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1326 | const GrBackendFormat& format, | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1327 | SkImage::CompressionType compression, | 
|  | 1328 | SkBudgeted budgeted, const void* data) { | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1329 | GrGLTextureParameters::SamplerOverriddenState initialState; | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1330 | GrGLTexture::Desc desc; | 
|  | 1331 | desc.fSize = {width, height}; | 
|  | 1332 | desc.fTarget = GR_GL_TEXTURE_2D; | 
|  | 1333 | desc.fConfig = GrCompressionTypePixelConfig(compression); | 
|  | 1334 | desc.fOwnership = GrBackendObjectOwnership::kOwned; | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1335 | desc.fFormat = format.asGLFormat(); | 
|  | 1336 | desc.fID = this->createCompressedTexture2D(desc.fSize, desc.fFormat, compression, &initialState, | 
|  | 1337 | data); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1338 | if (!desc.fID) { | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1339 | return nullptr; | 
|  | 1340 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1341 | auto tex = sk_make_sp<GrGLTexture>(this, budgeted, desc, GrMipMapsStatus::kNotAllocated); | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1342 | // The non-sampler params are still at their default values. | 
|  | 1343 | tex->parameters()->set(&initialState, GrGLTextureParameters::NonsamplerState(), | 
|  | 1344 | fResetTimestampForTextureParameters); | 
| Brian Salomon | 9c73e3d | 2019-08-15 10:55:49 -0400 | [diff] [blame] | 1345 | return tex; | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1346 | } | 
|  | 1347 |  | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1348 | namespace { | 
| bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1349 |  | 
| egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 1350 | const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount; | 
| bsalomon@google.com | f7fa806 | 2012-02-14 14:09:57 +0000 | [diff] [blame] | 1351 |  | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1352 | void inline get_stencil_rb_sizes(const GrGLInterface* gl, | 
| egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 1353 | GrGLStencilAttachment::Format* format) { | 
| sugoi@google.com | 6ba0b0f | 2013-05-03 13:52:32 +0000 | [diff] [blame] | 1354 |  | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1355 | // we shouldn't ever know one size and not the other | 
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1356 | SkASSERT((kUnknownBitCount == format->fStencilBits) == | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1357 | (kUnknownBitCount == format->fTotalBits)); | 
|  | 1358 | if (kUnknownBitCount == format->fStencilBits) { | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1359 | GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER, | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1360 | GR_GL_RENDERBUFFER_STENCIL_SIZE, | 
|  | 1361 | (GrGLint*)&format->fStencilBits); | 
|  | 1362 | if (format->fPacked) { | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1363 | GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER, | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1364 | GR_GL_RENDERBUFFER_DEPTH_SIZE, | 
|  | 1365 | (GrGLint*)&format->fTotalBits); | 
|  | 1366 | format->fTotalBits += format->fStencilBits; | 
|  | 1367 | } else { | 
|  | 1368 | format->fTotalBits = format->fStencilBits; | 
|  | 1369 | } | 
|  | 1370 | } | 
|  | 1371 | } | 
|  | 1372 | } | 
|  | 1373 |  | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 1374 | int GrGLGpu::getCompatibleStencilIndex(GrGLFormat format) { | 
| bsalomon | 100b8f8 | 2015-10-28 08:37:44 -0700 | [diff] [blame] | 1375 | static const int kSize = 16; | 
| Brian Salomon | f6da146 | 2019-07-11 14:21:59 -0400 | [diff] [blame] | 1376 | SkASSERT(this->glCaps().canFormatBeFBOColorAttachment(format)); | 
|  | 1377 |  | 
|  | 1378 | if (!this->glCaps().hasStencilFormatBeenDeterminedForFormat(format)) { | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1379 | // Default to unsupported, set this if we find a stencil format that works. | 
|  | 1380 | int firstWorkingStencilFormatIndex = -1; | 
| Brian Osman | 91f9a2c | 2017-09-05 15:02:46 -0400 | [diff] [blame] | 1381 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1382 | GrGLuint colorID = | 
|  | 1383 | this->createTexture2D({kSize, kSize}, format, GrRenderable::kYes, nullptr, 1); | 
|  | 1384 | if (!colorID) { | 
| Brian Salomon | f6da146 | 2019-07-11 14:21:59 -0400 | [diff] [blame] | 1385 | return -1; | 
| bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1386 | } | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1387 | // unbind the texture from the texture unit before binding it to the frame buffer | 
|  | 1388 | GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0)); | 
|  | 1389 |  | 
|  | 1390 | // Create Framebuffer | 
| kkinnunen | 546eb5c | 2015-12-11 00:05:33 -0800 | [diff] [blame] | 1391 | GrGLuint fb = 0; | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1392 | GL_CALL(GenFramebuffers(1, &fb)); | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 1393 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, fb); | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 1394 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1395 | GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, | 
|  | 1396 | GR_GL_COLOR_ATTACHMENT0, | 
|  | 1397 | GR_GL_TEXTURE_2D, | 
|  | 1398 | colorID, | 
|  | 1399 | 0)); | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1400 | GrGLuint sbRBID = 0; | 
|  | 1401 | GL_CALL(GenRenderbuffers(1, &sbRBID)); | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1402 |  | 
|  | 1403 | // look over formats till I find a compatible one | 
|  | 1404 | int stencilFmtCnt = this->glCaps().stencilFormats().count(); | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1405 | if (sbRBID) { | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1406 | GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbRBID)); | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1407 | for (int i = 0; i < stencilFmtCnt && sbRBID; ++i) { | 
|  | 1408 | const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[i]; | 
|  | 1409 | CLEAR_ERROR_BEFORE_ALLOC(this->glInterface()); | 
|  | 1410 | GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER, | 
|  | 1411 | sFmt.fInternalFormat, | 
|  | 1412 | kSize, kSize)); | 
|  | 1413 | if (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(this->glInterface())) { | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1414 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1415 | GR_GL_STENCIL_ATTACHMENT, | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1416 | GR_GL_RENDERBUFFER, sbRBID)); | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1417 | if (sFmt.fPacked) { | 
|  | 1418 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, | 
|  | 1419 | GR_GL_DEPTH_ATTACHMENT, | 
|  | 1420 | GR_GL_RENDERBUFFER, sbRBID)); | 
|  | 1421 | } else { | 
|  | 1422 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, | 
|  | 1423 | GR_GL_DEPTH_ATTACHMENT, | 
|  | 1424 | GR_GL_RENDERBUFFER, 0)); | 
|  | 1425 | } | 
|  | 1426 | GrGLenum status; | 
|  | 1427 | GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER)); | 
|  | 1428 | if (status == GR_GL_FRAMEBUFFER_COMPLETE) { | 
|  | 1429 | firstWorkingStencilFormatIndex = i; | 
|  | 1430 | break; | 
|  | 1431 | } | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1432 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, | 
|  | 1433 | GR_GL_STENCIL_ATTACHMENT, | 
|  | 1434 | GR_GL_RENDERBUFFER, 0)); | 
|  | 1435 | if (sFmt.fPacked) { | 
|  | 1436 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, | 
|  | 1437 | GR_GL_DEPTH_ATTACHMENT, | 
|  | 1438 | GR_GL_RENDERBUFFER, 0)); | 
|  | 1439 | } | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1440 | } | 
|  | 1441 | } | 
| bsalomon | 3044737 | 2015-12-21 09:03:05 -0800 | [diff] [blame] | 1442 | GL_CALL(DeleteRenderbuffers(1, &sbRBID)); | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1443 | } | 
|  | 1444 | GL_CALL(DeleteTextures(1, &colorID)); | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 1445 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, 0); | 
|  | 1446 | this->deleteFramebuffer(fb); | 
| Brian Salomon | f6da146 | 2019-07-11 14:21:59 -0400 | [diff] [blame] | 1447 | fGLContext->caps()->setStencilFormatIndexForFormat(format, firstWorkingStencilFormatIndex); | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1448 | } | 
| Brian Salomon | f6da146 | 2019-07-11 14:21:59 -0400 | [diff] [blame] | 1449 | return this->glCaps().getStencilFormatIndexForFormat(format); | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1450 | } | 
|  | 1451 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1452 | GrGLuint GrGLGpu::createCompressedTexture2D( | 
|  | 1453 | const SkISize& size, | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1454 | GrGLFormat format, | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1455 | SkImage::CompressionType compression, | 
|  | 1456 | GrGLTextureParameters::SamplerOverriddenState* initialState, | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1457 | const void* data) { | 
|  | 1458 | if (format == GrGLFormat::kUnknown) { | 
|  | 1459 | return 0; | 
|  | 1460 | } | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1461 | GrGLuint id = 0; | 
|  | 1462 | GL_CALL(GenTextures(1, &id)); | 
|  | 1463 | if (!id) { | 
|  | 1464 | return 0; | 
| erikchen | 9a1ed5d | 2016-02-10 16:32:34 -0800 | [diff] [blame] | 1465 | } | 
|  | 1466 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1467 | this->bindTextureToScratchUnit(GR_GL_TEXTURE_2D, id); | 
| Robert Phillips | 8043f32 | 2019-05-31 08:11:36 -0400 | [diff] [blame] | 1468 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1469 | *initialState = set_initial_texture_params(this->glInterface(), GR_GL_TEXTURE_2D); | 
|  | 1470 |  | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 1471 | if (!this->uploadCompressedTexData(format, compression, size, GR_GL_TEXTURE_2D, data)) { | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1472 | GL_CALL(DeleteTextures(1, &id)); | 
|  | 1473 | return 0; | 
|  | 1474 | } | 
|  | 1475 | return id; | 
|  | 1476 | } | 
|  | 1477 |  | 
|  | 1478 | GrGLuint GrGLGpu::createTexture2D(const SkISize& size, | 
|  | 1479 | GrGLFormat format, | 
|  | 1480 | GrRenderable renderable, | 
|  | 1481 | GrGLTextureParameters::SamplerOverriddenState* initialState, | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1482 | int mipLevelCount) { | 
| Brian Salomon | 81536f2 | 2019-08-08 16:30:49 -0400 | [diff] [blame] | 1483 | SkASSERT(format != GrGLFormat::kUnknown); | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1484 | SkASSERT(!GrGLFormatIsCompressed(format)); | 
| Brian Salomon | 81536f2 | 2019-08-08 16:30:49 -0400 | [diff] [blame] | 1485 |  | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1486 | GrGLuint id = 0; | 
|  | 1487 | GL_CALL(GenTextures(1, &id)); | 
|  | 1488 |  | 
|  | 1489 | if (!id) { | 
|  | 1490 | return 0; | 
|  | 1491 | } | 
|  | 1492 |  | 
|  | 1493 | this->bindTextureToScratchUnit(GR_GL_TEXTURE_2D, id); | 
| erikchen | 9a1ed5d | 2016-02-10 16:32:34 -0800 | [diff] [blame] | 1494 |  | 
| Robert Phillips | f0313ee | 2019-05-21 13:51:11 -0400 | [diff] [blame] | 1495 | if (GrRenderable::kYes == renderable && this->glCaps().textureUsageSupport()) { | 
| erikchen | 9a1ed5d | 2016-02-10 16:32:34 -0800 | [diff] [blame] | 1496 | // provides a hint about how this texture will be used | 
| Brian Salomon | ea4ad30 | 2019-08-07 13:04:55 -0400 | [diff] [blame] | 1497 | GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_USAGE, GR_GL_FRAMEBUFFER_ATTACHMENT)); | 
| erikchen | 9a1ed5d | 2016-02-10 16:32:34 -0800 | [diff] [blame] | 1498 | } | 
|  | 1499 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1500 | if (initialState) { | 
|  | 1501 | *initialState = set_initial_texture_params(this->glInterface(), GR_GL_TEXTURE_2D); | 
|  | 1502 | } else { | 
|  | 1503 | set_initial_texture_params(this->glInterface(), GR_GL_TEXTURE_2D); | 
| Brian Salomon | a739824 | 2019-09-10 09:17:38 -0400 | [diff] [blame] | 1504 | } | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1505 |  | 
|  | 1506 | GrGLenum internalFormat = this->glCaps().getTexImageOrStorageInternalFormat(format); | 
|  | 1507 |  | 
|  | 1508 | bool success = false; | 
|  | 1509 | if (internalFormat) { | 
|  | 1510 | CLEAR_ERROR_BEFORE_ALLOC(this->glInterface()); | 
|  | 1511 | if (this->glCaps().formatSupportsTexStorage(format)) { | 
|  | 1512 | GL_ALLOC_CALL(this->glInterface(), | 
|  | 1513 | TexStorage2D(GR_GL_TEXTURE_2D, SkTMax(mipLevelCount, 1), internalFormat, | 
|  | 1514 | size.width(), size.height())); | 
|  | 1515 | success = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(this->glInterface())); | 
|  | 1516 | } else { | 
|  | 1517 | GrGLenum externalFormat, externalType; | 
|  | 1518 | this->glCaps().getTexImageExternalFormatAndType(format, &externalFormat, &externalType); | 
|  | 1519 | GrGLenum error = GR_GL_NO_ERROR; | 
|  | 1520 | if (externalFormat && externalType) { | 
|  | 1521 | for (int level = 0; level < mipLevelCount && error == GR_GL_NO_ERROR; level++) { | 
|  | 1522 | const int twoToTheMipLevel = 1 << level; | 
|  | 1523 | const int currentWidth = SkTMax(1, size.width() / twoToTheMipLevel); | 
|  | 1524 | const int currentHeight = SkTMax(1, size.height() / twoToTheMipLevel); | 
|  | 1525 | GL_ALLOC_CALL( | 
|  | 1526 | this->glInterface(), | 
|  | 1527 | TexImage2D(GR_GL_TEXTURE_2D, level, internalFormat, currentWidth, | 
|  | 1528 | currentHeight, 0, externalFormat, externalType, nullptr)); | 
|  | 1529 | error = CHECK_ALLOC_ERROR(this->glInterface()); | 
|  | 1530 | } | 
|  | 1531 | success = (GR_GL_NO_ERROR == error); | 
|  | 1532 | } | 
|  | 1533 | } | 
|  | 1534 | } | 
|  | 1535 | if (success) { | 
|  | 1536 | return id; | 
|  | 1537 | } | 
|  | 1538 | GL_CALL(DeleteTextures(1, &id)); | 
|  | 1539 | return 0; | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 1540 | } | 
|  | 1541 |  | 
| Chris Dalton | effee20 | 2019-07-01 22:28:03 -0600 | [diff] [blame] | 1542 | GrStencilAttachment* GrGLGpu::createStencilAttachmentForRenderTarget( | 
|  | 1543 | const GrRenderTarget* rt, int width, int height, int numStencilSamples) { | 
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1544 | SkASSERT(width >= rt->width()); | 
|  | 1545 | SkASSERT(height >= rt->height()); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1546 |  | 
| egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 1547 | GrGLStencilAttachment::IDDesc sbDesc; | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1548 |  | 
| Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 1549 | int sIdx = this->getCompatibleStencilIndex(rt->backendFormat().asGLFormat()); | 
| bsalomon | 62a627b | 2015-12-17 09:50:47 -0800 | [diff] [blame] | 1550 | if (sIdx < 0) { | 
| egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 1551 | return nullptr; | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1552 | } | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1553 |  | 
|  | 1554 | if (!sbDesc.fRenderbufferID) { | 
|  | 1555 | GL_CALL(GenRenderbuffers(1, &sbDesc.fRenderbufferID)); | 
|  | 1556 | } | 
|  | 1557 | if (!sbDesc.fRenderbufferID) { | 
| egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 1558 | return nullptr; | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1559 | } | 
|  | 1560 | GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID)); | 
|  | 1561 | const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[sIdx]; | 
|  | 1562 | CLEAR_ERROR_BEFORE_ALLOC(this->glInterface()); | 
|  | 1563 | // we do this "if" so that we don't call the multisample | 
|  | 1564 | // version on a GL that doesn't have an MSAA extension. | 
| Chris Dalton | effee20 | 2019-07-01 22:28:03 -0600 | [diff] [blame] | 1565 | if (numStencilSamples > 1) { | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1566 | SkAssertResult(renderbuffer_storage_msaa(*fGLContext, | 
| Chris Dalton | effee20 | 2019-07-01 22:28:03 -0600 | [diff] [blame] | 1567 | numStencilSamples, | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1568 | sFmt.fInternalFormat, | 
|  | 1569 | width, height)); | 
|  | 1570 | } else { | 
|  | 1571 | GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER, | 
|  | 1572 | sFmt.fInternalFormat, | 
|  | 1573 | width, height)); | 
| Brian Salomon | 0ec981b | 2017-05-15 13:48:50 -0400 | [diff] [blame] | 1574 | SkASSERT(GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(this->glInterface())); | 
| egdaniel | ff1d547 | 2015-09-10 08:37:20 -0700 | [diff] [blame] | 1575 | } | 
|  | 1576 | fStats.incStencilAttachmentCreates(); | 
|  | 1577 | // After sized formats we attempt an unsized format and take | 
|  | 1578 | // whatever sizes GL gives us. In that case we query for the size. | 
|  | 1579 | GrGLStencilAttachment::Format format = sFmt; | 
|  | 1580 | get_stencil_rb_sizes(this->glInterface(), &format); | 
| egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 1581 | GrGLStencilAttachment* stencil = new GrGLStencilAttachment(this, | 
|  | 1582 | sbDesc, | 
|  | 1583 | width, | 
|  | 1584 | height, | 
| Chris Dalton | effee20 | 2019-07-01 22:28:03 -0600 | [diff] [blame] | 1585 | numStencilSamples, | 
| egdaniel | ec00d94 | 2015-09-14 12:56:10 -0700 | [diff] [blame] | 1586 | format); | 
|  | 1587 | return stencil; | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1588 | } | 
|  | 1589 |  | 
| bsalomon@google.com | 71f341a | 2011-08-01 13:36:00 +0000 | [diff] [blame] | 1590 | //////////////////////////////////////////////////////////////////////////////// | 
|  | 1591 |  | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 1592 | sk_sp<GrGpuBuffer> GrGLGpu::onCreateBuffer(size_t size, GrGpuBufferType intendedType, | 
|  | 1593 | GrAccessPattern accessPattern, const void* data) { | 
| Brian Salomon | 12d2264 | 2019-01-29 14:38:50 -0500 | [diff] [blame] | 1594 | return GrGLBuffer::Make(this, size, intendedType, accessPattern, data); | 
| jvanverth | 73063dc | 2015-12-03 09:15:47 -0800 | [diff] [blame] | 1595 | } | 
|  | 1596 |  | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1597 | void GrGLGpu::flushScissor(const GrScissorState& scissorState, int rtWidth, int rtHeight, | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1598 | GrSurfaceOrigin rtOrigin) { | 
|  | 1599 | if (scissorState.enabled()) { | 
| Chris Dalton | d6cda8d | 2019-09-05 02:30:04 -0600 | [diff] [blame] | 1600 | auto scissor = GrNativeRect::MakeRelativeTo(rtOrigin, rtHeight, scissorState.rect()); | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1601 | // if the scissor fully contains the viewport then we fall through and | 
|  | 1602 | // disable the scissor test. | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1603 | if (!scissor.contains(rtWidth, rtHeight)) { | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1604 | if (fHWScissorSettings.fRect != scissor) { | 
| Chris Dalton | 76500e5 | 2019-09-05 02:13:05 -0600 | [diff] [blame] | 1605 | GL_CALL(Scissor(scissor.fX, scissor.fY, scissor.fWidth, scissor.fHeight)); | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1606 | fHWScissorSettings.fRect = scissor; | 
|  | 1607 | } | 
|  | 1608 | if (kYes_TriState != fHWScissorSettings.fEnabled) { | 
|  | 1609 | GL_CALL(Enable(GR_GL_SCISSOR_TEST)); | 
|  | 1610 | fHWScissorSettings.fEnabled = kYes_TriState; | 
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1611 | } | 
|  | 1612 | return; | 
|  | 1613 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1614 | } | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1615 |  | 
|  | 1616 | // See fall through note above | 
|  | 1617 | this->disableScissor(); | 
| joshualitt | 77b1307 | 2014-10-27 14:51:01 -0700 | [diff] [blame] | 1618 | } | 
|  | 1619 |  | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 1620 | void GrGLGpu::flushWindowRectangles(const GrWindowRectsState& windowState, | 
| Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 1621 | const GrGLRenderTarget* rt, GrSurfaceOrigin origin) { | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 1622 | #ifndef USE_NSIGHT | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 1623 | typedef GrWindowRectsState::Mode Mode; | 
|  | 1624 | SkASSERT(!windowState.enabled() || rt->renderFBOID()); // Window rects can't be used on-screen. | 
|  | 1625 | SkASSERT(windowState.numWindows() <= this->caps()->maxWindowRectangles()); | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1626 |  | 
| Jim Van Verth | 6a40abc | 2017-11-02 16:56:09 +0000 | [diff] [blame] | 1627 | if (!this->caps()->maxWindowRectangles() || | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1628 | fHWWindowRectsState.knownEqualTo(origin, rt->width(), rt->height(), windowState)) { | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1629 | return; | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1630 | } | 
|  | 1631 |  | 
| csmartdalton | 7535f41 | 2016-08-23 06:51:00 -0700 | [diff] [blame] | 1632 | // This is purely a workaround for a spurious warning generated by gcc. Otherwise the above | 
|  | 1633 | // assert would be sufficient. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=5912 | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 1634 | int numWindows = SkTMin(windowState.numWindows(), int(GrWindowRectangles::kMaxWindows)); | 
|  | 1635 | SkASSERT(windowState.numWindows() == numWindows); | 
| csmartdalton | 7535f41 | 2016-08-23 06:51:00 -0700 | [diff] [blame] | 1636 |  | 
| Chris Dalton | d6cda8d | 2019-09-05 02:30:04 -0600 | [diff] [blame] | 1637 | GrNativeRect glwindows[GrWindowRectangles::kMaxWindows]; | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 1638 | const SkIRect* skwindows = windowState.windows().data(); | 
| csmartdalton | 7535f41 | 2016-08-23 06:51:00 -0700 | [diff] [blame] | 1639 | for (int i = 0; i < numWindows; ++i) { | 
| Chris Dalton | 76500e5 | 2019-09-05 02:13:05 -0600 | [diff] [blame] | 1640 | glwindows[i].setRelativeTo(origin, rt->height(), skwindows[i]); | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1641 | } | 
|  | 1642 |  | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 1643 | GrGLenum glmode = (Mode::kExclusive == windowState.mode()) ? GR_GL_EXCLUSIVE : GR_GL_INCLUSIVE; | 
| csmartdalton | 7535f41 | 2016-08-23 06:51:00 -0700 | [diff] [blame] | 1644 | GL_CALL(WindowRectangles(glmode, numWindows, glwindows->asInts())); | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1645 |  | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1646 | fHWWindowRectsState.set(origin, rt->width(), rt->height(), windowState); | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 1647 | #endif | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1648 | } | 
|  | 1649 |  | 
|  | 1650 | void GrGLGpu::disableWindowRectangles() { | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 1651 | #ifndef USE_NSIGHT | 
| Jim Van Verth | 6a40abc | 2017-11-02 16:56:09 +0000 | [diff] [blame] | 1652 | if (!this->caps()->maxWindowRectangles() || fHWWindowRectsState.knownDisabled()) { | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1653 | return; | 
|  | 1654 | } | 
|  | 1655 | GL_CALL(WindowRectangles(GR_GL_EXCLUSIVE, 0, nullptr)); | 
| csmartdalton | bf4a8f9 | 2016-09-06 10:01:06 -0700 | [diff] [blame] | 1656 | fHWWindowRectsState.setDisabled(); | 
| Jim Van Verth | 32ac83e | 2016-11-28 15:23:57 -0500 | [diff] [blame] | 1657 | #endif | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1658 | } | 
|  | 1659 |  | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 1660 | bool GrGLGpu::flushGLState(GrRenderTarget* renderTarget, | 
|  | 1661 | GrSurfaceOrigin origin, | 
|  | 1662 | const GrPrimitiveProcessor& primProc, | 
| Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 1663 | const GrPipeline& pipeline, | 
|  | 1664 | const GrPipeline::FixedDynamicState* fixedDynamicState, | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 1665 | const GrPipeline::DynamicStateArrays* dynamicStateArrays, | 
|  | 1666 | int dynamicStateArraysLength, | 
| bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 1667 | bool willDrawPoints) { | 
| Chris Dalton | 4ece96d | 2019-08-30 11:26:39 -0600 | [diff] [blame] | 1668 | const GrTextureProxy* const* primProcProxies = nullptr; | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 1669 | const GrTextureProxy* const* primProcProxiesToBind = nullptr; | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 1670 | if (dynamicStateArrays && dynamicStateArrays->fPrimitiveProcessorTextures) { | 
| Chris Dalton | 4ece96d | 2019-08-30 11:26:39 -0600 | [diff] [blame] | 1671 | primProcProxies = dynamicStateArrays->fPrimitiveProcessorTextures; | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 1672 | } else if (fixedDynamicState && fixedDynamicState->fPrimitiveProcessorTextures) { | 
| Chris Dalton | 4ece96d | 2019-08-30 11:26:39 -0600 | [diff] [blame] | 1673 | primProcProxies = fixedDynamicState->fPrimitiveProcessorTextures; | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 1674 | primProcProxiesToBind = fixedDynamicState->fPrimitiveProcessorTextures; | 
| Brian Salomon | 7eae3e0 | 2018-08-07 14:02:38 +0000 | [diff] [blame] | 1675 | } | 
| Greg Daniel | 9a51a86 | 2018-11-30 10:18:14 -0500 | [diff] [blame] | 1676 |  | 
| Chris Dalton | 4ece96d | 2019-08-30 11:26:39 -0600 | [diff] [blame] | 1677 | SkASSERT(SkToBool(primProcProxies) == SkToBool(primProc.numTextureSamplers())); | 
| Greg Daniel | 9a51a86 | 2018-11-30 10:18:14 -0500 | [diff] [blame] | 1678 |  | 
| Chris Dalton | 4ece96d | 2019-08-30 11:26:39 -0600 | [diff] [blame] | 1679 | sk_sp<GrGLProgram> program(fProgramCache->refProgram( | 
|  | 1680 | this, renderTarget, origin, primProc, primProcProxies, pipeline, willDrawPoints)); | 
| Greg Daniel | 9a51a86 | 2018-11-30 10:18:14 -0500 | [diff] [blame] | 1681 | if (!program) { | 
|  | 1682 | GrCapsDebugf(this->caps(), "Failed to create program!\n"); | 
|  | 1683 | return false; | 
|  | 1684 | } | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 1685 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 1686 | this->flushProgram(std::move(program)); | 
| bsalomon | 1f78c0a | 2014-12-17 09:43:13 -0800 | [diff] [blame] | 1687 |  | 
| Dongseong Hwang | 4e1f022 | 2018-11-01 09:10:51 -0700 | [diff] [blame] | 1688 | // Swizzle the blend to match what the shader will output. | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 1689 | this->flushBlendAndColorWrite( | 
|  | 1690 | pipeline.getXferProcessor().getBlendInfo(), pipeline.outputSwizzle()); | 
| bsalomon | 1f78c0a | 2014-12-17 09:43:13 -0800 | [diff] [blame] | 1691 |  | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 1692 | fHWProgram->updateUniformsAndTextureBindings(renderTarget, origin, | 
|  | 1693 | primProc, pipeline, primProcProxiesToBind); | 
| bsalomon | 1f78c0a | 2014-12-17 09:43:13 -0800 | [diff] [blame] | 1694 |  | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 1695 | GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(renderTarget); | 
| csmartdalton | c633abb | 2016-11-01 08:55:55 -0700 | [diff] [blame] | 1696 | GrStencilSettings stencil; | 
|  | 1697 | if (pipeline.isStencilEnabled()) { | 
|  | 1698 | // TODO: attach stencil and create settings during render target flush. | 
|  | 1699 | SkASSERT(glRT->renderTargetPriv().getStencilAttachment()); | 
|  | 1700 | stencil.reset(*pipeline.getUserStencil(), pipeline.hasStencilClip(), | 
|  | 1701 | glRT->renderTargetPriv().numStencilBits()); | 
|  | 1702 | } | 
| Chris Dalton | 71713f6 | 2019-04-18 12:41:03 -0600 | [diff] [blame] | 1703 | this->flushStencil(stencil, origin); | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1704 | if (pipeline.isScissorEnabled()) { | 
|  | 1705 | static constexpr SkIRect kBogusScissor{0, 0, 1, 1}; | 
|  | 1706 | GrScissorState state(fixedDynamicState ? fixedDynamicState->fScissorRect : kBogusScissor); | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1707 | this->flushScissor(state, glRT->width(), glRT->height(), origin); | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1708 | } else { | 
|  | 1709 | this->disableScissor(); | 
| Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 1710 | } | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 1711 | this->flushWindowRectangles(pipeline.getWindowRectsState(), glRT, origin); | 
| Chris Dalton | 4c56b03 | 2019-03-04 12:28:42 -0700 | [diff] [blame] | 1712 | this->flushHWAAState(glRT, pipeline.isHWAntialiasState()); | 
| bsalomon | bc3d0de | 2014-12-15 13:45:03 -0800 | [diff] [blame] | 1713 |  | 
|  | 1714 | // This must come after textures are flushed because a texture may need | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 1715 | // to be msaa-resolved (which will modify bound FBO state). | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 1716 | this->flushRenderTarget(glRT); | 
| bsalomon | bc3d0de | 2014-12-15 13:45:03 -0800 | [diff] [blame] | 1717 |  | 
|  | 1718 | return true; | 
|  | 1719 | } | 
|  | 1720 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 1721 | void GrGLGpu::flushProgram(sk_sp<GrGLProgram> program) { | 
|  | 1722 | if (!program) { | 
|  | 1723 | fHWProgram.reset(); | 
|  | 1724 | fHWProgramID = 0; | 
|  | 1725 | return; | 
|  | 1726 | } | 
|  | 1727 | SkASSERT((program == fHWProgram) == (fHWProgramID == program->programID())); | 
|  | 1728 | if (program == fHWProgram) { | 
|  | 1729 | return; | 
|  | 1730 | } | 
|  | 1731 | auto id = program->programID(); | 
|  | 1732 | SkASSERT(id); | 
|  | 1733 | GL_CALL(UseProgram(id)); | 
|  | 1734 | fHWProgram = std::move(program); | 
|  | 1735 | fHWProgramID = id; | 
|  | 1736 | } | 
|  | 1737 |  | 
|  | 1738 | void GrGLGpu::flushProgram(GrGLuint id) { | 
|  | 1739 | SkASSERT(id); | 
|  | 1740 | if (fHWProgramID == id) { | 
|  | 1741 | SkASSERT(!fHWProgram); | 
|  | 1742 | return; | 
|  | 1743 | } | 
|  | 1744 | fHWProgram.reset(); | 
|  | 1745 | GL_CALL(UseProgram(id)); | 
|  | 1746 | fHWProgramID = id; | 
|  | 1747 | } | 
|  | 1748 |  | 
|  | 1749 | void GrGLGpu::setupGeometry(const GrBuffer* indexBuffer, | 
| Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 1750 | const GrBuffer* vertexBuffer, | 
| Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 1751 | int baseVertex, | 
|  | 1752 | const GrBuffer* instanceBuffer, | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 1753 | int baseInstance, | 
|  | 1754 | GrPrimitiveRestart enablePrimitiveRestart) { | 
|  | 1755 | SkASSERT((enablePrimitiveRestart == GrPrimitiveRestart::kNo) || indexBuffer); | 
| Chris Dalton | 27059d3 | 2018-01-23 14:06:50 -0700 | [diff] [blame] | 1756 |  | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1757 | GrGLAttribArrayState* attribState; | 
| Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 1758 | if (indexBuffer) { | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 1759 | SkASSERT(indexBuffer->isCpuBuffer() || | 
|  | 1760 | !static_cast<const GrGpuBuffer*>(indexBuffer)->isMapped()); | 
| Chris Dalton | ff92650 | 2017-05-03 14:36:54 -0400 | [diff] [blame] | 1761 | attribState = fHWVertexArrayState.bindInternalVertexArray(this, indexBuffer); | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1762 | } else { | 
|  | 1763 | attribState = fHWVertexArrayState.bindInternalVertexArray(this); | 
| bsalomon | bc3d0de | 2014-12-15 13:45:03 -0800 | [diff] [blame] | 1764 | } | 
| bsalomon | bc3d0de | 2014-12-15 13:45:03 -0800 | [diff] [blame] | 1765 |  | 
| Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 1766 | int numAttribs = fHWProgram->numVertexAttributes() + fHWProgram->numInstanceAttributes(); | 
|  | 1767 | attribState->enableVertexArrays(this, numAttribs, enablePrimitiveRestart); | 
| Chris Dalton | 8e45b4f | 2017-05-05 14:00:56 -0400 | [diff] [blame] | 1768 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 1769 | if (int vertexStride = fHWProgram->vertexStride()) { | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 1770 | SkASSERT(vertexBuffer); | 
|  | 1771 | SkASSERT(vertexBuffer->isCpuBuffer() || | 
|  | 1772 | !static_cast<const GrGpuBuffer*>(vertexBuffer)->isMapped()); | 
|  | 1773 | size_t bufferOffset = baseVertex * static_cast<size_t>(vertexStride); | 
| Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 1774 | for (int i = 0; i < fHWProgram->numVertexAttributes(); ++i) { | 
|  | 1775 | const auto& attrib = fHWProgram->vertexAttribute(i); | 
|  | 1776 | static constexpr int kDivisor = 0; | 
| Brian Osman | 4a3f5c8 | 2018-09-18 16:16:38 -0400 | [diff] [blame] | 1777 | attribState->set(this, attrib.fLocation, vertexBuffer, attrib.fCPUType, attrib.fGPUType, | 
|  | 1778 | vertexStride, bufferOffset + attrib.fOffset, kDivisor); | 
| Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 1779 | } | 
| Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 1780 | } | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 1781 | if (int instanceStride = fHWProgram->instanceStride()) { | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 1782 | SkASSERT(instanceBuffer); | 
|  | 1783 | SkASSERT(instanceBuffer->isCpuBuffer() || | 
|  | 1784 | !static_cast<const GrGpuBuffer*>(instanceBuffer)->isMapped()); | 
|  | 1785 | size_t bufferOffset = baseInstance * static_cast<size_t>(instanceStride); | 
| Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 1786 | int attribIdx = fHWProgram->numVertexAttributes(); | 
|  | 1787 | for (int i = 0; i < fHWProgram->numInstanceAttributes(); ++i, ++attribIdx) { | 
|  | 1788 | const auto& attrib = fHWProgram->instanceAttribute(i); | 
|  | 1789 | static constexpr int kDivisor = 1; | 
| Brian Osman | 4a3f5c8 | 2018-09-18 16:16:38 -0400 | [diff] [blame] | 1790 | attribState->set(this, attrib.fLocation, instanceBuffer, attrib.fCPUType, | 
|  | 1791 | attrib.fGPUType, instanceStride, bufferOffset + attrib.fOffset, | 
|  | 1792 | kDivisor); | 
| Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 1793 | } | 
| bsalomon | bc3d0de | 2014-12-15 13:45:03 -0800 | [diff] [blame] | 1794 | } | 
|  | 1795 | } | 
|  | 1796 |  | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 1797 | GrGLenum GrGLGpu::bindBuffer(GrGpuBufferType type, const GrBuffer* buffer) { | 
| joshualitt | 93316b9 | 2015-10-23 09:08:08 -0700 | [diff] [blame] | 1798 | this->handleDirtyContext(); | 
| cdalton | deacc97 | 2016-04-06 14:26:33 -0700 | [diff] [blame] | 1799 |  | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1800 | // Index buffer state is tied to the vertex array. | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 1801 | if (GrGpuBufferType::kIndex == type) { | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1802 | this->bindVertexArray(0); | 
| cdalton | deacc97 | 2016-04-06 14:26:33 -0700 | [diff] [blame] | 1803 | } | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1804 |  | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 1805 | auto* bufferState = this->hwBufferState(type); | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 1806 | if (buffer->isCpuBuffer()) { | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 1807 | if (!bufferState->fBufferZeroKnownBound) { | 
|  | 1808 | GL_CALL(BindBuffer(bufferState->fGLTarget, 0)); | 
|  | 1809 | bufferState->fBufferZeroKnownBound = true; | 
|  | 1810 | bufferState->fBoundBufferUniqueID.makeInvalid(); | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1811 | } | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 1812 | } else if (static_cast<const GrGpuBuffer*>(buffer)->uniqueID() != | 
|  | 1813 | bufferState->fBoundBufferUniqueID) { | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 1814 | const GrGLBuffer* glBuffer = static_cast<const GrGLBuffer*>(buffer); | 
|  | 1815 | GL_CALL(BindBuffer(bufferState->fGLTarget, glBuffer->bufferID())); | 
|  | 1816 | bufferState->fBufferZeroKnownBound = false; | 
|  | 1817 | bufferState->fBoundBufferUniqueID = glBuffer->uniqueID(); | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 1818 | } | 
|  | 1819 |  | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 1820 | return bufferState->fGLTarget; | 
| joshualitt | 93316b9 | 2015-10-23 09:08:08 -0700 | [diff] [blame] | 1821 | } | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1822 | void GrGLGpu::disableScissor() { | 
|  | 1823 | if (kNo_TriState != fHWScissorSettings.fEnabled) { | 
|  | 1824 | GL_CALL(Disable(GR_GL_SCISSOR_TEST)); | 
|  | 1825 | fHWScissorSettings.fEnabled = kNo_TriState; | 
|  | 1826 | return; | 
|  | 1827 | } | 
|  | 1828 | } | 
|  | 1829 |  | 
| Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 1830 | void GrGLGpu::clear(const GrFixedClip& clip, const SkPMColor4f& color, | 
| Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 1831 | GrRenderTarget* target, GrSurfaceOrigin origin) { | 
| bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 1832 | // parent class should never let us get here with no RT | 
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1833 | SkASSERT(target); | 
| Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 1834 | SkASSERT(!this->caps()->performColorClearsAsDraws()); | 
|  | 1835 | SkASSERT(!clip.scissorEnabled() || !this->caps()->performPartialClearsAsDraws()); | 
| bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 1836 |  | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 1837 | this->handleDirtyContext(); | 
| bsalomon@google.com | 74b9871 | 2011-11-11 19:46:16 +0000 | [diff] [blame] | 1838 |  | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 1839 | GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target); | 
|  | 1840 |  | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1841 | if (clip.scissorEnabled()) { | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 1842 | this->flushRenderTarget(glRT, origin, clip.scissorRect()); | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 1843 | } else { | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 1844 | this->flushRenderTarget(glRT); | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 1845 | } | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1846 | this->flushScissor(clip.scissorState(), glRT->width(), glRT->height(), origin); | 
| Brian Salomon | 43f8bf0 | 2017-10-18 08:33:29 -0400 | [diff] [blame] | 1847 | this->flushWindowRectangles(clip.windowRectsState(), glRT, origin); | 
| Brian Salomon | 805cc7a | 2019-01-28 09:52:34 -0500 | [diff] [blame] | 1848 | this->flushColorWrite(true); | 
| Michael Ludwig | 6e17f1d | 2019-05-15 14:00:20 +0000 | [diff] [blame] | 1849 |  | 
|  | 1850 | GrGLfloat r = color.fR, g = color.fG, b = color.fB, a = color.fA; | 
|  | 1851 | if (this->glCaps().clearToBoundaryValuesIsBroken() && | 
|  | 1852 | (1 == r || 0 == r) && (1 == g || 0 == g) && (1 == b || 0 == b) && (1 == a || 0 == a)) { | 
|  | 1853 | static const GrGLfloat safeAlpha1 = nextafter(1.f, 2.f); | 
|  | 1854 | static const GrGLfloat safeAlpha0 = nextafter(0.f, -1.f); | 
|  | 1855 | a = (1 == a) ? safeAlpha1 : safeAlpha0; | 
|  | 1856 | } | 
|  | 1857 | this->flushClearColor(r, g, b, a); | 
|  | 1858 |  | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1859 | GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT)); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1860 | } | 
|  | 1861 |  | 
| Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 1862 | void GrGLGpu::clearStencil(GrRenderTarget* target, int clearValue) { | 
| Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 1863 | SkASSERT(!this->caps()->performStencilClearsAsDraws()); | 
|  | 1864 |  | 
| Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 1865 | if (!target) { | 
| bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 1866 | return; | 
|  | 1867 | } | 
| Robert Phillips | cb2e235 | 2017-08-30 16:44:40 -0400 | [diff] [blame] | 1868 |  | 
| Michael Ludwig | 6e17f1d | 2019-05-15 14:00:20 +0000 | [diff] [blame] | 1869 | GrStencilAttachment* sb = target->renderTargetPriv().getStencilAttachment(); | 
|  | 1870 | // this should only be called internally when we know we have a | 
|  | 1871 | // stencil buffer. | 
|  | 1872 | SkASSERT(sb); | 
| Robert Phillips | cb2e235 | 2017-08-30 16:44:40 -0400 | [diff] [blame] | 1873 |  | 
| bsalomon | b0bd4f6 | 2014-09-03 07:19:50 -0700 | [diff] [blame] | 1874 | GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target); | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 1875 | this->flushRenderTargetNoColorWrites(glRT); | 
| bsalomon@google.com | 8295dc1 | 2011-05-02 12:53:34 +0000 | [diff] [blame] | 1876 |  | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 1877 | this->disableScissor(); | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 1878 | this->disableWindowRectangles(); | 
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 1879 |  | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1880 | GL_CALL(StencilMask(0xffffffff)); | 
| Robert Phillips | 9521447 | 2017-08-08 18:00:03 -0400 | [diff] [blame] | 1881 | GL_CALL(ClearStencil(clearValue)); | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1882 | GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT)); | 
| bsalomon@google.com | 457b8a3 | 2012-05-21 21:19:58 +0000 | [diff] [blame] | 1883 | fHWStencilSettings.invalidate(); | 
| Michael Ludwig | 6e17f1d | 2019-05-15 14:00:20 +0000 | [diff] [blame] | 1884 | if (!clearValue) { | 
|  | 1885 | sb->cleared(); | 
| Robert Phillips | cb2e235 | 2017-08-30 16:44:40 -0400 | [diff] [blame] | 1886 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1887 | } | 
|  | 1888 |  | 
| csmartdalton | 29df760 | 2016-08-31 11:55:52 -0700 | [diff] [blame] | 1889 | void GrGLGpu::clearStencilClip(const GrFixedClip& clip, | 
|  | 1890 | bool insideStencilMask, | 
| Robert Phillips | 19e51dc | 2017-08-09 09:30:51 -0400 | [diff] [blame] | 1891 | GrRenderTarget* target, GrSurfaceOrigin origin) { | 
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1892 | SkASSERT(target); | 
| Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 1893 | SkASSERT(!this->caps()->performStencilClearsAsDraws()); | 
| egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 1894 | this->handleDirtyContext(); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1895 |  | 
| egdaniel | 8dc7c3a | 2015-04-16 11:22:42 -0700 | [diff] [blame] | 1896 | GrStencilAttachment* sb = target->renderTargetPriv().getStencilAttachment(); | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1897 | // this should only be called internally when we know we have a | 
|  | 1898 | // stencil buffer. | 
| bsalomon | 6bc1b5f | 2015-02-23 09:06:38 -0800 | [diff] [blame] | 1899 | SkASSERT(sb); | 
|  | 1900 | GrGLint stencilBitCount =  sb->bits(); | 
| bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 1901 | #if 0 | 
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 1902 | SkASSERT(stencilBitCount > 0); | 
| twiz@google.com | 0f31ca7 | 2011-03-18 17:38:11 +0000 | [diff] [blame] | 1903 | GrGLint clipStencilMask  = (1 << (stencilBitCount - 1)); | 
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 1904 | #else | 
|  | 1905 | // we could just clear the clip bit but when we go through | 
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 1906 | // ANGLE a partial stencil mask will cause clears to be | 
| Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 1907 | // turned into draws. Our contract on GrOpsTask says that | 
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 1908 | // changing the clip between stencil passes may or may not | 
|  | 1909 | // zero the client's clip bits. So we just clear the whole thing. | 
| twiz@google.com | 0f31ca7 | 2011-03-18 17:38:11 +0000 | [diff] [blame] | 1910 | static const GrGLint clipStencilMask  = ~0; | 
| bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 1911 | #endif | 
| bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 1912 | GrGLint value; | 
| csmartdalton | 29df760 | 2016-08-31 11:55:52 -0700 | [diff] [blame] | 1913 | if (insideStencilMask) { | 
| bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 1914 | value = (1 << (stencilBitCount - 1)); | 
|  | 1915 | } else { | 
|  | 1916 | value = 0; | 
|  | 1917 | } | 
| bsalomon | b0bd4f6 | 2014-09-03 07:19:50 -0700 | [diff] [blame] | 1918 | GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target); | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 1919 | this->flushRenderTargetNoColorWrites(glRT); | 
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1920 |  | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 1921 | this->flushScissor(clip.scissorState(), glRT->width(), glRT->height(), origin); | 
| Robert Phillips | b0e93a2 | 2017-08-29 08:26:54 -0400 | [diff] [blame] | 1922 | this->flushWindowRectangles(clip.windowRectsState(), glRT, origin); | 
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 1923 |  | 
| caryclark@google.com | cf6285b | 2012-06-06 12:09:01 +0000 | [diff] [blame] | 1924 | GL_CALL(StencilMask((uint32_t) clipStencilMask)); | 
| bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 1925 | GL_CALL(ClearStencil(value)); | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 1926 | GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT)); | 
| bsalomon@google.com | 457b8a3 | 2012-05-21 21:19:58 +0000 | [diff] [blame] | 1927 | fHWStencilSettings.invalidate(); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1928 | } | 
|  | 1929 |  | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 1930 | bool GrGLGpu::readOrTransferPixelsFrom(GrSurface* surface, int left, int top, int width, int height, | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 1931 | GrColorType surfaceColorType, GrColorType dstColorType, | 
|  | 1932 | void* offsetOrPtr, int rowWidthInPixels) { | 
| bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 1933 | SkASSERT(surface); | 
| bsalomon | 3982602 | 2015-07-23 08:07:21 -0700 | [diff] [blame] | 1934 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 1935 | auto format = surface->backendFormat().asGLFormat(); | 
| bsalomon | e957331 | 2016-01-25 14:33:25 -0800 | [diff] [blame] | 1936 | GrGLRenderTarget* renderTarget = static_cast<GrGLRenderTarget*>(surface->asRenderTarget()); | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 1937 | if (!renderTarget && !this->glCaps().isFormatRenderable(format, 1)) { | 
| bsalomon | 6cb3cbe | 2015-07-30 07:34:27 -0700 | [diff] [blame] | 1938 | return false; | 
|  | 1939 | } | 
| Greg Daniel | ba88ab6 | 2019-07-26 09:14:01 -0400 | [diff] [blame] | 1940 | GrGLenum externalFormat = 0; | 
|  | 1941 | GrGLenum externalType = 0; | 
| Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 1942 | this->glCaps().getReadPixelsFormat(surface->backendFormat().asGLFormat(), | 
|  | 1943 | surfaceColorType, | 
|  | 1944 | dstColorType, | 
|  | 1945 | &externalFormat, | 
|  | 1946 | &externalType); | 
| Greg Daniel | ba88ab6 | 2019-07-26 09:14:01 -0400 | [diff] [blame] | 1947 | if (!externalFormat || !externalType) { | 
| bsalomon | 76148af | 2016-01-12 11:13:47 -0800 | [diff] [blame] | 1948 | return false; | 
|  | 1949 | } | 
| bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 1950 |  | 
| Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1951 | if (renderTarget) { | 
| Chris Dalton | 798a31d | 2019-09-26 19:28:32 +0000 | [diff] [blame] | 1952 | // resolve the render target if necessary | 
|  | 1953 | switch (renderTarget->getResolveType()) { | 
|  | 1954 | case GrGLRenderTarget::kCantResolve_ResolveType: | 
|  | 1955 | return false; | 
|  | 1956 | case GrGLRenderTarget::kAutoResolves_ResolveType: | 
|  | 1957 | this->flushRenderTargetNoColorWrites(renderTarget); | 
|  | 1958 | break; | 
|  | 1959 | case GrGLRenderTarget::kCanResolve_ResolveType: | 
|  | 1960 | SkASSERT(!renderTarget->needsResolve()); | 
|  | 1961 | // we don't track the state of the READ FBO ID. | 
|  | 1962 | this->bindFramebuffer(GR_GL_READ_FRAMEBUFFER, renderTarget->textureFBOID()); | 
|  | 1963 | break; | 
|  | 1964 | default: | 
|  | 1965 | SK_ABORT("Unknown resolve type"); | 
| Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1966 | } | 
| Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 1967 | } else { | 
|  | 1968 | // Use a temporary FBO. | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 1969 | this->bindSurfaceFBOForPixelOps(surface, 0, GR_GL_FRAMEBUFFER, kSrc_TempFBOTarget); | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 1970 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1971 | } | 
|  | 1972 |  | 
| bsalomon@google.com | 8895a7a | 2011-02-18 16:09:55 +0000 | [diff] [blame] | 1973 | // the read rect is viewport-relative | 
| Chris Dalton | d6cda8d | 2019-09-05 02:30:04 -0600 | [diff] [blame] | 1974 | GrNativeRect readRect = {left, top, width, height}; | 
| rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 1975 |  | 
| Brian Salomon | a694870 | 2018-06-01 15:33:20 -0400 | [diff] [blame] | 1976 | // determine if GL can read using the passed rowBytes or if we need a scratch buffer. | 
| Brian Salomon | 26de56e | 2019-04-10 12:14:26 -0400 | [diff] [blame] | 1977 | if (rowWidthInPixels != width) { | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 1978 | SkASSERT(this->glCaps().readPixelsRowBytesSupport()); | 
| Brian Salomon | 26de56e | 2019-04-10 12:14:26 -0400 | [diff] [blame] | 1979 | GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, rowWidthInPixels)); | 
| bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 1980 | } | 
| Brian Salomon | 8cbf662 | 2019-07-30 11:03:14 -0400 | [diff] [blame] | 1981 | GL_CALL(PixelStorei(GR_GL_PACK_ALIGNMENT, 1)); | 
| bsalomon | f46a124 | 2015-12-15 12:37:38 -0800 | [diff] [blame] | 1982 |  | 
| Brian Osman | 1348ed0 | 2018-09-12 09:08:39 -0400 | [diff] [blame] | 1983 | bool reattachStencil = false; | 
|  | 1984 | if (this->glCaps().detachStencilFromMSAABuffersBeforeReadPixels() && | 
|  | 1985 | renderTarget && | 
|  | 1986 | renderTarget->renderTargetPriv().getStencilAttachment() && | 
| Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 1987 | renderTarget->numSamples() > 1) { | 
| Brian Osman | 1348ed0 | 2018-09-12 09:08:39 -0400 | [diff] [blame] | 1988 | // Fix Adreno devices that won't read from MSAA framebuffers with stencil attached | 
|  | 1989 | reattachStencil = true; | 
|  | 1990 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_STENCIL_ATTACHMENT, | 
|  | 1991 | GR_GL_RENDERBUFFER, 0)); | 
|  | 1992 | } | 
|  | 1993 |  | 
| Chris Dalton | 76500e5 | 2019-09-05 02:13:05 -0600 | [diff] [blame] | 1994 | GL_CALL(ReadPixels(readRect.fX, readRect.fY, readRect.fWidth, readRect.fHeight, | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 1995 | externalFormat, externalType, offsetOrPtr)); | 
| Brian Osman | 1348ed0 | 2018-09-12 09:08:39 -0400 | [diff] [blame] | 1996 |  | 
|  | 1997 | if (reattachStencil) { | 
|  | 1998 | GrGLStencilAttachment* stencilAttachment = static_cast<GrGLStencilAttachment*>( | 
|  | 1999 | renderTarget->renderTargetPriv().getStencilAttachment()); | 
|  | 2000 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_STENCIL_ATTACHMENT, | 
|  | 2001 | GR_GL_RENDERBUFFER, stencilAttachment->renderbufferID())); | 
|  | 2002 | } | 
|  | 2003 |  | 
| Brian Salomon | 26de56e | 2019-04-10 12:14:26 -0400 | [diff] [blame] | 2004 | if (rowWidthInPixels != width) { | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 2005 | SkASSERT(this->glCaps().readPixelsRowBytesSupport()); | 
| bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 2006 | GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0)); | 
|  | 2007 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2008 |  | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 2009 | if (!renderTarget) { | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 2010 | this->unbindSurfaceFBOForPixelOps(surface, 0, GR_GL_FRAMEBUFFER); | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 2011 | } | 
|  | 2012 | return true; | 
|  | 2013 | } | 
|  | 2014 |  | 
|  | 2015 | bool GrGLGpu::onReadPixels(GrSurface* surface, int left, int top, int width, int height, | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 2016 | GrColorType surfaceColorType, GrColorType dstColorType, void* buffer, | 
|  | 2017 | size_t rowBytes) { | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 2018 | SkASSERT(surface); | 
|  | 2019 |  | 
| Brian Salomon | b28cb68 | 2019-07-26 12:48:47 -0400 | [diff] [blame] | 2020 | size_t bytesPerPixel = GrColorTypeBytesPerPixel(dstColorType); | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 2021 |  | 
| Brian Salomon | 26de56e | 2019-04-10 12:14:26 -0400 | [diff] [blame] | 2022 | // GL_PACK_ROW_LENGTH is in terms of pixels not bytes. | 
|  | 2023 | int rowPixelWidth; | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 2024 |  | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 2025 | if (rowBytes == SkToSizeT(width * bytesPerPixel)) { | 
| Brian Salomon | 26de56e | 2019-04-10 12:14:26 -0400 | [diff] [blame] | 2026 | rowPixelWidth = width; | 
|  | 2027 | } else { | 
| Brian Salomon | 1047a49 | 2019-07-02 12:25:21 -0400 | [diff] [blame] | 2028 | SkASSERT(!(rowBytes % bytesPerPixel)); | 
|  | 2029 | rowPixelWidth = rowBytes / bytesPerPixel; | 
| Brian Salomon | e05ba5a | 2019-04-08 11:59:07 -0400 | [diff] [blame] | 2030 | } | 
| Brian Salomon | f77c146 | 2019-08-01 15:19:29 -0400 | [diff] [blame] | 2031 | return this->readOrTransferPixelsFrom(surface, left, top, width, height, surfaceColorType, | 
|  | 2032 | dstColorType, buffer, rowPixelWidth); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2033 | } | 
|  | 2034 |  | 
| Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 2035 | GrOpsRenderPass* GrGLGpu::getOpsRenderPass( | 
| Ethan Nicholas | 56d19a5 | 2018-10-15 11:26:20 -0400 | [diff] [blame] | 2036 | GrRenderTarget* rt, GrSurfaceOrigin origin, const SkRect& bounds, | 
| Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 2037 | const GrOpsRenderPass::LoadAndStoreInfo& colorInfo, | 
| Greg Daniel | b20d7e5 | 2019-09-03 13:54:39 -0400 | [diff] [blame] | 2038 | const GrOpsRenderPass::StencilLoadAndStoreInfo& stencilInfo, | 
|  | 2039 | const SkTArray<GrTextureProxy*, true>& sampledProxies) { | 
| Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 2040 | if (!fCachedOpsRenderPass) { | 
|  | 2041 | fCachedOpsRenderPass.reset(new GrGLOpsRenderPass(this)); | 
| Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 2042 | } | 
|  | 2043 |  | 
| Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 2044 | fCachedOpsRenderPass->set(rt, origin, colorInfo, stencilInfo); | 
|  | 2045 | return fCachedOpsRenderPass.get(); | 
| egdaniel | 066df7c | 2016-06-08 14:02:27 -0700 | [diff] [blame] | 2046 | } | 
|  | 2047 |  | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 2048 | void GrGLGpu::flushRenderTarget(GrGLRenderTarget* target, GrSurfaceOrigin origin, | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 2049 | const SkIRect& bounds) { | 
| Brian Osman | 9aa30c6 | 2018-07-02 15:21:46 -0400 | [diff] [blame] | 2050 | this->flushRenderTargetNoColorWrites(target); | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 2051 | this->didWriteToSurface(target, origin, &bounds); | 
|  | 2052 | } | 
| bsalomon | 6ba6fa1 | 2015-03-04 11:57:37 -0800 | [diff] [blame] | 2053 |  | 
| Chris Dalton | c8ece3d | 2018-07-30 15:03:45 -0600 | [diff] [blame] | 2054 | void GrGLGpu::flushRenderTarget(GrGLRenderTarget* target) { | 
|  | 2055 | this->flushRenderTargetNoColorWrites(target); | 
|  | 2056 | this->didWriteToSurface(target, kTopLeft_GrSurfaceOrigin, nullptr); | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 2057 | } | 
|  | 2058 |  | 
| Brian Osman | 9aa30c6 | 2018-07-02 15:21:46 -0400 | [diff] [blame] | 2059 | void GrGLGpu::flushRenderTargetNoColorWrites(GrGLRenderTarget* target) { | 
| Brian Salomon | 1fabd51 | 2018-02-09 09:54:25 -0500 | [diff] [blame] | 2060 | SkASSERT(target); | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 2061 | GrGpuResource::UniqueID rtID = target->uniqueID(); | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 2062 | if (fHWBoundRenderTargetUniqueID != rtID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2063 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, target->renderFBOID()); | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 2064 | #ifdef SK_DEBUG | 
|  | 2065 | // don't do this check in Chromium -- this is causing | 
|  | 2066 | // lots of repeated command buffer flushes when the compositor is | 
|  | 2067 | // rendering with Ganesh, which is really slow; even too slow for | 
|  | 2068 | // Debug mode. | 
| cdalton | 1acea86 | 2015-06-02 13:05:52 -0700 | [diff] [blame] | 2069 | if (kChromium_GrGLDriver != this->glContext().driver()) { | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 2070 | GrGLenum status; | 
|  | 2071 | GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER)); | 
|  | 2072 | if (status != GR_GL_FRAMEBUFFER_COMPLETE) { | 
|  | 2073 | SkDebugf("GrGLGpu::flushRenderTarget glCheckFramebufferStatus %x\n", status); | 
|  | 2074 | } | 
| bsalomon | 160f24c | 2015-03-17 15:55:42 -0700 | [diff] [blame] | 2075 | } | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 2076 | #endif | 
|  | 2077 | fHWBoundRenderTargetUniqueID = rtID; | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 2078 | this->flushViewport(target->width(), target->height()); | 
| brianosman | 64d094d | 2016-03-25 06:01:59 -0700 | [diff] [blame] | 2079 | } | 
|  | 2080 |  | 
| brianosman | 35b784d | 2016-05-05 11:52:53 -0700 | [diff] [blame] | 2081 | if (this->glCaps().srgbWriteControl()) { | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2082 | this->flushFramebufferSRGB(this->caps()->isFormatSRGB(target->backendFormat())); | 
| bsalomon | 5cd020f | 2015-03-17 12:46:56 -0700 | [diff] [blame] | 2083 | } | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 2084 | } | 
| bsalomon | a990912 | 2016-01-23 10:41:40 -0800 | [diff] [blame] | 2085 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 2086 | void GrGLGpu::flushFramebufferSRGB(bool enable) { | 
|  | 2087 | if (enable && kYes_TriState != fHWSRGBFramebuffer) { | 
|  | 2088 | GL_CALL(Enable(GR_GL_FRAMEBUFFER_SRGB)); | 
|  | 2089 | fHWSRGBFramebuffer = kYes_TriState; | 
|  | 2090 | } else if (!enable && kNo_TriState != fHWSRGBFramebuffer) { | 
|  | 2091 | GL_CALL(Disable(GR_GL_FRAMEBUFFER_SRGB)); | 
|  | 2092 | fHWSRGBFramebuffer = kNo_TriState; | 
|  | 2093 | } | 
|  | 2094 | } | 
|  | 2095 |  | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 2096 | void GrGLGpu::flushViewport(int width, int height) { | 
| Chris Dalton | d6cda8d | 2019-09-05 02:30:04 -0600 | [diff] [blame] | 2097 | GrNativeRect viewport = {0, 0, width, height}; | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 2098 | if (fHWViewport != viewport) { | 
| Chris Dalton | 76500e5 | 2019-09-05 02:13:05 -0600 | [diff] [blame] | 2099 | GL_CALL(Viewport(viewport.fX, viewport.fY, viewport.fWidth, viewport.fHeight)); | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 2100 | fHWViewport = viewport; | 
|  | 2101 | } | 
|  | 2102 | } | 
|  | 2103 |  | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2104 | #define SWAP_PER_DRAW 0 | 
|  | 2105 |  | 
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 2106 | #if SWAP_PER_DRAW | 
| commit-bot@chromium.org | 4382330 | 2013-09-25 20:57:51 +0000 | [diff] [blame] | 2107 | #if defined(SK_BUILD_FOR_MAC) | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2108 | #include <AGL/agl.h> | 
| Mike Klein | 8f11d4d | 2018-01-24 12:42:55 -0500 | [diff] [blame] | 2109 | #elif defined(SK_BUILD_FOR_WIN) | 
| bsalomon@google.com | ce7357d | 2012-06-25 17:49:25 +0000 | [diff] [blame] | 2110 | #include <gl/GL.h> | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2111 | void SwapBuf() { | 
|  | 2112 | DWORD procID = GetCurrentProcessId(); | 
|  | 2113 | HWND hwnd = GetTopWindow(GetDesktopWindow()); | 
|  | 2114 | while(hwnd) { | 
|  | 2115 | DWORD wndProcID = 0; | 
|  | 2116 | GetWindowThreadProcessId(hwnd, &wndProcID); | 
|  | 2117 | if(wndProcID == procID) { | 
|  | 2118 | SwapBuffers(GetDC(hwnd)); | 
|  | 2119 | } | 
|  | 2120 | hwnd = GetNextWindow(hwnd, GW_HWNDNEXT); | 
|  | 2121 | } | 
|  | 2122 | } | 
|  | 2123 | #endif | 
|  | 2124 | #endif | 
|  | 2125 |  | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 2126 | void GrGLGpu::draw(GrRenderTarget* renderTarget, GrSurfaceOrigin origin, | 
|  | 2127 | const GrPrimitiveProcessor& primProc, | 
| Brian Salomon | ff168d9 | 2018-06-23 15:17:27 -0400 | [diff] [blame] | 2128 | const GrPipeline& pipeline, | 
| Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 2129 | const GrPipeline::FixedDynamicState* fixedDynamicState, | 
|  | 2130 | const GrPipeline::DynamicStateArrays* dynamicStateArrays, | 
| bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 2131 | const GrMesh meshes[], | 
| egdaniel | 9cb6340 | 2016-06-23 08:37:05 -0700 | [diff] [blame] | 2132 | int meshCount) { | 
|  | 2133 | this->handleDirtyContext(); | 
|  | 2134 |  | 
| bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 2135 | bool hasPoints = false; | 
|  | 2136 | for (int i = 0; i < meshCount; ++i) { | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2137 | if (meshes[i].primitiveType() == GrPrimitiveType::kPoints) { | 
| bsalomon | 2eda5b3 | 2016-09-21 10:53:24 -0700 | [diff] [blame] | 2138 | hasPoints = true; | 
|  | 2139 | break; | 
|  | 2140 | } | 
|  | 2141 | } | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 2142 | if (!this->flushGLState(renderTarget, origin, primProc, pipeline, fixedDynamicState, | 
|  | 2143 | dynamicStateArrays, meshCount, hasPoints)) { | 
| bsalomon | d95263c | 2014-12-16 13:05:12 -0800 | [diff] [blame] | 2144 | return; | 
|  | 2145 | } | 
| ethannicholas | 2279325 | 2016-01-30 09:59:10 -0800 | [diff] [blame] | 2146 |  | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 2147 | bool dynamicScissor = false; | 
|  | 2148 | bool dynamicPrimProcTextures = false; | 
|  | 2149 | if (dynamicStateArrays) { | 
|  | 2150 | dynamicScissor = pipeline.isScissorEnabled() && dynamicStateArrays->fScissorRects; | 
|  | 2151 | dynamicPrimProcTextures = dynamicStateArrays->fPrimitiveProcessorTextures; | 
|  | 2152 | } | 
|  | 2153 | for (int m = 0; m < meshCount; ++m) { | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 2154 | if (GrXferBarrierType barrierType = pipeline.xferBarrierType(renderTarget->asTexture(), | 
|  | 2155 | *this->caps())) { | 
|  | 2156 | this->xferBarrier(renderTarget, barrierType); | 
| egdaniel | 0e1853c | 2016-03-17 11:35:45 -0700 | [diff] [blame] | 2157 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2158 |  | 
| Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 2159 | if (dynamicScissor) { | 
| Robert Phillips | d0fe875 | 2019-01-31 14:13:59 -0500 | [diff] [blame] | 2160 | GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(renderTarget); | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 2161 | this->flushScissor(GrScissorState(dynamicStateArrays->fScissorRects[m]), | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 2162 | glRT->width(), glRT->height(), origin); | 
| Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 2163 | } | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 2164 | if (dynamicPrimProcTextures) { | 
|  | 2165 | auto texProxyArray = dynamicStateArrays->fPrimitiveProcessorTextures + | 
|  | 2166 | m * primProc.numTextureSamplers(); | 
|  | 2167 | fHWProgram->updatePrimitiveProcessorTextureBindings(primProc, texProxyArray); | 
|  | 2168 | } | 
| Brian Salomon | 6d9c88b | 2017-06-12 10:24:42 -0400 | [diff] [blame] | 2169 | if (this->glCaps().requiresCullFaceEnableDisableWhenDrawingLinesAfterNonLines() && | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 2170 | GrIsPrimTypeLines(meshes[m].primitiveType()) && | 
| Brian Salomon | 6d9c88b | 2017-06-12 10:24:42 -0400 | [diff] [blame] | 2171 | !GrIsPrimTypeLines(fLastPrimitiveType)) { | 
|  | 2172 | GL_CALL(Enable(GR_GL_CULL_FACE)); | 
|  | 2173 | GL_CALL(Disable(GR_GL_CULL_FACE)); | 
|  | 2174 | } | 
| Brian Salomon | f723264 | 2018-09-19 08:58:08 -0400 | [diff] [blame] | 2175 | meshes[m].sendToGpu(this); | 
|  | 2176 | fLastPrimitiveType = meshes[m].primitiveType(); | 
| bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 2177 | } | 
| ethannicholas | 2279325 | 2016-01-30 09:59:10 -0800 | [diff] [blame] | 2178 |  | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2179 | #if SWAP_PER_DRAW | 
|  | 2180 | glFlush(); | 
| commit-bot@chromium.org | 4382330 | 2013-09-25 20:57:51 +0000 | [diff] [blame] | 2181 | #if defined(SK_BUILD_FOR_MAC) | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2182 | aglSwapBuffers(aglGetCurrentContext()); | 
|  | 2183 | int set_a_break_pt_here = 9; | 
|  | 2184 | aglSwapBuffers(aglGetCurrentContext()); | 
| Mike Klein | 8f11d4d | 2018-01-24 12:42:55 -0500 | [diff] [blame] | 2185 | #elif defined(SK_BUILD_FOR_WIN) | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2186 | SwapBuf(); | 
|  | 2187 | int set_a_break_pt_here = 9; | 
|  | 2188 | SwapBuf(); | 
|  | 2189 | #endif | 
|  | 2190 | #endif | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2191 | } | 
|  | 2192 |  | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2193 | static GrGLenum gr_primitive_type_to_gl_mode(GrPrimitiveType primitiveType) { | 
|  | 2194 | switch (primitiveType) { | 
|  | 2195 | case GrPrimitiveType::kTriangles: | 
|  | 2196 | return GR_GL_TRIANGLES; | 
|  | 2197 | case GrPrimitiveType::kTriangleStrip: | 
|  | 2198 | return GR_GL_TRIANGLE_STRIP; | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2199 | case GrPrimitiveType::kPoints: | 
|  | 2200 | return GR_GL_POINTS; | 
|  | 2201 | case GrPrimitiveType::kLines: | 
|  | 2202 | return GR_GL_LINES; | 
|  | 2203 | case GrPrimitiveType::kLineStrip: | 
|  | 2204 | return GR_GL_LINE_STRIP; | 
|  | 2205 | case GrPrimitiveType::kLinesAdjacency: | 
|  | 2206 | return GR_GL_LINES_ADJACENCY; | 
|  | 2207 | } | 
| Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 2208 | SK_ABORT("invalid GrPrimitiveType"); | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2209 | } | 
|  | 2210 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2211 | void GrGLGpu::sendMeshToGpu(GrPrimitiveType primitiveType, const GrBuffer* vertexBuffer, | 
|  | 2212 | int vertexCount, int baseVertex) { | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2213 | const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2214 | if (this->glCaps().drawArraysBaseVertexIsBroken()) { | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2215 | this->setupGeometry(nullptr, vertexBuffer, baseVertex, nullptr, 0, GrPrimitiveRestart::kNo); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2216 | GL_CALL(DrawArrays(glPrimType, 0, vertexCount)); | 
|  | 2217 | } else { | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2218 | this->setupGeometry(nullptr, vertexBuffer, 0, nullptr, 0, GrPrimitiveRestart::kNo); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2219 | GL_CALL(DrawArrays(glPrimType, baseVertex, vertexCount)); | 
|  | 2220 | } | 
|  | 2221 | fStats.incNumDraws(); | 
|  | 2222 | } | 
|  | 2223 |  | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 2224 | static const GrGLvoid* element_ptr(const GrBuffer* indexBuffer, int baseIndex) { | 
|  | 2225 | size_t baseOffset = baseIndex * sizeof(uint16_t); | 
|  | 2226 | if (indexBuffer->isCpuBuffer()) { | 
|  | 2227 | return static_cast<const GrCpuBuffer*>(indexBuffer)->data() + baseOffset; | 
|  | 2228 | } else { | 
|  | 2229 | return reinterpret_cast<const GrGLvoid*>(baseOffset); | 
|  | 2230 | } | 
|  | 2231 | } | 
|  | 2232 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2233 | void GrGLGpu::sendIndexedMeshToGpu(GrPrimitiveType primitiveType, const GrBuffer* indexBuffer, | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2234 | int indexCount, int baseIndex, uint16_t minIndexValue, | 
|  | 2235 | uint16_t maxIndexValue, const GrBuffer* vertexBuffer, | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2236 | int baseVertex, GrPrimitiveRestart enablePrimitiveRestart) { | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2237 | const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 2238 | const GrGLvoid* elementPtr = element_ptr(indexBuffer, baseIndex); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2239 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2240 | this->setupGeometry(indexBuffer, vertexBuffer, baseVertex, nullptr, 0, enablePrimitiveRestart); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2241 |  | 
|  | 2242 | if (this->glCaps().drawRangeElementsSupport()) { | 
|  | 2243 | GL_CALL(DrawRangeElements(glPrimType, minIndexValue, maxIndexValue, indexCount, | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 2244 | GR_GL_UNSIGNED_SHORT, elementPtr)); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2245 | } else { | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 2246 | GL_CALL(DrawElements(glPrimType, indexCount, GR_GL_UNSIGNED_SHORT, elementPtr)); | 
| Chris Dalton | 114a3c0 | 2017-05-26 15:17:19 -0600 | [diff] [blame] | 2247 | } | 
|  | 2248 | fStats.incNumDraws(); | 
|  | 2249 | } | 
|  | 2250 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2251 | void GrGLGpu::sendInstancedMeshToGpu(GrPrimitiveType primitiveType, const GrBuffer* vertexBuffer, | 
| Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 2252 | int vertexCount, int baseVertex, | 
|  | 2253 | const GrBuffer* instanceBuffer, int instanceCount, | 
|  | 2254 | int baseInstance) { | 
| Chris Dalton | cc604e5 | 2017-10-06 16:27:32 -0600 | [diff] [blame] | 2255 | GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); | 
| Chris Dalton | 1b4ad76 | 2018-10-04 11:58:09 -0600 | [diff] [blame] | 2256 | int maxInstances = this->glCaps().maxInstancesPerDrawWithoutCrashing(instanceCount); | 
| Chris Dalton | cc604e5 | 2017-10-06 16:27:32 -0600 | [diff] [blame] | 2257 | for (int i = 0; i < instanceCount; i += maxInstances) { | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2258 | this->setupGeometry(nullptr, vertexBuffer, 0, instanceBuffer, baseInstance + i, | 
|  | 2259 | GrPrimitiveRestart::kNo); | 
| Chris Dalton | cc604e5 | 2017-10-06 16:27:32 -0600 | [diff] [blame] | 2260 | GL_CALL(DrawArraysInstanced(glPrimType, baseVertex, vertexCount, | 
|  | 2261 | SkTMin(instanceCount - i, maxInstances))); | 
|  | 2262 | fStats.incNumDraws(); | 
|  | 2263 | } | 
| Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 2264 | } | 
|  | 2265 |  | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2266 | void GrGLGpu::sendIndexedInstancedMeshToGpu(GrPrimitiveType primitiveType, | 
| Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 2267 | const GrBuffer* indexBuffer, int indexCount, | 
|  | 2268 | int baseIndex, const GrBuffer* vertexBuffer, | 
|  | 2269 | int baseVertex, const GrBuffer* instanceBuffer, | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 2270 | int instanceCount, int baseInstance, | 
|  | 2271 | GrPrimitiveRestart enablePrimitiveRestart) { | 
| Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 2272 | const GrGLenum glPrimType = gr_primitive_type_to_gl_mode(primitiveType); | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 2273 | const GrGLvoid* elementPtr = element_ptr(indexBuffer, baseIndex); | 
| Chris Dalton | 1b4ad76 | 2018-10-04 11:58:09 -0600 | [diff] [blame] | 2274 | int maxInstances = this->glCaps().maxInstancesPerDrawWithoutCrashing(instanceCount); | 
|  | 2275 | for (int i = 0; i < instanceCount; i += maxInstances) { | 
|  | 2276 | this->setupGeometry(indexBuffer, vertexBuffer, baseVertex, instanceBuffer, baseInstance + i, | 
|  | 2277 | enablePrimitiveRestart); | 
| Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 2278 | GL_CALL(DrawElementsInstanced(glPrimType, indexCount, GR_GL_UNSIGNED_SHORT, elementPtr, | 
| Chris Dalton | 1b4ad76 | 2018-10-04 11:58:09 -0600 | [diff] [blame] | 2279 | SkTMin(instanceCount - i, maxInstances))); | 
|  | 2280 | fStats.incNumDraws(); | 
|  | 2281 | } | 
| Chris Dalton | 1d61635 | 2017-05-31 12:51:23 -0600 | [diff] [blame] | 2282 | } | 
|  | 2283 |  | 
| Chris Dalton | 16a33c6 | 2019-09-24 22:19:17 -0600 | [diff] [blame] | 2284 | void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect, | 
|  | 2285 | GrSurfaceOrigin resolveOrigin, ForExternalIO) { | 
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 2286 | GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target); | 
| Chris Dalton | 798a31d | 2019-09-26 19:28:32 +0000 | [diff] [blame] | 2287 | if (rt->needsResolve()) { | 
|  | 2288 | // Some extensions automatically resolves the texture when it is read. | 
|  | 2289 | if (this->glCaps().usesMSAARenderBuffers()) { | 
|  | 2290 | SkASSERT(rt->textureFBOID() != rt->renderFBOID()); | 
|  | 2291 | SkASSERT(rt->textureFBOID() != 0 && rt->renderFBOID() != 0); | 
|  | 2292 | this->bindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()); | 
|  | 2293 | this->bindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()); | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2294 |  | 
| Chris Dalton | 798a31d | 2019-09-26 19:28:32 +0000 | [diff] [blame] | 2295 | // make sure we go through flushRenderTarget() since we've modified | 
|  | 2296 | // the bound DRAW FBO ID. | 
|  | 2297 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
|  | 2298 | if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) { | 
|  | 2299 | // Apple's extension uses the scissor as the blit bounds. | 
|  | 2300 | GrScissorState scissorState; | 
|  | 2301 | scissorState.set(resolveRect); | 
|  | 2302 | this->flushScissor(scissorState, rt->width(), rt->height(), resolveOrigin); | 
|  | 2303 | this->disableWindowRectangles(); | 
|  | 2304 | GL_CALL(ResolveMultisampleFramebuffer()); | 
|  | 2305 | } else { | 
|  | 2306 | int l, b, r, t; | 
|  | 2307 | if (GrGLCaps::kResolveMustBeFull_BlitFrambufferFlag & | 
|  | 2308 | this->glCaps().blitFramebufferSupportFlags()) { | 
|  | 2309 | l = 0; | 
|  | 2310 | b = 0; | 
|  | 2311 | r = target->width(); | 
|  | 2312 | t = target->height(); | 
|  | 2313 | } else { | 
|  | 2314 | auto rect = GrNativeRect::MakeRelativeTo( | 
|  | 2315 | resolveOrigin, rt->height(), resolveRect); | 
|  | 2316 | l = rect.fX; | 
|  | 2317 | b = rect.fY; | 
|  | 2318 | r = rect.fX + rect.fWidth; | 
|  | 2319 | t = rect.fY + rect.fHeight; | 
|  | 2320 | } | 
|  | 2321 |  | 
|  | 2322 | // BlitFrameBuffer respects the scissor, so disable it. | 
|  | 2323 | this->disableScissor(); | 
|  | 2324 | this->disableWindowRectangles(); | 
|  | 2325 | GL_CALL(BlitFramebuffer(l, b, r, t, l, b, r, t, | 
|  | 2326 | GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST)); | 
|  | 2327 | } | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2328 | } | 
| Chris Dalton | 798a31d | 2019-09-26 19:28:32 +0000 | [diff] [blame] | 2329 | rt->flagAsResolved(); | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2330 | } | 
|  | 2331 | } | 
|  | 2332 |  | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2333 | namespace { | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2334 |  | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2335 |  | 
|  | 2336 | GrGLenum gr_to_gl_stencil_op(GrStencilOp op) { | 
| cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 2337 | static const GrGLenum gTable[kGrStencilOpCount] = { | 
|  | 2338 | GR_GL_KEEP,        // kKeep | 
|  | 2339 | GR_GL_ZERO,        // kZero | 
|  | 2340 | GR_GL_REPLACE,     // kReplace | 
|  | 2341 | GR_GL_INVERT,      // kInvert | 
|  | 2342 | GR_GL_INCR_WRAP,   // kIncWrap | 
|  | 2343 | GR_GL_DECR_WRAP,   // kDecWrap | 
|  | 2344 | GR_GL_INCR,        // kIncClamp | 
|  | 2345 | GR_GL_DECR,        // kDecClamp | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2346 | }; | 
| cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 2347 | GR_STATIC_ASSERT(0 == (int)GrStencilOp::kKeep); | 
|  | 2348 | GR_STATIC_ASSERT(1 == (int)GrStencilOp::kZero); | 
|  | 2349 | GR_STATIC_ASSERT(2 == (int)GrStencilOp::kReplace); | 
|  | 2350 | GR_STATIC_ASSERT(3 == (int)GrStencilOp::kInvert); | 
|  | 2351 | GR_STATIC_ASSERT(4 == (int)GrStencilOp::kIncWrap); | 
|  | 2352 | GR_STATIC_ASSERT(5 == (int)GrStencilOp::kDecWrap); | 
|  | 2353 | GR_STATIC_ASSERT(6 == (int)GrStencilOp::kIncClamp); | 
|  | 2354 | GR_STATIC_ASSERT(7 == (int)GrStencilOp::kDecClamp); | 
|  | 2355 | SkASSERT(op < (GrStencilOp)kGrStencilOpCount); | 
|  | 2356 | return gTable[(int)op]; | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2357 | } | 
|  | 2358 |  | 
|  | 2359 | void set_gl_stencil(const GrGLInterface* gl, | 
| cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 2360 | const GrStencilSettings::Face& face, | 
|  | 2361 | GrGLenum glFace) { | 
|  | 2362 | GrGLenum glFunc = GrToGLStencilFunc(face.fTest); | 
|  | 2363 | GrGLenum glFailOp = gr_to_gl_stencil_op(face.fFailOp); | 
|  | 2364 | GrGLenum glPassOp = gr_to_gl_stencil_op(face.fPassOp); | 
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 2365 |  | 
| cdalton | 93a379b | 2016-05-11 13:58:08 -0700 | [diff] [blame] | 2366 | GrGLint ref = face.fRef; | 
|  | 2367 | GrGLint mask = face.fTestMask; | 
|  | 2368 | GrGLint writeMask = face.fWriteMask; | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2369 |  | 
|  | 2370 | if (GR_GL_FRONT_AND_BACK == glFace) { | 
|  | 2371 | // we call the combined func just in case separate stencil is not | 
|  | 2372 | // supported. | 
|  | 2373 | GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask)); | 
|  | 2374 | GR_GL_CALL(gl, StencilMask(writeMask)); | 
| vbuzinov | c5d58f0 | 2015-08-21 05:24:24 -0700 | [diff] [blame] | 2375 | GR_GL_CALL(gl, StencilOp(glFailOp, GR_GL_KEEP, glPassOp)); | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2376 | } else { | 
|  | 2377 | GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask)); | 
|  | 2378 | GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask)); | 
| vbuzinov | c5d58f0 | 2015-08-21 05:24:24 -0700 | [diff] [blame] | 2379 | GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, GR_GL_KEEP, glPassOp)); | 
| bsalomon@google.com | 411dad0 | 2012-06-05 20:24:20 +0000 | [diff] [blame] | 2380 | } | 
|  | 2381 | } | 
|  | 2382 | } | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2383 |  | 
| Chris Dalton | 71713f6 | 2019-04-18 12:41:03 -0600 | [diff] [blame] | 2384 | void GrGLGpu::flushStencil(const GrStencilSettings& stencilSettings, GrSurfaceOrigin origin) { | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2385 | if (stencilSettings.isDisabled()) { | 
|  | 2386 | this->disableStencil(); | 
| Chris Dalton | 71713f6 | 2019-04-18 12:41:03 -0600 | [diff] [blame] | 2387 | } else if (fHWStencilSettings != stencilSettings || | 
|  | 2388 | (stencilSettings.isTwoSided() && fHWStencilOrigin != origin)) { | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2389 | if (kYes_TriState != fHWStencilTestEnabled) { | 
|  | 2390 | GL_CALL(Enable(GR_GL_STENCIL_TEST)); | 
| Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 2391 |  | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2392 | fHWStencilTestEnabled = kYes_TriState; | 
| bsalomon@google.com | a320194 | 2012-06-21 19:58:20 +0000 | [diff] [blame] | 2393 | } | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2394 | if (stencilSettings.isTwoSided()) { | 
| Chris Dalton | 71713f6 | 2019-04-18 12:41:03 -0600 | [diff] [blame] | 2395 | set_gl_stencil(this->glInterface(), stencilSettings.front(origin), GR_GL_FRONT); | 
|  | 2396 | set_gl_stencil(this->glInterface(), stencilSettings.back(origin), GR_GL_BACK); | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2397 | } else { | 
| Chris Dalton | 71713f6 | 2019-04-18 12:41:03 -0600 | [diff] [blame] | 2398 | set_gl_stencil( | 
|  | 2399 | this->glInterface(), stencilSettings.frontAndBack(), GR_GL_FRONT_AND_BACK); | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2400 | } | 
| joshualitt | a58fe35 | 2014-10-27 08:39:00 -0700 | [diff] [blame] | 2401 | fHWStencilSettings = stencilSettings; | 
| Chris Dalton | 71713f6 | 2019-04-18 12:41:03 -0600 | [diff] [blame] | 2402 | fHWStencilOrigin = origin; | 
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2403 | } | 
|  | 2404 | } | 
|  | 2405 |  | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2406 | void GrGLGpu::disableStencil() { | 
|  | 2407 | if (kNo_TriState != fHWStencilTestEnabled) { | 
|  | 2408 | GL_CALL(Disable(GR_GL_STENCIL_TEST)); | 
| Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 2409 |  | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 2410 | fHWStencilTestEnabled = kNo_TriState; | 
|  | 2411 | fHWStencilSettings.invalidate(); | 
|  | 2412 | } | 
|  | 2413 | } | 
|  | 2414 |  | 
| Chris Dalton | 4c56b03 | 2019-03-04 12:28:42 -0700 | [diff] [blame] | 2415 | void GrGLGpu::flushHWAAState(GrRenderTarget* rt, bool useHWAA) { | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 2416 | // rt is only optional if useHWAA is false. | 
|  | 2417 | SkASSERT(rt || !useHWAA); | 
| Chris Dalton | effee20 | 2019-07-01 22:28:03 -0600 | [diff] [blame] | 2418 | #ifdef SK_DEBUG | 
|  | 2419 | if (useHWAA && rt->numSamples() <= 1) { | 
|  | 2420 | SkASSERT(this->caps()->mixedSamplesSupport()); | 
|  | 2421 | SkASSERT(0 != static_cast<GrGLRenderTarget*>(rt)->renderFBOID()); | 
|  | 2422 | SkASSERT(rt->renderTargetPriv().getStencilAttachment()); | 
|  | 2423 | } | 
|  | 2424 | #endif | 
| bsalomon@google.com | 202d139 | 2013-03-19 18:58:08 +0000 | [diff] [blame] | 2425 |  | 
| csmartdalton | 2b5f2cb | 2016-06-10 14:06:32 -0700 | [diff] [blame] | 2426 | if (this->caps()->multisampleDisableSupport()) { | 
| cdalton | d0a840d | 2015-03-16 17:19:58 -0700 | [diff] [blame] | 2427 | if (useHWAA) { | 
|  | 2428 | if (kYes_TriState != fMSAAEnabled) { | 
|  | 2429 | GL_CALL(Enable(GR_GL_MULTISAMPLE)); | 
|  | 2430 | fMSAAEnabled = kYes_TriState; | 
|  | 2431 | } | 
|  | 2432 | } else { | 
|  | 2433 | if (kNo_TriState != fMSAAEnabled) { | 
|  | 2434 | GL_CALL(Disable(GR_GL_MULTISAMPLE)); | 
|  | 2435 | fMSAAEnabled = kNo_TriState; | 
| bsalomon@google.com | f954d8d | 2011-04-06 17:50:02 +0000 | [diff] [blame] | 2436 | } | 
|  | 2437 | } | 
|  | 2438 | } | 
|  | 2439 | } | 
|  | 2440 |  | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2441 | void GrGLGpu::flushBlendAndColorWrite( | 
|  | 2442 | const GrXferProcessor::BlendInfo& blendInfo, const GrSwizzle& swizzle) { | 
|  | 2443 | if (this->glCaps().neverDisableColorWrites() && !blendInfo.fWriteColor) { | 
|  | 2444 | // We need to work around a driver bug by using a blend state that preserves the dst color, | 
|  | 2445 | // rather than disabling color writes. | 
|  | 2446 | GrXferProcessor::BlendInfo preserveDstBlend; | 
|  | 2447 | preserveDstBlend.fSrcBlend = kZero_GrBlendCoeff; | 
|  | 2448 | preserveDstBlend.fDstBlend = kOne_GrBlendCoeff; | 
|  | 2449 | this->flushBlendAndColorWrite(preserveDstBlend, swizzle); | 
|  | 2450 | return; | 
|  | 2451 | } | 
| bsalomon | f7cc877 | 2015-05-11 11:21:14 -0700 | [diff] [blame] | 2452 |  | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 2453 | GrBlendEquation equation = blendInfo.fEquation; | 
| egdaniel | c230414 | 2014-12-11 13:15:13 -0800 | [diff] [blame] | 2454 | GrBlendCoeff srcCoeff = blendInfo.fSrcBlend; | 
|  | 2455 | GrBlendCoeff dstCoeff = blendInfo.fDstBlend; | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2456 |  | 
|  | 2457 | // Any optimization to disable blending should have already been applied and | 
|  | 2458 | // tweaked the equation to "add" or "subtract", and the coeffs to (1, 0). | 
| Dongseong Hwang | 4e1f022 | 2018-11-01 09:10:51 -0700 | [diff] [blame] | 2459 | bool blendOff = | 
|  | 2460 | ((kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) && | 
|  | 2461 | kOne_GrBlendCoeff == srcCoeff && kZero_GrBlendCoeff == dstCoeff) || | 
|  | 2462 | !blendInfo.fWriteColor; | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2463 |  | 
| egdaniel | b414f25 | 2014-07-29 13:15:47 -0700 | [diff] [blame] | 2464 | if (blendOff) { | 
|  | 2465 | if (kNo_TriState != fHWBlendState.fEnabled) { | 
|  | 2466 | GL_CALL(Disable(GR_GL_BLEND)); | 
| joel.liang | 9764c40 | 2015-07-09 19:46:18 -0700 | [diff] [blame] | 2467 |  | 
|  | 2468 | // Workaround for the ARM KHR_blend_equation_advanced blacklist issue | 
|  | 2469 | // https://code.google.com/p/skia/issues/detail?id=3943 | 
|  | 2470 | if (kARM_GrGLVendor == this->ctxInfo().vendor() && | 
|  | 2471 | GrBlendEquationIsAdvanced(fHWBlendState.fEquation)) { | 
|  | 2472 | SkASSERT(this->caps()->advancedBlendEquationSupport()); | 
|  | 2473 | // Set to any basic blending equation. | 
|  | 2474 | GrBlendEquation blend_equation = kAdd_GrBlendEquation; | 
|  | 2475 | GL_CALL(BlendEquation(gXfermodeEquation2Blend[blend_equation])); | 
|  | 2476 | fHWBlendState.fEquation = blend_equation; | 
|  | 2477 | } | 
|  | 2478 |  | 
| egdaniel | b414f25 | 2014-07-29 13:15:47 -0700 | [diff] [blame] | 2479 | fHWBlendState.fEnabled = kNo_TriState; | 
|  | 2480 | } | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2481 | } else { | 
|  | 2482 | if (kYes_TriState != fHWBlendState.fEnabled) { | 
|  | 2483 | GL_CALL(Enable(GR_GL_BLEND)); | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 2484 |  | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2485 | fHWBlendState.fEnabled = kYes_TriState; | 
|  | 2486 | } | 
| Brian Salomon | af971de | 2017-06-08 16:11:33 -0400 | [diff] [blame] | 2487 |  | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2488 | if (fHWBlendState.fEquation != equation) { | 
|  | 2489 | GL_CALL(BlendEquation(gXfermodeEquation2Blend[equation])); | 
|  | 2490 | fHWBlendState.fEquation = equation; | 
|  | 2491 | } | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 2492 |  | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2493 | if (GrBlendEquationIsAdvanced(equation)) { | 
|  | 2494 | SkASSERT(this->caps()->advancedBlendEquationSupport()); | 
|  | 2495 | // Advanced equations have no other blend state. | 
|  | 2496 | return; | 
|  | 2497 | } | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 2498 |  | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2499 | if (fHWBlendState.fSrcCoeff != srcCoeff || fHWBlendState.fDstCoeff != dstCoeff) { | 
|  | 2500 | GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff], | 
|  | 2501 | gXfermodeCoeff2Blend[dstCoeff])); | 
|  | 2502 | fHWBlendState.fSrcCoeff = srcCoeff; | 
|  | 2503 | fHWBlendState.fDstCoeff = dstCoeff; | 
|  | 2504 | } | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 2505 |  | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2506 | if ((BlendCoeffReferencesConstant(srcCoeff) || BlendCoeffReferencesConstant(dstCoeff))) { | 
|  | 2507 | SkPMColor4f blendConst = swizzle.applyTo(blendInfo.fBlendConstant); | 
|  | 2508 | if (!fHWBlendState.fConstColorValid || fHWBlendState.fConstColor != blendConst) { | 
|  | 2509 | GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); | 
|  | 2510 | fHWBlendState.fConstColor = blendConst; | 
|  | 2511 | fHWBlendState.fConstColorValid = true; | 
|  | 2512 | } | 
| bsalomon | 7f9b2e4 | 2016-01-12 13:29:26 -0800 | [diff] [blame] | 2513 | } | 
| bsalomon@google.com | 0650e81 | 2011-04-08 18:07:53 +0000 | [diff] [blame] | 2514 | } | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 2515 |  | 
|  | 2516 | this->flushColorWrite(blendInfo.fWriteColor); | 
| bsalomon@google.com | 0650e81 | 2011-04-08 18:07:53 +0000 | [diff] [blame] | 2517 | } | 
| bsalomon@google.com | 0a97be2 | 2011-11-08 19:20:57 +0000 | [diff] [blame] | 2518 |  | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2519 | static void get_gl_swizzle_values(const GrSwizzle& swizzle, GrGLenum glValues[4]) { | 
| Brian Salomon | 327955b | 2018-10-22 15:39:22 +0000 | [diff] [blame] | 2520 | for (int i = 0; i < 4; ++i) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2521 | switch (swizzle[i]) { | 
|  | 2522 | case 'r': glValues[i] = GR_GL_RED;   break; | 
|  | 2523 | case 'g': glValues[i] = GR_GL_GREEN; break; | 
|  | 2524 | case 'b': glValues[i] = GR_GL_BLUE;  break; | 
|  | 2525 | case 'a': glValues[i] = GR_GL_ALPHA; break; | 
| Brian Salomon | f30b1c1 | 2019-06-20 12:25:02 -0400 | [diff] [blame] | 2526 | case '0': glValues[i] = GR_GL_ZERO;  break; | 
| Greg Daniel | 216a9d7 | 2019-02-20 10:12:29 -0500 | [diff] [blame] | 2527 | case '1': glValues[i] = GR_GL_ONE;   break; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2528 | default:  SK_ABORT("Unsupported component"); | 
|  | 2529 | } | 
| Brian Salomon | 327955b | 2018-10-22 15:39:22 +0000 | [diff] [blame] | 2530 | } | 
|  | 2531 | } | 
|  | 2532 |  | 
| Greg Daniel | 2c3398d | 2019-06-19 11:58:01 -0400 | [diff] [blame] | 2533 | void GrGLGpu::bindTexture(int unitIdx, GrSamplerState samplerState, const GrSwizzle& swizzle, | 
|  | 2534 | GrGLTexture* texture) { | 
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 2535 | SkASSERT(texture); | 
| Chris Dalton | 798a31d | 2019-09-26 19:28:32 +0000 | [diff] [blame] | 2536 | SkASSERT(!texture->asRenderTarget() || !texture->asRenderTarget()->needsResolve()); | 
| tomhudson@google.com | d0c1a06 | 2012-07-12 17:23:52 +0000 | [diff] [blame] | 2537 |  | 
| reed | 856e9d9 | 2015-09-30 12:21:45 -0700 | [diff] [blame] | 2538 | #ifdef SK_DEBUG | 
|  | 2539 | if (!this->caps()->npotTextureTileSupport()) { | 
| Brian Salomon | 2bbdcc4 | 2017-09-07 12:36:34 -0400 | [diff] [blame] | 2540 | if (samplerState.isRepeated()) { | 
| reed | 856e9d9 | 2015-09-30 12:21:45 -0700 | [diff] [blame] | 2541 | const int w = texture->width(); | 
|  | 2542 | const int h = texture->height(); | 
|  | 2543 | SkASSERT(SkIsPow2(w) && SkIsPow2(h)); | 
|  | 2544 | } | 
|  | 2545 | } | 
|  | 2546 | #endif | 
|  | 2547 |  | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 2548 | GrGpuResource::UniqueID textureID = texture->uniqueID(); | 
| bsalomon | 10528f1 | 2015-10-14 12:54:52 -0700 | [diff] [blame] | 2549 | GrGLenum target = texture->target(); | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2550 | if (fHWTextureUnitBindings[unitIdx].boundID(target) != textureID) { | 
| bsalomon@google.com | 34cccde | 2013-01-04 18:34:30 +0000 | [diff] [blame] | 2551 | this->setTextureUnit(unitIdx); | 
| bsalomon | 10528f1 | 2015-10-14 12:54:52 -0700 | [diff] [blame] | 2552 | GL_CALL(BindTexture(target, texture->textureID())); | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2553 | fHWTextureUnitBindings[unitIdx].setBoundID(target, textureID); | 
| bsalomon@google.com | 4c88378 | 2012-06-04 19:05:11 +0000 | [diff] [blame] | 2554 | } | 
|  | 2555 |  | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2556 | if (samplerState.filter() == GrSamplerState::Filter::kMipMap) { | 
| Greg Daniel | 8f5bbda | 2018-06-08 17:22:23 -0400 | [diff] [blame] | 2557 | if (!this->caps()->mipMapSupport() || | 
|  | 2558 | texture->texturePriv().mipMapped() == GrMipMapped::kNo) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2559 | samplerState.setFilterMode(GrSamplerState::Filter::kBilerp); | 
| bsalomon | efd7d45 | 2014-10-23 14:17:46 -0700 | [diff] [blame] | 2560 | } | 
| commit-bot@chromium.org | 4744231 | 2013-12-19 16:18:01 +0000 | [diff] [blame] | 2561 | } | 
| bsalomon | efd7d45 | 2014-10-23 14:17:46 -0700 | [diff] [blame] | 2562 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 2563 | #ifdef SK_DEBUG | 
| Brian Osman | 2b23c4b | 2018-06-01 12:25:08 -0400 | [diff] [blame] | 2564 | // We were supposed to ensure MipMaps were up-to-date before getting here. | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2565 | if (samplerState.filter() == GrSamplerState::Filter::kMipMap) { | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 2566 | SkASSERT(!texture->texturePriv().mipMapsAreDirty()); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 2567 | } | 
|  | 2568 | #endif | 
|  | 2569 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2570 | auto timestamp = texture->parameters()->resetTimestamp(); | 
|  | 2571 | bool setAll = timestamp < fResetTimestampForTextureParameters; | 
| cblume | 55f2d2d | 2016-02-26 13:20:48 -0800 | [diff] [blame] | 2572 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2573 | const GrGLTextureParameters::SamplerOverriddenState* samplerStateToRecord = nullptr; | 
|  | 2574 | GrGLTextureParameters::SamplerOverriddenState newSamplerState; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2575 | if (fSamplerObjectCache) { | 
|  | 2576 | fSamplerObjectCache->bindSampler(unitIdx, samplerState); | 
|  | 2577 | } else { | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2578 | const GrGLTextureParameters::SamplerOverriddenState& oldSamplerState = | 
|  | 2579 | texture->parameters()->samplerOverriddenState(); | 
|  | 2580 | samplerStateToRecord = &newSamplerState; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2581 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2582 | newSamplerState.fMinFilter = filter_to_gl_min_filter(samplerState.filter()); | 
|  | 2583 | newSamplerState.fMagFilter = filter_to_gl_mag_filter(samplerState.filter()); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2584 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2585 | newSamplerState.fWrapS = wrap_mode_to_gl_wrap(samplerState.wrapModeX(), this->glCaps()); | 
|  | 2586 | newSamplerState.fWrapT = wrap_mode_to_gl_wrap(samplerState.wrapModeY(), this->glCaps()); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2587 |  | 
|  | 2588 | // These are the OpenGL default values. | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2589 | newSamplerState.fMinLOD = -1000.f; | 
|  | 2590 | newSamplerState.fMaxLOD = 1000.f; | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2591 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2592 | if (setAll || newSamplerState.fMagFilter != oldSamplerState.fMagFilter) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2593 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2594 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MAG_FILTER, newSamplerState.fMagFilter)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2595 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2596 | if (setAll || newSamplerState.fMinFilter != oldSamplerState.fMinFilter) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2597 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2598 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MIN_FILTER, newSamplerState.fMinFilter)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2599 | } | 
| Mike Klein | 1bccae5 | 2018-10-19 11:38:44 +0000 | [diff] [blame] | 2600 | if (this->glCaps().mipMapLevelAndLodControlSupport()) { | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2601 | if (setAll || newSamplerState.fMinLOD != oldSamplerState.fMinLOD) { | 
| Mike Klein | 1bccae5 | 2018-10-19 11:38:44 +0000 | [diff] [blame] | 2602 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2603 | GL_CALL(TexParameterf(target, GR_GL_TEXTURE_MIN_LOD, newSamplerState.fMinLOD)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2604 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2605 | if (setAll || newSamplerState.fMaxLOD != oldSamplerState.fMaxLOD) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2606 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2607 | GL_CALL(TexParameterf(target, GR_GL_TEXTURE_MAX_LOD, newSamplerState.fMaxLOD)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2608 | } | 
|  | 2609 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2610 | if (setAll || newSamplerState.fWrapS != oldSamplerState.fWrapS) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2611 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2612 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_WRAP_S, newSamplerState.fWrapS)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2613 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2614 | if (setAll || newSamplerState.fWrapT != oldSamplerState.fWrapT) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2615 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2616 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_WRAP_T, newSamplerState.fWrapT)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2617 | } | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 2618 | if (this->glCaps().clampToBorderSupport()) { | 
|  | 2619 | // Make sure the border color is transparent black (the default) | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2620 | if (setAll || oldSamplerState.fBorderColorInvalid) { | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 2621 | this->setTextureUnit(unitIdx); | 
| Brian Salomon | 89f2ff1 | 2018-12-07 19:30:25 -0500 | [diff] [blame] | 2622 | static const GrGLfloat kTransparentBlack[4] = {0.f, 0.f, 0.f, 0.f}; | 
|  | 2623 | GL_CALL(TexParameterfv(target, GR_GL_TEXTURE_BORDER_COLOR, kTransparentBlack)); | 
| Michael Ludwig | f23a152 | 2018-12-10 11:36:13 -0500 | [diff] [blame] | 2624 | } | 
|  | 2625 | } | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2626 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2627 | GrGLTextureParameters::NonsamplerState newNonsamplerState; | 
|  | 2628 | newNonsamplerState.fBaseMipMapLevel = 0; | 
|  | 2629 | newNonsamplerState.fMaxMipMapLevel = texture->texturePriv().maxMipMapLevel(); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2630 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2631 | const GrGLTextureParameters::NonsamplerState& oldNonsamplerState = | 
|  | 2632 | texture->parameters()->nonsamplerState(); | 
| Brian Salomon | 68ba117 | 2019-06-05 11:15:08 -0400 | [diff] [blame] | 2633 | if (!this->caps()->shaderCaps()->textureSwizzleAppliedInShader()) { | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2634 | newNonsamplerState.fSwizzleKey = swizzle.asKey(); | 
|  | 2635 | if (setAll || swizzle.asKey() != oldNonsamplerState.fSwizzleKey) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2636 | GrGLenum glValues[4]; | 
|  | 2637 | get_gl_swizzle_values(swizzle, glValues); | 
|  | 2638 | this->setTextureUnit(unitIdx); | 
| Kevin Lubick | 8aa203c | 2019-03-19 13:23:10 -0400 | [diff] [blame] | 2639 | if (GR_IS_GR_GL(this->glStandard())) { | 
|  | 2640 | GR_STATIC_ASSERT(sizeof(glValues[0]) == sizeof(GrGLint)); | 
|  | 2641 | GL_CALL(TexParameteriv(target, GR_GL_TEXTURE_SWIZZLE_RGBA, | 
|  | 2642 | reinterpret_cast<const GrGLint*>(glValues))); | 
|  | 2643 | } else if (GR_IS_GR_GL_ES(this->glStandard())) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2644 | // ES3 added swizzle support but not GL_TEXTURE_SWIZZLE_RGBA. | 
|  | 2645 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_R, glValues[0])); | 
|  | 2646 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_G, glValues[1])); | 
|  | 2647 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_B, glValues[2])); | 
|  | 2648 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_SWIZZLE_A, glValues[3])); | 
| Brian Salomon | bfb3df4 | 2018-10-19 19:24:31 +0000 | [diff] [blame] | 2649 | } | 
| Brian Salomon | bfb3df4 | 2018-10-19 19:24:31 +0000 | [diff] [blame] | 2650 | } | 
|  | 2651 | } | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2652 | // These are not supported in ES2 contexts | 
| Brian Salomon | f384193 | 2018-11-29 09:13:37 -0500 | [diff] [blame] | 2653 | if (this->glCaps().mipMapLevelAndLodControlSupport() && | 
|  | 2654 | (texture->texturePriv().textureType() != GrTextureType::kExternal || | 
|  | 2655 | !this->glCaps().dontSetBaseOrMaxLevelForExternalTextures())) { | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2656 | if (newNonsamplerState.fBaseMipMapLevel != oldNonsamplerState.fBaseMipMapLevel) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2657 | this->setTextureUnit(unitIdx); | 
|  | 2658 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_BASE_LEVEL, | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2659 | newNonsamplerState.fBaseMipMapLevel)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2660 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2661 | if (newNonsamplerState.fMaxMipMapLevel != oldNonsamplerState.fMaxMipMapLevel) { | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2662 | this->setTextureUnit(unitIdx); | 
|  | 2663 | GL_CALL(TexParameteri(target, GR_GL_TEXTURE_MAX_LEVEL, | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2664 | newNonsamplerState.fMaxMipMapLevel)); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 2665 | } | 
| Brian Salomon | 327955b | 2018-10-22 15:39:22 +0000 | [diff] [blame] | 2666 | } | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 2667 | texture->parameters()->set(samplerStateToRecord, newNonsamplerState, | 
|  | 2668 | fResetTimestampForTextureParameters); | 
| cdalton | 74b8d32 | 2016-04-11 14:47:28 -0700 | [diff] [blame] | 2669 | } | 
|  | 2670 |  | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 2671 | void GrGLGpu::onResetTextureBindings() { | 
|  | 2672 | static constexpr GrGLenum kTargets[] = {GR_GL_TEXTURE_2D, GR_GL_TEXTURE_RECTANGLE, | 
|  | 2673 | GR_GL_TEXTURE_EXTERNAL}; | 
|  | 2674 | for (int i = 0; i < this->numTextureUnits(); ++i) { | 
|  | 2675 | this->setTextureUnit(i); | 
|  | 2676 | for (auto target : kTargets) { | 
|  | 2677 | if (fHWTextureUnitBindings[i].hasBeenModified(target)) { | 
|  | 2678 | GL_CALL(BindTexture(target, 0)); | 
|  | 2679 | } | 
|  | 2680 | } | 
|  | 2681 | fHWTextureUnitBindings[i].invalidateAllTargets(true); | 
|  | 2682 | } | 
|  | 2683 | } | 
|  | 2684 |  | 
| egdaniel | 080e673 | 2014-12-22 07:35:52 -0800 | [diff] [blame] | 2685 | void GrGLGpu::flushColorWrite(bool writeColor) { | 
|  | 2686 | if (!writeColor) { | 
| bsalomon@google.com | 978c8c6 | 2012-05-21 14:45:49 +0000 | [diff] [blame] | 2687 | if (kNo_TriState != fHWWriteToColor) { | 
| Brian Osman | a9aaef0 | 2019-05-06 20:07:20 +0000 | [diff] [blame] | 2688 | GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE, | 
|  | 2689 | GR_GL_FALSE, GR_GL_FALSE)); | 
| bsalomon@google.com | 978c8c6 | 2012-05-21 14:45:49 +0000 | [diff] [blame] | 2690 | fHWWriteToColor = kNo_TriState; | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2691 | } | 
| bsalomon@google.com | 978c8c6 | 2012-05-21 14:45:49 +0000 | [diff] [blame] | 2692 | } else { | 
|  | 2693 | if (kYes_TriState != fHWWriteToColor) { | 
| Brian Osman | a9aaef0 | 2019-05-06 20:07:20 +0000 | [diff] [blame] | 2694 | GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE)); | 
| bsalomon@google.com | 978c8c6 | 2012-05-21 14:45:49 +0000 | [diff] [blame] | 2695 | fHWWriteToColor = kYes_TriState; | 
|  | 2696 | } | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2697 | } | 
| bsalomon | 3e79124 | 2014-12-17 13:43:13 -0800 | [diff] [blame] | 2698 | } | 
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 2699 |  | 
| Michael Ludwig | 6e17f1d | 2019-05-15 14:00:20 +0000 | [diff] [blame] | 2700 | void GrGLGpu::flushClearColor(GrGLfloat r, GrGLfloat g, GrGLfloat b, GrGLfloat a) { | 
| Brian Salomon | 805cc7a | 2019-01-28 09:52:34 -0500 | [diff] [blame] | 2701 | if (r != fHWClearColor[0] || g != fHWClearColor[1] || | 
|  | 2702 | b != fHWClearColor[2] || a != fHWClearColor[3]) { | 
|  | 2703 | GL_CALL(ClearColor(r, g, b, a)); | 
|  | 2704 | fHWClearColor[0] = r; | 
|  | 2705 | fHWClearColor[1] = g; | 
|  | 2706 | fHWClearColor[2] = b; | 
|  | 2707 | fHWClearColor[3] = a; | 
|  | 2708 | } | 
|  | 2709 | } | 
|  | 2710 |  | 
| bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 2711 | void GrGLGpu::setTextureUnit(int unit) { | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2712 | SkASSERT(unit >= 0 && unit < this->numTextureUnits()); | 
| commit-bot@chromium.org | a15f7e5 | 2013-06-05 23:29:25 +0000 | [diff] [blame] | 2713 | if (unit != fHWActiveTextureUnitIdx) { | 
| bsalomon@google.com | 0b77d68 | 2011-08-19 13:28:54 +0000 | [diff] [blame] | 2714 | GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit)); | 
| bsalomon@google.com | 4920939 | 2012-06-05 15:13:46 +0000 | [diff] [blame] | 2715 | fHWActiveTextureUnitIdx = unit; | 
| bsalomon@google.com | 8531c1c | 2011-01-13 19:52:45 +0000 | [diff] [blame] | 2716 | } | 
|  | 2717 | } | 
| bsalomon@google.com | 316f9923 | 2011-01-13 21:28:12 +0000 | [diff] [blame] | 2718 |  | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2719 | void GrGLGpu::bindTextureToScratchUnit(GrGLenum target, GrGLint textureID) { | 
| commit-bot@chromium.org | a15f7e5 | 2013-06-05 23:29:25 +0000 | [diff] [blame] | 2720 | // Bind the last texture unit since it is the least likely to be used by GrGLProgram. | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2721 | int lastUnitIdx = this->numTextureUnits() - 1; | 
| commit-bot@chromium.org | a15f7e5 | 2013-06-05 23:29:25 +0000 | [diff] [blame] | 2722 | if (lastUnitIdx != fHWActiveTextureUnitIdx) { | 
|  | 2723 | GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx)); | 
|  | 2724 | fHWActiveTextureUnitIdx = lastUnitIdx; | 
| bsalomon@google.com | 8531c1c | 2011-01-13 19:52:45 +0000 | [diff] [blame] | 2725 | } | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2726 | // Clear out the this field so that if a GrGLProgram does use this unit it will rebind the | 
|  | 2727 | // correct texture. | 
| Brian Salomon | 1f05d45 | 2019-02-08 12:33:08 -0500 | [diff] [blame] | 2728 | fHWTextureUnitBindings[lastUnitIdx].invalidateForScratchUse(target); | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 2729 | GL_CALL(BindTexture(target, textureID)); | 
| bsalomon@google.com | 8531c1c | 2011-01-13 19:52:45 +0000 | [diff] [blame] | 2730 | } | 
|  | 2731 |  | 
| Brian Salomon | e5e7eb1 | 2016-10-14 16:18:33 -0400 | [diff] [blame] | 2732 | // Determines whether glBlitFramebuffer could be used between src and dst by onCopySurface. | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2733 | static inline bool can_blit_framebuffer_for_copy_surface(const GrSurface* dst, | 
|  | 2734 | const GrSurface* src, | 
|  | 2735 | const SkIRect& srcRect, | 
|  | 2736 | const SkIPoint& dstPoint, | 
|  | 2737 | const GrGLCaps& caps) { | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2738 | int dstSampleCnt = 0; | 
|  | 2739 | int srcSampleCnt = 0; | 
|  | 2740 | if (const GrRenderTarget* rt = dst->asRenderTarget()) { | 
| Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 2741 | dstSampleCnt = rt->numSamples(); | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2742 | } | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2743 | if (const GrRenderTarget* rt = src->asRenderTarget()) { | 
| Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 2744 | srcSampleCnt = rt->numSamples(); | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2745 | } | 
|  | 2746 | SkASSERT((dstSampleCnt > 0) == SkToBool(dst->asRenderTarget())); | 
|  | 2747 | SkASSERT((srcSampleCnt > 0) == SkToBool(src->asRenderTarget())); | 
|  | 2748 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2749 | GrGLFormat dstFormat = dst->backendFormat().asGLFormat(); | 
|  | 2750 | GrGLFormat srcFormat = src->backendFormat().asGLFormat(); | 
|  | 2751 |  | 
| Brian Salomon | e5e7eb1 | 2016-10-14 16:18:33 -0400 | [diff] [blame] | 2752 | const GrGLTexture* dstTex = static_cast<const GrGLTexture*>(dst->asTexture()); | 
| Mike Klein | 1d74620 | 2018-01-25 17:32:51 -0500 | [diff] [blame] | 2753 | const GrGLTexture* srcTex = static_cast<const GrGLTexture*>(src->asTexture()); | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2754 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2755 | GrTextureType dstTexType; | 
|  | 2756 | GrTextureType* dstTexTypePtr = nullptr; | 
|  | 2757 | GrTextureType srcTexType; | 
|  | 2758 | GrTextureType* srcTexTypePtr = nullptr; | 
|  | 2759 | if (dstTex) { | 
|  | 2760 | dstTexType = dstTex->texturePriv().textureType(); | 
|  | 2761 | dstTexTypePtr = &dstTexType; | 
|  | 2762 | } | 
|  | 2763 | if (srcTex) { | 
|  | 2764 | srcTexType = srcTex->texturePriv().textureType(); | 
|  | 2765 | srcTexTypePtr = &srcTexType; | 
|  | 2766 | } | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2767 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2768 | return caps.canCopyAsBlit(dstFormat, dstSampleCnt, dstTexTypePtr, | 
|  | 2769 | srcFormat, srcSampleCnt, srcTexTypePtr, | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2770 | src->getBoundsRect(), true, srcRect, dstPoint); | 
| commit-bot@chromium.org | 63150af | 2013-04-11 22:00:22 +0000 | [diff] [blame] | 2771 | } | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2772 |  | 
| Brian Osman | a9c8a05 | 2018-01-19 10:31:56 -0500 | [diff] [blame] | 2773 | static bool rt_has_msaa_render_buffer(const GrGLRenderTarget* rt, const GrGLCaps& glCaps) { | 
|  | 2774 | // A RT has a separate MSAA renderbuffer if: | 
|  | 2775 | // 1) It's multisampled | 
|  | 2776 | // 2) We're using an extension with separate MSAA renderbuffers | 
|  | 2777 | // 3) It's not FBO 0, which is special and always auto-resolves | 
| Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 2778 | return rt->numSamples() > 1 && glCaps.usesMSAARenderBuffers() && rt->renderFBOID() != 0; | 
| Brian Osman | a9c8a05 | 2018-01-19 10:31:56 -0500 | [diff] [blame] | 2779 | } | 
|  | 2780 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2781 | static inline bool can_copy_texsubimage(const GrSurface* dst, const GrSurface* src, | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2782 | const GrGLCaps& caps) { | 
|  | 2783 |  | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2784 | const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget()); | 
| bsalomon@google.com | a271985 | 2013-04-17 14:25:27 +0000 | [diff] [blame] | 2785 | const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget()); | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 2786 | const GrGLTexture* dstTex = static_cast<const GrGLTexture*>(dst->asTexture()); | 
| bsalomon | 7ea33f5 | 2015-11-22 14:51:00 -0800 | [diff] [blame] | 2787 | const GrGLTexture* srcTex = static_cast<const GrGLTexture*>(src->asTexture()); | 
| cblume | 6121405 | 2016-01-26 09:10:48 -0800 | [diff] [blame] | 2788 |  | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2789 | bool dstHasMSAARenderBuffer = dstRT ? rt_has_msaa_render_buffer(dstRT, caps) : false; | 
|  | 2790 | bool srcHasMSAARenderBuffer = srcRT ? rt_has_msaa_render_buffer(srcRT, caps) : false; | 
|  | 2791 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2792 | GrGLFormat dstFormat = dst->backendFormat().asGLFormat(); | 
|  | 2793 | GrGLFormat srcFormat = src->backendFormat().asGLFormat(); | 
|  | 2794 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2795 | GrTextureType dstTexType; | 
|  | 2796 | GrTextureType* dstTexTypePtr = nullptr; | 
|  | 2797 | GrTextureType srcTexType; | 
|  | 2798 | GrTextureType* srcTexTypePtr = nullptr; | 
|  | 2799 | if (dstTex) { | 
|  | 2800 | dstTexType = dstTex->texturePriv().textureType(); | 
|  | 2801 | dstTexTypePtr = &dstTexType; | 
|  | 2802 | } | 
|  | 2803 | if (srcTex) { | 
|  | 2804 | srcTexType = srcTex->texturePriv().textureType(); | 
|  | 2805 | srcTexTypePtr = &srcTexType; | 
|  | 2806 | } | 
| Greg Daniel | 26dbe3b | 2018-05-03 10:35:42 -0400 | [diff] [blame] | 2807 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2808 | return caps.canCopyTexSubImage(dstFormat, dstHasMSAARenderBuffer, dstTexTypePtr, | 
|  | 2809 | srcFormat, srcHasMSAARenderBuffer, srcTexTypePtr); | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2810 | } | 
|  | 2811 |  | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 2812 | // If a temporary FBO was created, its non-zero ID is returned. | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 2813 | void GrGLGpu::bindSurfaceFBOForPixelOps(GrSurface* surface, int mipLevel, GrGLenum fboTarget, | 
| Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 2814 | TempFBOTarget tempFBOTarget) { | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2815 | GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget()); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 2816 | if (!rt || mipLevel > 0) { | 
| bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 2817 | SkASSERT(surface->asTexture()); | 
| Brian Salomon | 9bada54 | 2017-06-12 12:09:30 -0400 | [diff] [blame] | 2818 | GrGLTexture* texture = static_cast<GrGLTexture*>(surface->asTexture()); | 
|  | 2819 | GrGLuint texID = texture->textureID(); | 
|  | 2820 | GrGLenum target = texture->target(); | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 2821 | GrGLuint* tempFBOID; | 
|  | 2822 | tempFBOID = kSrc_TempFBOTarget == tempFBOTarget ? &fTempSrcFBOID : &fTempDstFBOID; | 
| egdaniel | 0f5f967 | 2015-02-03 11:10:51 -0800 | [diff] [blame] | 2823 |  | 
| egdaniel | d803f27 | 2015-03-18 13:01:52 -0700 | [diff] [blame] | 2824 | if (0 == *tempFBOID) { | 
|  | 2825 | GR_GL_CALL(this->glInterface(), GenFramebuffers(1, tempFBOID)); | 
| egdaniel | 0f5f967 | 2015-02-03 11:10:51 -0800 | [diff] [blame] | 2826 | } | 
|  | 2827 |  | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2828 | this->bindFramebuffer(fboTarget, *tempFBOID); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 2829 | GR_GL_CALL( | 
|  | 2830 | this->glInterface(), | 
|  | 2831 | FramebufferTexture2D(fboTarget, GR_GL_COLOR_ATTACHMENT0, target, texID, mipLevel)); | 
|  | 2832 | if (mipLevel == 0) { | 
|  | 2833 | texture->baseLevelWasBoundToFBO(); | 
|  | 2834 | } | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2835 | } else { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2836 | this->bindFramebuffer(fboTarget, rt->renderFBOID()); | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2837 | } | 
| egdaniel | 0f5f967 | 2015-02-03 11:10:51 -0800 | [diff] [blame] | 2838 | } | 
|  | 2839 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 2840 | void GrGLGpu::unbindSurfaceFBOForPixelOps(GrSurface* surface, int mipLevel, GrGLenum fboTarget) { | 
| Brian Salomon | 71d9d84 | 2016-11-03 13:42:00 -0400 | [diff] [blame] | 2841 | // bindSurfaceFBOForPixelOps temporarily binds textures that are not render targets to | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 2842 | if (mipLevel > 0 || !surface->asRenderTarget()) { | 
| bsalomon | 10528f1 | 2015-10-14 12:54:52 -0700 | [diff] [blame] | 2843 | SkASSERT(surface->asTexture()); | 
|  | 2844 | GrGLenum textureTarget = static_cast<GrGLTexture*>(surface->asTexture())->target(); | 
|  | 2845 | GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget, | 
|  | 2846 | GR_GL_COLOR_ATTACHMENT0, | 
|  | 2847 | textureTarget, | 
|  | 2848 | 0, | 
|  | 2849 | 0)); | 
|  | 2850 | } | 
| bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 2851 | } | 
|  | 2852 |  | 
| Adrienne Walker | ca0cdef | 2018-08-20 13:49:40 -0700 | [diff] [blame] | 2853 | void GrGLGpu::onFBOChanged() { | 
|  | 2854 | if (this->caps()->workarounds().flush_on_framebuffer_change || | 
|  | 2855 | this->caps()->workarounds().restore_scissor_on_fbo_change) { | 
|  | 2856 | GL_CALL(Flush()); | 
|  | 2857 | } | 
|  | 2858 | } | 
|  | 2859 |  | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2860 | void GrGLGpu::bindFramebuffer(GrGLenum target, GrGLuint fboid) { | 
|  | 2861 | fStats.incRenderTargetBinds(); | 
|  | 2862 | GL_CALL(BindFramebuffer(target, fboid)); | 
|  | 2863 | if (target == GR_GL_FRAMEBUFFER || target == GR_GL_DRAW_FRAMEBUFFER) { | 
|  | 2864 | fBoundDrawFramebuffer = fboid; | 
|  | 2865 | } | 
|  | 2866 |  | 
| Adrienne Walker | ca0cdef | 2018-08-20 13:49:40 -0700 | [diff] [blame] | 2867 | if (this->caps()->workarounds().restore_scissor_on_fbo_change) { | 
|  | 2868 | // The driver forgets the correct scissor when modifying the FBO binding. | 
|  | 2869 | if (!fHWScissorSettings.fRect.isInvalid()) { | 
| Chris Dalton | d6cda8d | 2019-09-05 02:30:04 -0600 | [diff] [blame] | 2870 | const GrNativeRect& r = fHWScissorSettings.fRect; | 
| Chris Dalton | 76500e5 | 2019-09-05 02:13:05 -0600 | [diff] [blame] | 2871 | GL_CALL(Scissor(r.fX, r.fY, r.fWidth, r.fHeight)); | 
| Adrienne Walker | ca0cdef | 2018-08-20 13:49:40 -0700 | [diff] [blame] | 2872 | } | 
| Adrienne Walker | 3ed3399 | 2018-05-15 11:44:34 -0700 | [diff] [blame] | 2873 | } | 
|  | 2874 |  | 
| Adrienne Walker | ca0cdef | 2018-08-20 13:49:40 -0700 | [diff] [blame] | 2875 | this->onFBOChanged(); | 
| Adrienne Walker | 3ed3399 | 2018-05-15 11:44:34 -0700 | [diff] [blame] | 2876 | } | 
|  | 2877 |  | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2878 | void GrGLGpu::deleteFramebuffer(GrGLuint fboid) { | 
|  | 2879 | if (fboid == fBoundDrawFramebuffer && | 
|  | 2880 | this->caps()->workarounds().unbind_attachments_on_bound_render_fbo_delete) { | 
|  | 2881 | // This workaround only applies to deleting currently bound framebuffers | 
|  | 2882 | // on Adreno 420.  Because this is a somewhat rare case, instead of | 
|  | 2883 | // tracking all the attachments of every framebuffer instead just always | 
|  | 2884 | // unbind all attachments. | 
|  | 2885 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0, | 
|  | 2886 | GR_GL_RENDERBUFFER, 0)); | 
|  | 2887 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_STENCIL_ATTACHMENT, | 
|  | 2888 | GR_GL_RENDERBUFFER, 0)); | 
|  | 2889 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_DEPTH_ATTACHMENT, | 
|  | 2890 | GR_GL_RENDERBUFFER, 0)); | 
|  | 2891 | } | 
|  | 2892 |  | 
|  | 2893 | GL_CALL(DeleteFramebuffers(1, &fboid)); | 
| Adrienne Walker | ca0cdef | 2018-08-20 13:49:40 -0700 | [diff] [blame] | 2894 |  | 
|  | 2895 | // Deleting the currently bound framebuffer rebinds to 0. | 
|  | 2896 | if (fboid == fBoundDrawFramebuffer) { | 
|  | 2897 | this->onFBOChanged(); | 
|  | 2898 | } | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 2899 | } | 
|  | 2900 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2901 | bool GrGLGpu::onCopySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, | 
| Greg Daniel | e227fe4 | 2019-08-21 13:52:24 -0400 | [diff] [blame] | 2902 | const SkIPoint& dstPoint) { | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2903 | // Don't prefer copying as a draw if the dst doesn't already have a FBO object. | 
|  | 2904 | // This implicitly handles this->glCaps().useDrawInsteadOfAllRenderTargetWrites(). | 
|  | 2905 | bool preferCopy = SkToBool(dst->asRenderTarget()); | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2906 | auto dstFormat = dst->backendFormat().asGLFormat(); | 
|  | 2907 | if (preferCopy && this->glCaps().canCopyAsDraw(dstFormat, SkToBool(src->asTexture()))) { | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2908 | if (this->copySurfaceAsDraw(dst, src, srcRect, dstPoint)) { | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2909 | return true; | 
|  | 2910 | } | 
|  | 2911 | } | 
| cblume | 6121405 | 2016-01-26 09:10:48 -0800 | [diff] [blame] | 2912 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2913 | if (can_copy_texsubimage(dst, src, this->glCaps())) { | 
|  | 2914 | this->copySurfaceAsCopyTexSubImage(dst, src, srcRect, dstPoint); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 2915 | return true; | 
|  | 2916 | } | 
|  | 2917 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2918 | if (can_blit_framebuffer_for_copy_surface(dst, src, srcRect, dstPoint, this->glCaps())) { | 
|  | 2919 | return this->copySurfaceAsBlitFramebuffer(dst, src, srcRect, dstPoint); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2920 | } | 
|  | 2921 |  | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 2922 | if (!preferCopy && this->glCaps().canCopyAsDraw(dstFormat, SkToBool(src->asTexture()))) { | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 2923 | if (this->copySurfaceAsDraw(dst, src, srcRect, dstPoint)) { | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2924 | return true; | 
|  | 2925 | } | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 2926 | } | 
|  | 2927 |  | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 2928 | return false; | 
|  | 2929 | } | 
|  | 2930 |  | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2931 | bool GrGLGpu::createCopyProgram(GrTexture* srcTex) { | 
| Brian Salomon | 5f39427 | 2019-07-02 14:07:49 -0400 | [diff] [blame] | 2932 | TRACE_EVENT0("skia.gpu", TRACE_FUNC); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2933 |  | 
|  | 2934 | int progIdx = TextureToCopyProgramIdx(srcTex); | 
|  | 2935 | const GrShaderCaps* shaderCaps = this->caps()->shaderCaps(); | 
|  | 2936 | GrSLType samplerType = | 
|  | 2937 | GrSLCombinedSamplerTypeForTextureType(srcTex->texturePriv().textureType()); | 
|  | 2938 |  | 
|  | 2939 | if (!fCopyProgramArrayBuffer) { | 
|  | 2940 | static const GrGLfloat vdata[] = { | 
|  | 2941 | 0, 0, | 
|  | 2942 | 0, 1, | 
|  | 2943 | 1, 0, | 
|  | 2944 | 1, 1 | 
|  | 2945 | }; | 
|  | 2946 | fCopyProgramArrayBuffer = GrGLBuffer::Make(this, sizeof(vdata), GrGpuBufferType::kVertex, | 
|  | 2947 | kStatic_GrAccessPattern, vdata); | 
|  | 2948 | } | 
|  | 2949 | if (!fCopyProgramArrayBuffer) { | 
|  | 2950 | return false; | 
|  | 2951 | } | 
|  | 2952 |  | 
|  | 2953 | SkASSERT(!fCopyPrograms[progIdx].fProgram); | 
|  | 2954 | GL_CALL_RET(fCopyPrograms[progIdx].fProgram, CreateProgram()); | 
|  | 2955 | if (!fCopyPrograms[progIdx].fProgram) { | 
|  | 2956 | return false; | 
|  | 2957 | } | 
|  | 2958 |  | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2959 | GrShaderVar aVertex("a_vertex", kHalf2_GrSLType, GrShaderVar::kIn_TypeModifier); | 
|  | 2960 | GrShaderVar uTexCoordXform("u_texCoordXform", kHalf4_GrSLType, | 
|  | 2961 | GrShaderVar::kUniform_TypeModifier); | 
|  | 2962 | GrShaderVar uPosXform("u_posXform", kHalf4_GrSLType, GrShaderVar::kUniform_TypeModifier); | 
|  | 2963 | GrShaderVar uTexture("u_texture", samplerType, GrShaderVar::kUniform_TypeModifier); | 
|  | 2964 | GrShaderVar vTexCoord("v_texCoord", kHalf2_GrSLType, GrShaderVar::kOut_TypeModifier); | 
|  | 2965 | GrShaderVar oFragColor("o_FragColor", kHalf4_GrSLType, GrShaderVar::kOut_TypeModifier); | 
|  | 2966 |  | 
| Greg Daniel | 9e3169b | 2019-06-06 14:38:17 -0400 | [diff] [blame] | 2967 | SkString vshaderTxt; | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2968 | if (shaderCaps->noperspectiveInterpolationSupport()) { | 
|  | 2969 | if (const char* extension = shaderCaps->noperspectiveInterpolationExtensionString()) { | 
|  | 2970 | vshaderTxt.appendf("#extension %s : require\n", extension); | 
|  | 2971 | } | 
|  | 2972 | vTexCoord.addModifier("noperspective"); | 
|  | 2973 | } | 
|  | 2974 |  | 
|  | 2975 | aVertex.appendDecl(shaderCaps, &vshaderTxt); | 
|  | 2976 | vshaderTxt.append(";"); | 
|  | 2977 | uTexCoordXform.appendDecl(shaderCaps, &vshaderTxt); | 
|  | 2978 | vshaderTxt.append(";"); | 
|  | 2979 | uPosXform.appendDecl(shaderCaps, &vshaderTxt); | 
|  | 2980 | vshaderTxt.append(";"); | 
|  | 2981 | vTexCoord.appendDecl(shaderCaps, &vshaderTxt); | 
|  | 2982 | vshaderTxt.append(";"); | 
|  | 2983 |  | 
|  | 2984 | vshaderTxt.append( | 
|  | 2985 | "// Copy Program VS\n" | 
|  | 2986 | "void main() {" | 
|  | 2987 | "  v_texCoord = half2(a_vertex.xy * u_texCoordXform.xy + u_texCoordXform.zw);" | 
|  | 2988 | "  sk_Position.xy = a_vertex * u_posXform.xy + u_posXform.zw;" | 
|  | 2989 | "  sk_Position.zw = half2(0, 1);" | 
|  | 2990 | "}" | 
|  | 2991 | ); | 
|  | 2992 |  | 
| Greg Daniel | 9e3169b | 2019-06-06 14:38:17 -0400 | [diff] [blame] | 2993 | SkString fshaderTxt; | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 2994 | if (shaderCaps->noperspectiveInterpolationSupport()) { | 
|  | 2995 | if (const char* extension = shaderCaps->noperspectiveInterpolationExtensionString()) { | 
|  | 2996 | fshaderTxt.appendf("#extension %s : require\n", extension); | 
|  | 2997 | } | 
|  | 2998 | } | 
|  | 2999 | vTexCoord.setTypeModifier(GrShaderVar::kIn_TypeModifier); | 
|  | 3000 | vTexCoord.appendDecl(shaderCaps, &fshaderTxt); | 
|  | 3001 | fshaderTxt.append(";"); | 
|  | 3002 | uTexture.appendDecl(shaderCaps, &fshaderTxt); | 
|  | 3003 | fshaderTxt.append(";"); | 
|  | 3004 | fshaderTxt.appendf( | 
|  | 3005 | "// Copy Program FS\n" | 
|  | 3006 | "void main() {" | 
| Ethan Nicholas | 1386366 | 2019-07-29 13:05:15 -0400 | [diff] [blame] | 3007 | "  sk_FragColor = sample(u_texture, v_texCoord);" | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3008 | "}" | 
|  | 3009 | ); | 
|  | 3010 |  | 
|  | 3011 | auto errorHandler = this->getContext()->priv().getShaderErrorHandler(); | 
|  | 3012 | SkSL::String sksl(vshaderTxt.c_str(), vshaderTxt.size()); | 
|  | 3013 | SkSL::Program::Settings settings; | 
|  | 3014 | settings.fCaps = shaderCaps; | 
|  | 3015 | SkSL::String glsl; | 
|  | 3016 | std::unique_ptr<SkSL::Program> program = GrSkSLtoGLSL(*fGLContext, SkSL::Program::kVertex_Kind, | 
|  | 3017 | sksl, settings, &glsl, errorHandler); | 
|  | 3018 | GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fCopyPrograms[progIdx].fProgram, | 
|  | 3019 | GR_GL_VERTEX_SHADER, glsl, &fStats, errorHandler); | 
|  | 3020 | SkASSERT(program->fInputs.isEmpty()); | 
|  | 3021 |  | 
|  | 3022 | sksl.assign(fshaderTxt.c_str(), fshaderTxt.size()); | 
|  | 3023 | program = GrSkSLtoGLSL(*fGLContext, SkSL::Program::kFragment_Kind, sksl, settings, &glsl, | 
|  | 3024 | errorHandler); | 
|  | 3025 | GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fCopyPrograms[progIdx].fProgram, | 
|  | 3026 | GR_GL_FRAGMENT_SHADER, glsl, &fStats, | 
|  | 3027 | errorHandler); | 
|  | 3028 | SkASSERT(program->fInputs.isEmpty()); | 
|  | 3029 |  | 
|  | 3030 | GL_CALL(LinkProgram(fCopyPrograms[progIdx].fProgram)); | 
|  | 3031 |  | 
|  | 3032 | GL_CALL_RET(fCopyPrograms[progIdx].fTextureUniform, | 
|  | 3033 | GetUniformLocation(fCopyPrograms[progIdx].fProgram, "u_texture")); | 
|  | 3034 | GL_CALL_RET(fCopyPrograms[progIdx].fPosXformUniform, | 
|  | 3035 | GetUniformLocation(fCopyPrograms[progIdx].fProgram, "u_posXform")); | 
|  | 3036 | GL_CALL_RET(fCopyPrograms[progIdx].fTexCoordXformUniform, | 
|  | 3037 | GetUniformLocation(fCopyPrograms[progIdx].fProgram, "u_texCoordXform")); | 
|  | 3038 |  | 
|  | 3039 | GL_CALL(BindAttribLocation(fCopyPrograms[progIdx].fProgram, 0, "a_vertex")); | 
|  | 3040 |  | 
|  | 3041 | GL_CALL(DeleteShader(vshader)); | 
|  | 3042 | GL_CALL(DeleteShader(fshader)); | 
|  | 3043 |  | 
|  | 3044 | return true; | 
|  | 3045 | } | 
|  | 3046 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3047 | bool GrGLGpu::createMipmapProgram(int progIdx) { | 
|  | 3048 | const bool oddWidth = SkToBool(progIdx & 0x2); | 
|  | 3049 | const bool oddHeight = SkToBool(progIdx & 0x1); | 
|  | 3050 | const int numTaps = (oddWidth ? 2 : 1) * (oddHeight ? 2 : 1); | 
|  | 3051 |  | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3052 | const GrShaderCaps* shaderCaps = this->caps()->shaderCaps(); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3053 |  | 
|  | 3054 | SkASSERT(!fMipmapPrograms[progIdx].fProgram); | 
|  | 3055 | GL_CALL_RET(fMipmapPrograms[progIdx].fProgram, CreateProgram()); | 
|  | 3056 | if (!fMipmapPrograms[progIdx].fProgram) { | 
|  | 3057 | return false; | 
|  | 3058 | } | 
|  | 3059 |  | 
| Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 3060 | GrShaderVar aVertex("a_vertex", kHalf2_GrSLType, GrShaderVar::kIn_TypeModifier); | 
|  | 3061 | GrShaderVar uTexCoordXform("u_texCoordXform", kHalf4_GrSLType, | 
| Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 3062 | GrShaderVar::kUniform_TypeModifier); | 
|  | 3063 | GrShaderVar uTexture("u_texture", kTexture2DSampler_GrSLType, | 
|  | 3064 | GrShaderVar::kUniform_TypeModifier); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3065 | // We need 1, 2, or 4 texture coordinates (depending on parity of each dimension): | 
| Brian Salomon | 99938a8 | 2016-11-21 13:41:08 -0500 | [diff] [blame] | 3066 | GrShaderVar vTexCoords[] = { | 
| Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 3067 | GrShaderVar("v_texCoord0", kHalf2_GrSLType, GrShaderVar::kOut_TypeModifier), | 
|  | 3068 | GrShaderVar("v_texCoord1", kHalf2_GrSLType, GrShaderVar::kOut_TypeModifier), | 
|  | 3069 | GrShaderVar("v_texCoord2", kHalf2_GrSLType, GrShaderVar::kOut_TypeModifier), | 
|  | 3070 | GrShaderVar("v_texCoord3", kHalf2_GrSLType, GrShaderVar::kOut_TypeModifier), | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3071 | }; | 
| Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 3072 | GrShaderVar oFragColor("o_FragColor", kHalf4_GrSLType,GrShaderVar::kOut_TypeModifier); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3073 |  | 
| Ethan Nicholas | fc99416 | 2019-06-06 10:04:27 -0400 | [diff] [blame] | 3074 | SkString vshaderTxt; | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3075 | if (shaderCaps->noperspectiveInterpolationSupport()) { | 
|  | 3076 | if (const char* extension = shaderCaps->noperspectiveInterpolationExtensionString()) { | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3077 | vshaderTxt.appendf("#extension %s : require\n", extension); | 
|  | 3078 | } | 
|  | 3079 | vTexCoords[0].addModifier("noperspective"); | 
|  | 3080 | vTexCoords[1].addModifier("noperspective"); | 
|  | 3081 | vTexCoords[2].addModifier("noperspective"); | 
|  | 3082 | vTexCoords[3].addModifier("noperspective"); | 
|  | 3083 | } | 
|  | 3084 |  | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3085 | aVertex.appendDecl(shaderCaps, &vshaderTxt); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3086 | vshaderTxt.append(";"); | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3087 | uTexCoordXform.appendDecl(shaderCaps, &vshaderTxt); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3088 | vshaderTxt.append(";"); | 
|  | 3089 | for (int i = 0; i < numTaps; ++i) { | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3090 | vTexCoords[i].appendDecl(shaderCaps, &vshaderTxt); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3091 | vshaderTxt.append(";"); | 
|  | 3092 | } | 
|  | 3093 |  | 
|  | 3094 | vshaderTxt.append( | 
|  | 3095 | "// Mipmap Program VS\n" | 
|  | 3096 | "void main() {" | 
| Ethan Nicholas | bed683a | 2017-09-26 14:23:59 -0400 | [diff] [blame] | 3097 | "  sk_Position.xy = a_vertex * half2(2, 2) - half2(1, 1);" | 
|  | 3098 | "  sk_Position.zw = half2(0, 1);" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3099 | ); | 
|  | 3100 |  | 
|  | 3101 | // Insert texture coordinate computation: | 
|  | 3102 | if (oddWidth && oddHeight) { | 
|  | 3103 | vshaderTxt.append( | 
|  | 3104 | "  v_texCoord0 = a_vertex.xy * u_texCoordXform.yw;" | 
| Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 3105 | "  v_texCoord1 = a_vertex.xy * u_texCoordXform.yw + half2(u_texCoordXform.x, 0);" | 
|  | 3106 | "  v_texCoord2 = a_vertex.xy * u_texCoordXform.yw + half2(0, u_texCoordXform.z);" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3107 | "  v_texCoord3 = a_vertex.xy * u_texCoordXform.yw + u_texCoordXform.xz;" | 
|  | 3108 | ); | 
|  | 3109 | } else if (oddWidth) { | 
|  | 3110 | vshaderTxt.append( | 
| Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 3111 | "  v_texCoord0 = a_vertex.xy * half2(u_texCoordXform.y, 1);" | 
|  | 3112 | "  v_texCoord1 = a_vertex.xy * half2(u_texCoordXform.y, 1) + half2(u_texCoordXform.x, 0);" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3113 | ); | 
|  | 3114 | } else if (oddHeight) { | 
|  | 3115 | vshaderTxt.append( | 
| Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 3116 | "  v_texCoord0 = a_vertex.xy * half2(1, u_texCoordXform.w);" | 
|  | 3117 | "  v_texCoord1 = a_vertex.xy * half2(1, u_texCoordXform.w) + half2(0, u_texCoordXform.z);" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3118 | ); | 
|  | 3119 | } else { | 
|  | 3120 | vshaderTxt.append( | 
|  | 3121 | "  v_texCoord0 = a_vertex.xy;" | 
|  | 3122 | ); | 
|  | 3123 | } | 
|  | 3124 |  | 
|  | 3125 | vshaderTxt.append("}"); | 
|  | 3126 |  | 
| Ethan Nicholas | fc99416 | 2019-06-06 10:04:27 -0400 | [diff] [blame] | 3127 | SkString fshaderTxt; | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3128 | if (shaderCaps->noperspectiveInterpolationSupport()) { | 
|  | 3129 | if (const char* extension = shaderCaps->noperspectiveInterpolationExtensionString()) { | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3130 | fshaderTxt.appendf("#extension %s : require\n", extension); | 
|  | 3131 | } | 
|  | 3132 | } | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3133 | for (int i = 0; i < numTaps; ++i) { | 
| Brian Salomon | f31ae49 | 2016-11-18 15:35:33 -0500 | [diff] [blame] | 3134 | vTexCoords[i].setTypeModifier(GrShaderVar::kIn_TypeModifier); | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3135 | vTexCoords[i].appendDecl(shaderCaps, &fshaderTxt); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3136 | fshaderTxt.append(";"); | 
|  | 3137 | } | 
| Brian Salomon | 1edc5b9 | 2016-11-29 13:43:46 -0500 | [diff] [blame] | 3138 | uTexture.appendDecl(shaderCaps, &fshaderTxt); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3139 | fshaderTxt.append(";"); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3140 | fshaderTxt.append( | 
|  | 3141 | "// Mipmap Program FS\n" | 
|  | 3142 | "void main() {" | 
|  | 3143 | ); | 
|  | 3144 |  | 
|  | 3145 | if (oddWidth && oddHeight) { | 
| Ethan Nicholas | 2b3dab6 | 2016-11-28 12:03:26 -0500 | [diff] [blame] | 3146 | fshaderTxt.append( | 
| Ethan Nicholas | 1386366 | 2019-07-29 13:05:15 -0400 | [diff] [blame] | 3147 | "  sk_FragColor = (sample(u_texture, v_texCoord0) + " | 
|  | 3148 | "                  sample(u_texture, v_texCoord1) + " | 
|  | 3149 | "                  sample(u_texture, v_texCoord2) + " | 
|  | 3150 | "                  sample(u_texture, v_texCoord3)) * 0.25;" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3151 | ); | 
|  | 3152 | } else if (oddWidth || oddHeight) { | 
| Ethan Nicholas | 2b3dab6 | 2016-11-28 12:03:26 -0500 | [diff] [blame] | 3153 | fshaderTxt.append( | 
| Ethan Nicholas | 1386366 | 2019-07-29 13:05:15 -0400 | [diff] [blame] | 3154 | "  sk_FragColor = (sample(u_texture, v_texCoord0) + " | 
|  | 3155 | "                  sample(u_texture, v_texCoord1)) * 0.5;" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3156 | ); | 
|  | 3157 | } else { | 
| Ethan Nicholas | 2b3dab6 | 2016-11-28 12:03:26 -0500 | [diff] [blame] | 3158 | fshaderTxt.append( | 
| Ethan Nicholas | 1386366 | 2019-07-29 13:05:15 -0400 | [diff] [blame] | 3159 | "  sk_FragColor = sample(u_texture, v_texCoord0);" | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3160 | ); | 
|  | 3161 | } | 
|  | 3162 |  | 
|  | 3163 | fshaderTxt.append("}"); | 
|  | 3164 |  | 
| Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 3165 | auto errorHandler = this->getContext()->priv().getShaderErrorHandler(); | 
| Brian Osman | 6c431d5 | 2019-04-15 16:31:54 -0400 | [diff] [blame] | 3166 | SkSL::String sksl(vshaderTxt.c_str(), vshaderTxt.size()); | 
| Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 3167 | SkSL::Program::Settings settings; | 
|  | 3168 | settings.fCaps = shaderCaps; | 
| Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 3169 | SkSL::String glsl; | 
| Brian Osman | ac9be9d | 2019-05-01 10:29:34 -0400 | [diff] [blame] | 3170 | std::unique_ptr<SkSL::Program> program = GrSkSLtoGLSL(*fGLContext, SkSL::Program::kVertex_Kind, | 
| Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 3171 | sksl, settings, &glsl, errorHandler); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3172 | GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fMipmapPrograms[progIdx].fProgram, | 
| Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 3173 | GR_GL_VERTEX_SHADER, glsl, &fStats, errorHandler); | 
| Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 3174 | SkASSERT(program->fInputs.isEmpty()); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3175 |  | 
| Brian Osman | 6c431d5 | 2019-04-15 16:31:54 -0400 | [diff] [blame] | 3176 | sksl.assign(fshaderTxt.c_str(), fshaderTxt.size()); | 
| Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 3177 | program = GrSkSLtoGLSL(*fGLContext, SkSL::Program::kFragment_Kind, sksl, settings, &glsl, | 
|  | 3178 | errorHandler); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3179 | GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fMipmapPrograms[progIdx].fProgram, | 
| Brian Osman | 8518f2e | 2019-05-01 14:13:41 -0400 | [diff] [blame] | 3180 | GR_GL_FRAGMENT_SHADER, glsl, &fStats, | 
| Brian Osman | 5e7fbfd | 2019-05-03 13:13:35 -0400 | [diff] [blame] | 3181 | errorHandler); | 
| Ethan Nicholas | d1b2eec | 2017-11-01 15:45:43 -0400 | [diff] [blame] | 3182 | SkASSERT(program->fInputs.isEmpty()); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3183 |  | 
|  | 3184 | GL_CALL(LinkProgram(fMipmapPrograms[progIdx].fProgram)); | 
|  | 3185 |  | 
|  | 3186 | GL_CALL_RET(fMipmapPrograms[progIdx].fTextureUniform, | 
|  | 3187 | GetUniformLocation(fMipmapPrograms[progIdx].fProgram, "u_texture")); | 
|  | 3188 | GL_CALL_RET(fMipmapPrograms[progIdx].fTexCoordXformUniform, | 
|  | 3189 | GetUniformLocation(fMipmapPrograms[progIdx].fProgram, "u_texCoordXform")); | 
|  | 3190 |  | 
|  | 3191 | GL_CALL(BindAttribLocation(fMipmapPrograms[progIdx].fProgram, 0, "a_vertex")); | 
|  | 3192 |  | 
|  | 3193 | GL_CALL(DeleteShader(vshader)); | 
|  | 3194 | GL_CALL(DeleteShader(fshader)); | 
|  | 3195 |  | 
|  | 3196 | return true; | 
|  | 3197 | } | 
|  | 3198 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3199 | bool GrGLGpu::copySurfaceAsDraw(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3200 | const SkIPoint& dstPoint) { | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 3201 | auto* srcTex = static_cast<GrGLTexture*>(src->asTexture()); | 
|  | 3202 | auto* dstTex = static_cast<GrGLTexture*>(src->asTexture()); | 
|  | 3203 | auto* dstRT  = static_cast<GrGLRenderTarget*>(src->asRenderTarget()); | 
|  | 3204 | if (!srcTex) { | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3205 | return false; | 
|  | 3206 | } | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 3207 | int progIdx = TextureToCopyProgramIdx(srcTex); | 
|  | 3208 | if (!dstRT) { | 
|  | 3209 | SkASSERT(dstTex); | 
|  | 3210 | if (!this->glCaps().isFormatRenderable(dstTex->format(), 1)) { | 
|  | 3211 | return false; | 
|  | 3212 | } | 
|  | 3213 | } | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3214 | if (!fCopyPrograms[progIdx].fProgram) { | 
|  | 3215 | if (!this->createCopyProgram(srcTex)) { | 
|  | 3216 | SkDebugf("Failed to create copy program.\n"); | 
|  | 3217 | return false; | 
|  | 3218 | } | 
|  | 3219 | } | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3220 | int w = srcRect.width(); | 
|  | 3221 | int h = srcRect.height(); | 
| Greg Daniel | 2c3398d | 2019-06-19 11:58:01 -0400 | [diff] [blame] | 3222 | // We don't swizzle at all in our copies. | 
|  | 3223 | this->bindTexture(0, GrSamplerState::ClampNearest(), GrSwizzle::RGBA(), srcTex); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3224 | this->bindSurfaceFBOForPixelOps(dst, 0, GR_GL_FRAMEBUFFER, kDst_TempFBOTarget); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3225 | this->flushViewport(dst->width(), dst->height()); | 
|  | 3226 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3227 | SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, w, h); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3228 | this->flushProgram(fCopyPrograms[progIdx].fProgram); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3229 | fHWVertexArrayState.setVertexArrayID(this, 0); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3230 | GrGLAttribArrayState* attribs = fHWVertexArrayState.bindInternalVertexArray(this); | 
|  | 3231 | attribs->enableVertexArrays(this, 1); | 
|  | 3232 | attribs->set(this, 0, fCopyProgramArrayBuffer.get(), kFloat2_GrVertexAttribType, | 
|  | 3233 | kFloat2_GrSLType, 2 * sizeof(GrGLfloat), 0); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3234 | // dst rect edges in NDC (-1 to 1) | 
|  | 3235 | int dw = dst->width(); | 
|  | 3236 | int dh = dst->height(); | 
|  | 3237 | GrGLfloat dx0 = 2.f * dstPoint.fX / dw - 1.f; | 
|  | 3238 | GrGLfloat dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f; | 
|  | 3239 | GrGLfloat dy0 = 2.f * dstPoint.fY / dh - 1.f; | 
|  | 3240 | GrGLfloat dy1 = 2.f * (dstPoint.fY + h) / dh - 1.f; | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3241 | GrGLfloat sx0 = (GrGLfloat)srcRect.fLeft; | 
|  | 3242 | GrGLfloat sx1 = (GrGLfloat)(srcRect.fLeft + w); | 
|  | 3243 | GrGLfloat sy0 = (GrGLfloat)srcRect.fTop; | 
|  | 3244 | GrGLfloat sy1 = (GrGLfloat)(srcRect.fTop + h); | 
|  | 3245 | int sw = src->width(); | 
|  | 3246 | int sh = src->height(); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3247 | if (srcTex->texturePriv().textureType() != GrTextureType::kRectangle) { | 
|  | 3248 | // src rect edges in normalized texture space (0 to 1) | 
|  | 3249 | sx0 /= sw; | 
|  | 3250 | sx1 /= sw; | 
|  | 3251 | sy0 /= sh; | 
|  | 3252 | sy1 /= sh; | 
|  | 3253 | } | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3254 | GL_CALL(Uniform4f(fCopyPrograms[progIdx].fPosXformUniform, dx1 - dx0, dy1 - dy0, dx0, dy0)); | 
|  | 3255 | GL_CALL(Uniform4f(fCopyPrograms[progIdx].fTexCoordXformUniform, | 
|  | 3256 | sx1 - sx0, sy1 - sy0, sx0, sy0)); | 
|  | 3257 | GL_CALL(Uniform1i(fCopyPrograms[progIdx].fTextureUniform, 0)); | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 3258 | this->flushBlendAndColorWrite(GrXferProcessor::BlendInfo(), GrSwizzle::RGBA()); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3259 | this->flushHWAAState(nullptr, false); | 
|  | 3260 | this->disableScissor(); | 
|  | 3261 | this->disableWindowRectangles(); | 
|  | 3262 | this->disableStencil(); | 
|  | 3263 | if (this->glCaps().srgbWriteControl()) { | 
|  | 3264 | this->flushFramebufferSRGB(true); | 
|  | 3265 | } | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3266 | GL_CALL(DrawArrays(GR_GL_TRIANGLE_STRIP, 0, 4)); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3267 | this->unbindSurfaceFBOForPixelOps(dst, 0, GR_GL_FRAMEBUFFER); | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3268 | // The rect is already in device space so we pass in kTopLeft so no flip is done. | 
|  | 3269 | this->didWriteToSurface(dst, kTopLeft_GrSurfaceOrigin, &dstRect); | 
| Greg Daniel | 4c6f9b7 | 2019-06-06 13:40:59 -0400 | [diff] [blame] | 3270 | return true; | 
|  | 3271 | } | 
|  | 3272 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3273 | void GrGLGpu::copySurfaceAsCopyTexSubImage(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3274 | const SkIPoint& dstPoint) { | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3275 | SkASSERT(can_copy_texsubimage(dst, src, this->glCaps())); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3276 | this->bindSurfaceFBOForPixelOps(src, 0, GR_GL_FRAMEBUFFER, kSrc_TempFBOTarget); | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 3277 | GrGLTexture* dstTex = static_cast<GrGLTexture *>(dst->asTexture()); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3278 | SkASSERT(dstTex); | 
|  | 3279 | // We modified the bound FBO | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 3280 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3281 |  | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 3282 | this->bindTextureToScratchUnit(dstTex->target(), dstTex->textureID()); | 
| bsalomon | 10528f1 | 2015-10-14 12:54:52 -0700 | [diff] [blame] | 3283 | GL_CALL(CopyTexSubImage2D(dstTex->target(), 0, | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3284 | dstPoint.fX, dstPoint.fY, | 
|  | 3285 | srcRect.fLeft, srcRect.fTop, | 
|  | 3286 | srcRect.width(), srcRect.height())); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3287 | this->unbindSurfaceFBOForPixelOps(src, 0, GR_GL_FRAMEBUFFER); | 
| bsalomon | 083617b | 2016-02-12 12:10:14 -0800 | [diff] [blame] | 3288 | SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, | 
|  | 3289 | srcRect.width(), srcRect.height()); | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3290 | // The rect is already in device space so we pass in kTopLeft so no flip is done. | 
|  | 3291 | this->didWriteToSurface(dst, kTopLeft_GrSurfaceOrigin, &dstRect); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3292 | } | 
|  | 3293 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3294 | bool GrGLGpu::copySurfaceAsBlitFramebuffer(GrSurface* dst, GrSurface* src, const SkIRect& srcRect, | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3295 | const SkIPoint& dstPoint) { | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3296 | SkASSERT(can_blit_framebuffer_for_copy_surface(dst, src, srcRect, dstPoint, this->glCaps())); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3297 | SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, | 
|  | 3298 | srcRect.width(), srcRect.height()); | 
|  | 3299 | if (dst == src) { | 
| Mike Reed | 3012cba | 2019-08-26 10:31:13 -0400 | [diff] [blame] | 3300 | if (SkIRect::Intersects(dstRect, srcRect)) { | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3301 | return false; | 
| mtklein | 404b3b2 | 2015-05-18 09:29:10 -0700 | [diff] [blame] | 3302 | } | 
| bsalomon | 5df6fee | 2015-05-18 06:26:15 -0700 | [diff] [blame] | 3303 | } | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3304 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3305 | this->bindSurfaceFBOForPixelOps(dst, 0, GR_GL_DRAW_FRAMEBUFFER, kDst_TempFBOTarget); | 
|  | 3306 | this->bindSurfaceFBOForPixelOps(src, 0, GR_GL_READ_FRAMEBUFFER, kSrc_TempFBOTarget); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3307 | // We modified the bound FBO | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 3308 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3309 |  | 
|  | 3310 | // BlitFrameBuffer respects the scissor, so disable it. | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 3311 | this->disableScissor(); | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 3312 | this->disableWindowRectangles(); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3313 |  | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3314 | GL_CALL(BlitFramebuffer(srcRect.fLeft, | 
|  | 3315 | srcRect.fTop, | 
|  | 3316 | srcRect.fRight, | 
|  | 3317 | srcRect.fBottom, | 
|  | 3318 | dstRect.fLeft, | 
|  | 3319 | dstRect.fTop, | 
|  | 3320 | dstRect.fRight, | 
|  | 3321 | dstRect.fBottom, | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3322 | GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST)); | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3323 | this->unbindSurfaceFBOForPixelOps(dst, 0, GR_GL_DRAW_FRAMEBUFFER); | 
|  | 3324 | this->unbindSurfaceFBOForPixelOps(src, 0, GR_GL_READ_FRAMEBUFFER); | 
| Greg Daniel | 46cfbc6 | 2019-06-07 11:43:30 -0400 | [diff] [blame] | 3325 |  | 
|  | 3326 | // The rect is already in device space so we pass in kTopLeft so no flip is done. | 
|  | 3327 | this->didWriteToSurface(dst, kTopLeft_GrSurfaceOrigin, &dstRect); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3328 | return true; | 
| commit-bot@chromium.org | 63150af | 2013-04-11 22:00:22 +0000 | [diff] [blame] | 3329 | } | 
|  | 3330 |  | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3331 | bool GrGLGpu::onRegenerateMipMapLevels(GrTexture* texture) { | 
|  | 3332 | auto glTex = static_cast<GrGLTexture*>(texture); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3333 | // Mipmaps are only supported on 2D textures: | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3334 | if (GR_GL_TEXTURE_2D != glTex->target()) { | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3335 | return false; | 
|  | 3336 | } | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 3337 | GrGLFormat format = glTex->format(); | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3338 | // Manual implementation of mipmap generation, to work around driver bugs w/sRGB. | 
|  | 3339 | // Uses draw calls to do a series of downsample operations to successive mips. | 
|  | 3340 |  | 
|  | 3341 | // The manual approach requires the ability to limit which level we're sampling and that the | 
|  | 3342 | // destination can be bound to a FBO: | 
| Brian Salomon | 1c53a9f | 2019-08-12 14:10:12 -0400 | [diff] [blame] | 3343 | if (!this->glCaps().doManualMipmapping() || !this->glCaps().isFormatRenderable(format, 1)) { | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3344 | GrGLenum target = glTex->target(); | 
| Brian Salomon | d978b90 | 2019-02-07 15:09:18 -0500 | [diff] [blame] | 3345 | this->bindTextureToScratchUnit(target, glTex->textureID()); | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3346 | GL_CALL(GenerateMipmap(glTex->target())); | 
|  | 3347 | return true; | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3348 | } | 
|  | 3349 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3350 | int width = texture->width(); | 
|  | 3351 | int height = texture->height(); | 
|  | 3352 | int levelCount = SkMipMap::ComputeLevelCount(width, height) + 1; | 
| Greg Daniel | da86e28 | 2018-06-13 09:41:19 -0400 | [diff] [blame] | 3353 | SkASSERT(levelCount == texture->texturePriv().maxMipMapLevel() + 1); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3354 |  | 
|  | 3355 | // Create (if necessary), then bind temporary FBO: | 
|  | 3356 | if (0 == fTempDstFBOID) { | 
|  | 3357 | GL_CALL(GenFramebuffers(1, &fTempDstFBOID)); | 
|  | 3358 | } | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 3359 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, fTempDstFBOID); | 
| Robert Phillips | 294870f | 2016-11-11 12:38:40 -0500 | [diff] [blame] | 3360 | fHWBoundRenderTargetUniqueID.makeInvalid(); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3361 |  | 
|  | 3362 | // Bind the texture, to get things configured for filtering. | 
|  | 3363 | // We'll be changing our base level further below: | 
|  | 3364 | this->setTextureUnit(0); | 
| Greg Daniel | 2c3398d | 2019-06-19 11:58:01 -0400 | [diff] [blame] | 3365 | // The mipmap program does not do any swizzling. | 
|  | 3366 | this->bindTexture(0, GrSamplerState::ClampBilerp(), GrSwizzle::RGBA(), glTex); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3367 |  | 
|  | 3368 | // Vertex data: | 
|  | 3369 | if (!fMipmapProgramArrayBuffer) { | 
|  | 3370 | static const GrGLfloat vdata[] = { | 
|  | 3371 | 0, 0, | 
|  | 3372 | 0, 1, | 
|  | 3373 | 1, 0, | 
|  | 3374 | 1, 1 | 
|  | 3375 | }; | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 3376 | fMipmapProgramArrayBuffer = GrGLBuffer::Make(this, sizeof(vdata), GrGpuBufferType::kVertex, | 
| Brian Salomon | 12d2264 | 2019-01-29 14:38:50 -0500 | [diff] [blame] | 3377 | kStatic_GrAccessPattern, vdata); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3378 | } | 
|  | 3379 | if (!fMipmapProgramArrayBuffer) { | 
|  | 3380 | return false; | 
|  | 3381 | } | 
|  | 3382 |  | 
|  | 3383 | fHWVertexArrayState.setVertexArrayID(this, 0); | 
|  | 3384 |  | 
|  | 3385 | GrGLAttribArrayState* attribs = fHWVertexArrayState.bindInternalVertexArray(this); | 
| Chris Dalton | 8e45b4f | 2017-05-05 14:00:56 -0400 | [diff] [blame] | 3386 | attribs->enableVertexArrays(this, 1); | 
| Brian Osman | d4c2970 | 2018-09-14 16:16:55 -0400 | [diff] [blame] | 3387 | attribs->set(this, 0, fMipmapProgramArrayBuffer.get(), kFloat2_GrVertexAttribType, | 
| Brian Osman | 4a3f5c8 | 2018-09-18 16:16:38 -0400 | [diff] [blame] | 3388 | kFloat2_GrSLType, 2 * sizeof(GrGLfloat), 0); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3389 |  | 
|  | 3390 | // Set "simple" state once: | 
| Chris Dalton | bbb3f64 | 2019-07-24 12:25:08 -0400 | [diff] [blame] | 3391 | this->flushBlendAndColorWrite(GrXferProcessor::BlendInfo(), GrSwizzle::RGBA()); | 
| Chris Dalton | 4c56b03 | 2019-03-04 12:28:42 -0700 | [diff] [blame] | 3392 | this->flushHWAAState(nullptr, false); | 
| Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 3393 | this->disableScissor(); | 
| csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 3394 | this->disableWindowRectangles(); | 
| csmartdalton | c7d8533 | 2016-10-26 10:13:46 -0700 | [diff] [blame] | 3395 | this->disableStencil(); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3396 |  | 
|  | 3397 | // Do all the blits: | 
|  | 3398 | width = texture->width(); | 
|  | 3399 | height = texture->height(); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 3400 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3401 | for (GrGLint level = 1; level < levelCount; ++level) { | 
|  | 3402 | // Get and bind the program for this particular downsample (filter shape can vary): | 
|  | 3403 | int progIdx = TextureSizeToMipmapProgramIdx(width, height); | 
|  | 3404 | if (!fMipmapPrograms[progIdx].fProgram) { | 
|  | 3405 | if (!this->createMipmapProgram(progIdx)) { | 
|  | 3406 | SkDebugf("Failed to create mipmap program.\n"); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 3407 | // Invalidate all params to cover base level change in a previous iteration. | 
|  | 3408 | glTex->textureParamsModified(); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3409 | return false; | 
|  | 3410 | } | 
|  | 3411 | } | 
| Brian Salomon | 802cb31 | 2018-06-08 18:05:20 -0400 | [diff] [blame] | 3412 | this->flushProgram(fMipmapPrograms[progIdx].fProgram); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3413 |  | 
|  | 3414 | // Texcoord uniform is expected to contain (1/w, (w-1)/w, 1/h, (h-1)/h) | 
|  | 3415 | const float invWidth = 1.0f / width; | 
|  | 3416 | const float invHeight = 1.0f / height; | 
|  | 3417 | GL_CALL(Uniform4f(fMipmapPrograms[progIdx].fTexCoordXformUniform, | 
|  | 3418 | invWidth, (width - 1) * invWidth, invHeight, (height - 1) * invHeight)); | 
|  | 3419 | GL_CALL(Uniform1i(fMipmapPrograms[progIdx].fTextureUniform, 0)); | 
|  | 3420 |  | 
|  | 3421 | // Only sample from previous mip | 
|  | 3422 | GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_BASE_LEVEL, level - 1)); | 
|  | 3423 |  | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3424 | GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0, GR_GL_TEXTURE_2D, | 
|  | 3425 | glTex->textureID(), level)); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3426 |  | 
|  | 3427 | width = SkTMax(1, width / 2); | 
|  | 3428 | height = SkTMax(1, height / 2); | 
| Greg Daniel | acd66b4 | 2019-05-22 16:29:12 -0400 | [diff] [blame] | 3429 | this->flushViewport(width, height); | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3430 |  | 
|  | 3431 | GL_CALL(DrawArrays(GR_GL_TRIANGLE_STRIP, 0, 4)); | 
|  | 3432 | } | 
|  | 3433 |  | 
|  | 3434 | // Unbind: | 
|  | 3435 | GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0, | 
|  | 3436 | GR_GL_TEXTURE_2D, 0, 0)); | 
|  | 3437 |  | 
| Brian Salomon | 930f939 | 2018-06-20 16:25:26 -0400 | [diff] [blame] | 3438 | // We modified the base level param. | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 3439 | GrGLTextureParameters::NonsamplerState nonsamplerState = glTex->parameters()->nonsamplerState(); | 
|  | 3440 | // We drew the 2nd to last level into the last level. | 
|  | 3441 | nonsamplerState.fBaseMipMapLevel = levelCount - 2; | 
|  | 3442 | glTex->parameters()->set(nullptr, nonsamplerState, fResetTimestampForTextureParameters); | 
| Brian Salomon | dc82994 | 2018-10-23 16:07:24 -0400 | [diff] [blame] | 3443 |  | 
| brianosman | 33f6b3f | 2016-06-02 05:49:21 -0700 | [diff] [blame] | 3444 | return true; | 
|  | 3445 | } | 
|  | 3446 |  | 
| Chris Dalton | d7291ba | 2019-03-07 14:17:03 -0700 | [diff] [blame] | 3447 | void GrGLGpu::querySampleLocations( | 
| Chris Dalton | 8c4cafd | 2019-04-15 19:14:36 -0600 | [diff] [blame] | 3448 | GrRenderTarget* renderTarget, SkTArray<SkPoint>* sampleLocations) { | 
|  | 3449 | this->flushRenderTargetNoColorWrites(static_cast<GrGLRenderTarget*>(renderTarget)); | 
| Chris Dalton | d7291ba | 2019-03-07 14:17:03 -0700 | [diff] [blame] | 3450 |  | 
|  | 3451 | int effectiveSampleCnt; | 
|  | 3452 | GR_GL_GetIntegerv(this->glInterface(), GR_GL_SAMPLES, &effectiveSampleCnt); | 
| Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 3453 | SkASSERT(effectiveSampleCnt >= renderTarget->numSamples()); | 
| Chris Dalton | d7291ba | 2019-03-07 14:17:03 -0700 | [diff] [blame] | 3454 |  | 
|  | 3455 | sampleLocations->reset(effectiveSampleCnt); | 
|  | 3456 | for (int i = 0; i < effectiveSampleCnt; ++i) { | 
|  | 3457 | GL_CALL(GetMultisamplefv(GR_GL_SAMPLE_POSITION, i, &(*sampleLocations)[i].fX)); | 
|  | 3458 | } | 
|  | 3459 | } | 
|  | 3460 |  | 
| cdalton | 231c5fd | 2015-05-13 12:35:36 -0700 | [diff] [blame] | 3461 | void GrGLGpu::xferBarrier(GrRenderTarget* rt, GrXferBarrierType type) { | 
| bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 3462 | SkASSERT(type); | 
| cdalton | 9954bc3 | 2015-04-29 14:17:00 -0700 | [diff] [blame] | 3463 | switch (type) { | 
| cdalton | 231c5fd | 2015-05-13 12:35:36 -0700 | [diff] [blame] | 3464 | case kTexture_GrXferBarrierType: { | 
|  | 3465 | GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt); | 
| Brian Osman | cfe83d1 | 2018-01-19 11:13:45 -0500 | [diff] [blame] | 3466 | SkASSERT(glrt->textureFBOID() != 0 && glrt->renderFBOID() != 0); | 
| cdalton | 231c5fd | 2015-05-13 12:35:36 -0700 | [diff] [blame] | 3467 | if (glrt->textureFBOID() != glrt->renderFBOID()) { | 
|  | 3468 | // The render target uses separate storage so no need for glTextureBarrier. | 
|  | 3469 | // FIXME: The render target will resolve automatically when its texture is bound, | 
|  | 3470 | // but we could resolve only the bounds that will be read if we do it here instead. | 
|  | 3471 | return; | 
|  | 3472 | } | 
| cdalton | 9954bc3 | 2015-04-29 14:17:00 -0700 | [diff] [blame] | 3473 | SkASSERT(this->caps()->textureBarrierSupport()); | 
|  | 3474 | GL_CALL(TextureBarrier()); | 
|  | 3475 | return; | 
| cdalton | 231c5fd | 2015-05-13 12:35:36 -0700 | [diff] [blame] | 3476 | } | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 3477 | case kBlend_GrXferBarrierType: | 
| bsalomon | 4b91f76 | 2015-05-19 09:29:46 -0700 | [diff] [blame] | 3478 | SkASSERT(GrCaps::kAdvanced_BlendEquationSupport == | 
| cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 3479 | this->caps()->blendEquationSupport()); | 
|  | 3480 | GL_CALL(BlendBarrier()); | 
|  | 3481 | return; | 
| bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 3482 | default: break; // placate compiler warnings that kNone not handled | 
| cdalton | 9954bc3 | 2015-04-29 14:17:00 -0700 | [diff] [blame] | 3483 | } | 
|  | 3484 | } | 
|  | 3485 |  | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3486 | static GrPixelConfig gl_format_to_pixel_config(GrGLFormat format) { | 
| Robert Phillips | 9dbcdcc | 2019-05-13 10:40:06 -0400 | [diff] [blame] | 3487 | switch (format) { | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3488 | case GrGLFormat::kRGBA8:                return kRGBA_8888_GrPixelConfig; | 
|  | 3489 | case GrGLFormat::kRGB8:                 return kRGB_888_GrPixelConfig; | 
|  | 3490 | case GrGLFormat::kRG8:                  return kRG_88_GrPixelConfig; | 
|  | 3491 | case GrGLFormat::kBGRA8:                return kBGRA_8888_GrPixelConfig; | 
|  | 3492 | case GrGLFormat::kLUMINANCE8:           return kGray_8_GrPixelConfig; | 
|  | 3493 | case GrGLFormat::kSRGB8_ALPHA8:         return kSRGBA_8888_GrPixelConfig; | 
|  | 3494 | case GrGLFormat::kRGB10_A2:             return kRGBA_1010102_GrPixelConfig; | 
|  | 3495 | case GrGLFormat::kRGB565:               return kRGB_565_GrPixelConfig; | 
|  | 3496 | case GrGLFormat::kRGBA4:                return kRGBA_4444_GrPixelConfig; | 
|  | 3497 | case GrGLFormat::kRGBA32F:              return kRGBA_float_GrPixelConfig; | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3498 | case GrGLFormat::kRGBA16F:              return kRGBA_half_GrPixelConfig; | 
| Robert Phillips | 429f0d3 | 2019-09-11 17:03:28 -0400 | [diff] [blame] | 3499 | case GrGLFormat::kR16:                  return kAlpha_16_GrPixelConfig; | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3500 | case GrGLFormat::kRG16:                 return kRG_1616_GrPixelConfig; | 
|  | 3501 | case GrGLFormat::kRGBA16:               return kRGBA_16161616_GrPixelConfig; | 
|  | 3502 | case GrGLFormat::kRG16F:                return kRG_half_GrPixelConfig; | 
|  | 3503 | case GrGLFormat::kUnknown:              return kUnknown_GrPixelConfig; | 
| Robert Phillips | 66a4603 | 2019-06-18 08:00:42 -0400 | [diff] [blame] | 3504 |  | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3505 | // Configs with multiple equivalent formats. | 
|  | 3506 |  | 
| Robert Phillips | ebab03f | 2019-07-22 08:48:18 -0400 | [diff] [blame] | 3507 | case GrGLFormat::kR16F:                 return kAlpha_half_GrPixelConfig; | 
|  | 3508 | case GrGLFormat::kLUMINANCE16F:         return kAlpha_half_GrPixelConfig; | 
|  | 3509 |  | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3510 | case GrGLFormat::kALPHA8:               return kAlpha_8_GrPixelConfig; | 
|  | 3511 | case GrGLFormat::kR8:                   return kAlpha_8_GrPixelConfig; | 
|  | 3512 |  | 
|  | 3513 | case GrGLFormat::kCOMPRESSED_RGB8_ETC2: return kRGB_ETC1_GrPixelConfig; | 
|  | 3514 | case GrGLFormat::kCOMPRESSED_ETC1_RGB8: return kRGB_ETC1_GrPixelConfig; | 
| Robert Phillips | 9dbcdcc | 2019-05-13 10:40:06 -0400 | [diff] [blame] | 3515 | } | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3516 | SkUNREACHABLE; | 
| Robert Phillips | 9dbcdcc | 2019-05-13 10:40:06 -0400 | [diff] [blame] | 3517 | } | 
|  | 3518 |  | 
| Robert Phillips | 57ef680 | 2019-09-23 10:12:47 -0400 | [diff] [blame] | 3519 | GrBackendTexture GrGLGpu::onCreateBackendTexture(int w, int h, | 
|  | 3520 | const GrBackendFormat& format, | 
|  | 3521 | GrMipMapped mipMapped, | 
|  | 3522 | GrRenderable renderable, | 
|  | 3523 | const SkPixmap srcData[], int numMipLevels, | 
|  | 3524 | const SkColor4f* color, | 
|  | 3525 | GrProtected isProtected) { | 
| Brian Salomon | 8a37583 | 2018-03-14 10:21:40 -0400 | [diff] [blame] | 3526 | this->handleDirtyContext(); | 
| Robert Phillips | 646f637 | 2018-09-25 09:31:10 -0400 | [diff] [blame] | 3527 |  | 
| Robert Phillips | 57ef680 | 2019-09-23 10:12:47 -0400 | [diff] [blame] | 3528 | SkDEBUGCODE(const GrCaps* caps = this->caps();) | 
|  | 3529 |  | 
|  | 3530 | // GrGpu::createBackendTexture should've ensured these conditions | 
|  | 3531 | SkASSERT(w >= 1 && w <= caps->maxTextureSize() && h >= 1 && h <= caps->maxTextureSize()); | 
|  | 3532 | SkASSERT(GrGpu::MipMapsAreCorrect(w, h, mipMapped, srcData, numMipLevels)); | 
|  | 3533 | SkASSERT(mipMapped == GrMipMapped::kNo || caps->mipMapSupport()); | 
|  | 3534 |  | 
| Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 3535 | GrGLFormat glFormat = format.asGLFormat(); | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3536 | if (glFormat == GrGLFormat::kUnknown) { | 
| Robert Phillips | 9dbcdcc | 2019-05-13 10:40:06 -0400 | [diff] [blame] | 3537 | return GrBackendTexture();  // invalid | 
|  | 3538 | } | 
|  | 3539 |  | 
| Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 3540 | // Compressed formats go through onCreateCompressedBackendTexture | 
|  | 3541 | SkASSERT(!GrGLFormatIsCompressed(glFormat)); | 
|  | 3542 |  | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3543 | GrPixelConfig config = gl_format_to_pixel_config(glFormat); | 
| Robert Phillips | 9dbcdcc | 2019-05-13 10:40:06 -0400 | [diff] [blame] | 3544 |  | 
| Brian Salomon | 5043f1f | 2019-07-11 21:27:54 -0400 | [diff] [blame] | 3545 | if (config == kUnknown_GrPixelConfig) { | 
| Robert Phillips | 9dbcdcc | 2019-05-13 10:40:06 -0400 | [diff] [blame] | 3546 | return GrBackendTexture();  // invalid | 
|  | 3547 | } | 
|  | 3548 |  | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 3549 | auto textureColorType = GrPixelConfigToColorType(config); | 
|  | 3550 |  | 
| Robert Phillips | 57ef680 | 2019-09-23 10:12:47 -0400 | [diff] [blame] | 3551 | // TODO: move the texturability check up to GrGpu::createBackendTexture and just assert here | 
| Greg Daniel | 7bfc913 | 2019-08-14 14:23:53 -0400 | [diff] [blame] | 3552 | if (!this->caps()->isFormatTexturableAndUploadable(textureColorType, format)) { | 
| Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 3553 | return GrBackendTexture();  // invalid | 
|  | 3554 | } | 
|  | 3555 |  | 
| Greg Daniel | 1550064 | 2019-06-27 03:05:55 +0000 | [diff] [blame] | 3556 | GrGLTextureInfo info; | 
|  | 3557 | GrGLTextureParameters::SamplerOverriddenState initialState; | 
|  | 3558 |  | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3559 | SkTDArray<GrMipLevel> texels; | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 3560 | SkAutoMalloc pixelStorage; | 
| Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 3561 |  | 
|  | 3562 | int mipLevelCount = 1; | 
|  | 3563 | if (srcData) { | 
|  | 3564 | mipLevelCount = numMipLevels; | 
|  | 3565 | texels.append(mipLevelCount); | 
|  | 3566 | for (int i = 0; i < mipLevelCount; ++i) { | 
|  | 3567 | texels[i] = { srcData[i].addr(), srcData[i].rowBytes() }; | 
|  | 3568 | } | 
|  | 3569 | } else if (color) { | 
|  | 3570 | if (GrMipMapped::kYes == mipMapped) { | 
|  | 3571 | mipLevelCount = SkMipMap::ComputeLevelCount(w, h) + 1; | 
| Robert Phillips | 57ef680 | 2019-09-23 10:12:47 -0400 | [diff] [blame] | 3572 | } | 
|  | 3573 |  | 
| Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 3574 | texels.append(mipLevelCount); | 
|  | 3575 | SkTArray<size_t> individualMipOffsets(mipLevelCount); | 
|  | 3576 |  | 
|  | 3577 | size_t bytesPerPixel = GrBytesPerPixel(config); | 
|  | 3578 |  | 
|  | 3579 | size_t totalSize = GrComputeTightCombinedBufferSize( | 
|  | 3580 | bytesPerPixel, w, h, &individualMipOffsets, mipLevelCount); | 
|  | 3581 |  | 
|  | 3582 | char* tmpPixels = (char*)pixelStorage.reset(totalSize); | 
|  | 3583 |  | 
|  | 3584 | GrFillInData(config, w, h, individualMipOffsets, tmpPixels, *color); | 
|  | 3585 | for (int i = 0; i < mipLevelCount; ++i) { | 
|  | 3586 | size_t offset = individualMipOffsets[i]; | 
|  | 3587 |  | 
|  | 3588 | int twoToTheMipLevel = 1 << i; | 
|  | 3589 | int currentWidth = SkTMax(1, w / twoToTheMipLevel); | 
|  | 3590 |  | 
|  | 3591 | texels[i] = {&(tmpPixels[offset]), currentWidth * bytesPerPixel}; | 
| Brian Salomon | bb8dde8 | 2019-06-27 10:52:13 -0400 | [diff] [blame] | 3592 | } | 
| Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 3593 | } | 
| Robert Phillips | 7f36798 | 2019-09-26 14:01:36 -0400 | [diff] [blame^] | 3594 |  | 
| Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 3595 | GrSurfaceDesc desc; | 
|  | 3596 | desc.fWidth = w; | 
|  | 3597 | desc.fHeight = h; | 
|  | 3598 | desc.fConfig = config; | 
| Robert Phillips | 57ef680 | 2019-09-23 10:12:47 -0400 | [diff] [blame] | 3599 |  | 
| Robert Phillips | d34691b | 2019-09-24 13:38:43 -0400 | [diff] [blame] | 3600 | info.fTarget = GR_GL_TEXTURE_2D; | 
|  | 3601 | info.fFormat = GrGLFormatToEnum(glFormat); | 
|  | 3602 | info.fID = this->createTexture2D({desc.fWidth, desc.fHeight}, glFormat, renderable, | 
|  | 3603 | &initialState, SkTMax(1, texels.count())); | 
|  | 3604 | if (!info.fID) { | 
|  | 3605 | return GrBackendTexture();  // invalid | 
|  | 3606 | } | 
|  | 3607 | auto srcColorType = GrPixelConfigToColorType(desc.fConfig); | 
|  | 3608 | if (!texels.empty() && | 
|  | 3609 | !this->uploadTexData(glFormat, textureColorType, desc.fWidth, desc.fHeight, | 
|  | 3610 | GR_GL_TEXTURE_2D, 0, 0, desc.fWidth, desc.fHeight, srcColorType, | 
|  | 3611 | texels.begin(), texels.count())) { | 
|  | 3612 | GL_CALL(DeleteTextures(1, &info.fID)); | 
|  | 3613 | return GrBackendTexture(); | 
| Robert Phillips | e3bd673 | 2019-05-29 14:20:35 -0400 | [diff] [blame] | 3614 | } | 
| Robert Phillips | b04b694 | 2019-05-21 17:24:31 -0400 | [diff] [blame] | 3615 |  | 
| Robert Phillips | e8fabb2 | 2018-02-04 14:33:21 -0500 | [diff] [blame] | 3616 | // unbind the texture from the texture unit to avoid asserts | 
|  | 3617 | GL_CALL(BindTexture(info.fTarget, 0)); | 
|  | 3618 |  | 
| Brian Salomon | e2826ab | 2019-06-04 15:58:31 -0400 | [diff] [blame] | 3619 | auto parameters = sk_make_sp<GrGLTextureParameters>(); | 
|  | 3620 | parameters->set(&initialState, GrGLTextureParameters::NonsamplerState(), | 
|  | 3621 | fResetTimestampForTextureParameters); | 
| Robert Phillips | 62221e7 | 2019-07-24 15:07:38 -0400 | [diff] [blame] | 3622 |  | 
|  | 3623 | return GrBackendTexture(w, h, mipMapped, info, std::move(parameters)); | 
| Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 3624 | } | 
|  | 3625 |  | 
| Robert Phillips | f0313ee | 2019-05-21 13:51:11 -0400 | [diff] [blame] | 3626 | void GrGLGpu::deleteBackendTexture(const GrBackendTexture& tex) { | 
| Robert Phillips | f0ced62 | 2019-05-16 09:06:25 -0400 | [diff] [blame] | 3627 | SkASSERT(GrBackendApi::kOpenGL == tex.backend()); | 
|  | 3628 |  | 
|  | 3629 | GrGLTextureInfo info; | 
|  | 3630 | if (tex.getGLTextureInfo(&info)) { | 
|  | 3631 | GL_CALL(DeleteTextures(1, &info.fID)); | 
|  | 3632 | } | 
|  | 3633 | } | 
|  | 3634 |  | 
|  | 3635 | #if GR_TEST_UTILS | 
|  | 3636 |  | 
| Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 3637 | bool GrGLGpu::isTestingOnlyBackendTexture(const GrBackendTexture& tex) const { | 
| Greg Daniel | bdf12ad | 2018-10-12 09:31:11 -0400 | [diff] [blame] | 3638 | SkASSERT(GrBackendApi::kOpenGL == tex.backend()); | 
| Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 3639 |  | 
| Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 3640 | GrGLTextureInfo info; | 
|  | 3641 | if (!tex.getGLTextureInfo(&info)) { | 
| Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 3642 | return false; | 
|  | 3643 | } | 
|  | 3644 |  | 
|  | 3645 | GrGLboolean result; | 
| Greg Daniel | 52e16d9 | 2018-04-10 09:34:07 -0400 | [diff] [blame] | 3646 | GL_CALL_RET(result, IsTexture(info.fID)); | 
| Robert Phillips | d21b2a5 | 2017-12-12 13:01:25 -0500 | [diff] [blame] | 3647 |  | 
|  | 3648 | return (GR_GL_TRUE == result); | 
|  | 3649 | } | 
|  | 3650 |  | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3651 | GrBackendRenderTarget GrGLGpu::createTestingOnlyBackendRenderTarget(int w, int h, | 
| Brian Osman | 2d010b6 | 2018-08-09 10:55:09 -0400 | [diff] [blame] | 3652 | GrColorType colorType) { | 
| Greg Daniel | 92cbf3f | 2018-04-12 16:50:17 -0400 | [diff] [blame] | 3653 | if (w > this->caps()->maxRenderTargetSize() || h > this->caps()->maxRenderTargetSize()) { | 
|  | 3654 | return GrBackendRenderTarget();  // invalid | 
|  | 3655 | } | 
| Brian Salomon | 8a37583 | 2018-03-14 10:21:40 -0400 | [diff] [blame] | 3656 | this->handleDirtyContext(); | 
| Greg Daniel | 0258c90 | 2019-08-01 13:08:33 -0400 | [diff] [blame] | 3657 | auto format = this->glCaps().getFormatFromColorType(colorType); | 
| Greg Daniel | 900583a | 2019-08-06 12:05:31 -0400 | [diff] [blame] | 3658 | if (!this->glCaps().isFormatRenderable(format, 1)) { | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3659 | return {}; | 
|  | 3660 | } | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3661 | bool useTexture = format == GrGLFormat::kBGRA8; | 
| Brian Salomon | f6da146 | 2019-07-11 14:21:59 -0400 | [diff] [blame] | 3662 | int sFormatIdx = this->getCompatibleStencilIndex(format); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3663 | if (sFormatIdx < 0) { | 
|  | 3664 | return {}; | 
|  | 3665 | } | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3666 | GrGLuint colorID = 0; | 
|  | 3667 | GrGLuint stencilID = 0; | 
|  | 3668 | auto deleteIDs = [&] { | 
|  | 3669 | if (colorID) { | 
|  | 3670 | if (useTexture) { | 
|  | 3671 | GL_CALL(DeleteTextures(1, &colorID)); | 
|  | 3672 | } else { | 
|  | 3673 | GL_CALL(DeleteRenderbuffers(1, &colorID)); | 
|  | 3674 | } | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3675 | } | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3676 | if (stencilID) { | 
|  | 3677 | GL_CALL(DeleteRenderbuffers(1, &stencilID)); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3678 | } | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3679 | }; | 
|  | 3680 |  | 
|  | 3681 | if (useTexture) { | 
|  | 3682 | GL_CALL(GenTextures(1, &colorID)); | 
|  | 3683 | } else { | 
|  | 3684 | GL_CALL(GenRenderbuffers(1, &colorID)); | 
|  | 3685 | } | 
|  | 3686 | GL_CALL(GenRenderbuffers(1, &stencilID)); | 
|  | 3687 | if (!stencilID || !colorID) { | 
|  | 3688 | deleteIDs(); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3689 | return {}; | 
|  | 3690 | } | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3691 |  | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3692 | GrGLFramebufferInfo info; | 
|  | 3693 | info.fFBOID = 0; | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3694 | info.fFormat = GrGLFormatToEnum(format); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3695 | GL_CALL(GenFramebuffers(1, &info.fFBOID)); | 
|  | 3696 | if (!info.fFBOID) { | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3697 | deleteIDs(); | 
|  | 3698 | return {}; | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3699 | } | 
|  | 3700 |  | 
|  | 3701 | this->invalidateBoundRenderTarget(); | 
|  | 3702 |  | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 3703 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, info.fFBOID); | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3704 | if (useTexture) { | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3705 | GrGLTextureParameters::SamplerOverriddenState initialState; | 
|  | 3706 | colorID = this->createTexture2D({w, h}, format, GrRenderable::kYes, &initialState, 1); | 
|  | 3707 | if (!colorID) { | 
|  | 3708 | deleteIDs(); | 
|  | 3709 | return {}; | 
|  | 3710 | } | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3711 | GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0, GR_GL_TEXTURE_2D, | 
|  | 3712 | colorID, 0)); | 
|  | 3713 | } else { | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3714 | GrGLenum renderBufferFormat = this->glCaps().getRenderbufferInternalFormat(format); | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3715 | GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, colorID)); | 
|  | 3716 | GL_ALLOC_CALL(this->glInterface(), | 
| Brian Salomon | d2a8ae2 | 2019-09-10 16:03:59 -0400 | [diff] [blame] | 3717 | RenderbufferStorage(GR_GL_RENDERBUFFER, renderBufferFormat, w, h)); | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3718 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_COLOR_ATTACHMENT0, | 
|  | 3719 | GR_GL_RENDERBUFFER, colorID)); | 
|  | 3720 | } | 
|  | 3721 | GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, stencilID)); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3722 | auto stencilBufferFormat = this->glCaps().stencilFormats()[sFormatIdx].fInternalFormat; | 
|  | 3723 | GL_ALLOC_CALL(this->glInterface(), | 
|  | 3724 | RenderbufferStorage(GR_GL_RENDERBUFFER, stencilBufferFormat, w, h)); | 
|  | 3725 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_STENCIL_ATTACHMENT, GR_GL_RENDERBUFFER, | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3726 | stencilID)); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3727 | if (this->glCaps().stencilFormats()[sFormatIdx].fPacked) { | 
|  | 3728 | GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER, GR_GL_DEPTH_ATTACHMENT, | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3729 | GR_GL_RENDERBUFFER, stencilID)); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3730 | } | 
|  | 3731 |  | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3732 | // We don't want to have to recover the renderbuffer/texture IDs later to delete them. OpenGL | 
|  | 3733 | // has this rule that if a renderbuffer/texture is deleted and a FBO other than the current FBO | 
|  | 3734 | // has the RB attached then deletion is delayed. So we unbind the FBO here and delete the | 
|  | 3735 | // renderbuffers/texture. | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 3736 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, 0); | 
| Brian Salomon | 93348dd | 2018-08-29 12:56:23 -0400 | [diff] [blame] | 3737 | deleteIDs(); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3738 |  | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 3739 | this->bindFramebuffer(GR_GL_FRAMEBUFFER, info.fFBOID); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3740 | GrGLenum status; | 
|  | 3741 | GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER)); | 
|  | 3742 | if (GR_GL_FRAMEBUFFER_COMPLETE != status) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 3743 | this->deleteFramebuffer(info.fFBOID); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3744 | return {}; | 
|  | 3745 | } | 
|  | 3746 | auto stencilBits = SkToInt(this->glCaps().stencilFormats()[sFormatIdx].fStencilBits); | 
| Robert Phillips | 62221e7 | 2019-07-24 15:07:38 -0400 | [diff] [blame] | 3747 |  | 
| Greg Daniel | 108bb23 | 2018-07-03 16:18:29 -0400 | [diff] [blame] | 3748 | GrBackendRenderTarget beRT = GrBackendRenderTarget(w, h, 1, stencilBits, info); | 
| Robert Phillips | 62221e7 | 2019-07-24 15:07:38 -0400 | [diff] [blame] | 3749 | SkASSERT(this->caps()->areColorTypeAndFormatCompatible(colorType, beRT.getBackendFormat())); | 
| Greg Daniel | 108bb23 | 2018-07-03 16:18:29 -0400 | [diff] [blame] | 3750 | return beRT; | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3751 | } | 
|  | 3752 |  | 
|  | 3753 | void GrGLGpu::deleteTestingOnlyBackendRenderTarget(const GrBackendRenderTarget& backendRT) { | 
| Greg Daniel | bdf12ad | 2018-10-12 09:31:11 -0400 | [diff] [blame] | 3754 | SkASSERT(GrBackendApi::kOpenGL == backendRT.backend()); | 
| Greg Daniel | 323fbcf | 2018-04-10 13:46:30 -0400 | [diff] [blame] | 3755 | GrGLFramebufferInfo info; | 
|  | 3756 | if (backendRT.getGLFramebufferInfo(&info)) { | 
|  | 3757 | if (info.fFBOID) { | 
| Adrienne Walker | 4ee8851 | 2018-05-17 11:37:14 -0700 | [diff] [blame] | 3758 | this->deleteFramebuffer(info.fFBOID); | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3759 | } | 
|  | 3760 | } | 
| joshualitt | 8fd844f | 2015-12-02 13:36:47 -0800 | [diff] [blame] | 3761 | } | 
|  | 3762 |  | 
| Greg Daniel | 26b50a4 | 2018-03-08 09:49:58 -0500 | [diff] [blame] | 3763 | void GrGLGpu::testingOnly_flushGpuAndSync() { | 
|  | 3764 | GL_CALL(Finish()); | 
|  | 3765 | } | 
| Brian Salomon | f865b05 | 2018-03-09 09:01:53 -0500 | [diff] [blame] | 3766 | #endif | 
| Greg Daniel | 26b50a4 | 2018-03-08 09:49:58 -0500 | [diff] [blame] | 3767 |  | 
| bsalomon@google.com | 880b8fc | 2013-02-19 20:17:28 +0000 | [diff] [blame] | 3768 | /////////////////////////////////////////////////////////////////////////////// | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3769 |  | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 3770 | GrGLAttribArrayState* GrGLGpu::HWVertexArrayState::bindInternalVertexArray(GrGLGpu* gpu, | 
| csmartdalton | 485a120 | 2016-07-13 10:16:32 -0700 | [diff] [blame] | 3771 | const GrBuffer* ibuf) { | 
| robertphillips@google.com | 4f65a27 | 2013-03-26 19:40:46 +0000 | [diff] [blame] | 3772 | GrGLAttribArrayState* attribState; | 
|  | 3773 |  | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 3774 | if (gpu->glCaps().isCoreProfile()) { | 
|  | 3775 | if (!fCoreProfileVertexArray) { | 
| bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 3776 | GrGLuint arrayID; | 
|  | 3777 | GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID)); | 
|  | 3778 | int attrCount = gpu->glCaps().maxVertexAttributes(); | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 3779 | fCoreProfileVertexArray = new GrGLVertexArray(arrayID, attrCount); | 
| bsalomon@google.com | 880b8fc | 2013-02-19 20:17:28 +0000 | [diff] [blame] | 3780 | } | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 3781 | if (ibuf) { | 
|  | 3782 | attribState = fCoreProfileVertexArray->bindWithIndexBuffer(gpu, ibuf); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3783 | } else { | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 3784 | attribState = fCoreProfileVertexArray->bind(gpu); | 
| bsalomon | 6df8640 | 2015-06-01 10:41:49 -0700 | [diff] [blame] | 3785 | } | 
| bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 3786 | } else { | 
| cdalton | e2e71c2 | 2016-04-07 18:13:29 -0700 | [diff] [blame] | 3787 | if (ibuf) { | 
|  | 3788 | // bindBuffer implicitly binds VAO 0 when binding an index buffer. | 
| Brian Salomon | ae64c19 | 2019-02-05 09:41:37 -0500 | [diff] [blame] | 3789 | gpu->bindBuffer(GrGpuBufferType::kIndex, ibuf); | 
| bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 3790 | } else { | 
|  | 3791 | this->setVertexArrayID(gpu, 0); | 
|  | 3792 | } | 
|  | 3793 | int attrCount = gpu->glCaps().maxVertexAttributes(); | 
|  | 3794 | if (fDefaultVertexArrayAttribState.count() != attrCount) { | 
|  | 3795 | fDefaultVertexArrayAttribState.resize(attrCount); | 
|  | 3796 | } | 
|  | 3797 | attribState = &fDefaultVertexArrayAttribState; | 
| bsalomon@google.com | 880b8fc | 2013-02-19 20:17:28 +0000 | [diff] [blame] | 3798 | } | 
| bsalomon@google.com | 6918d48 | 2013-03-07 19:09:11 +0000 | [diff] [blame] | 3799 | return attribState; | 
| bsalomon@google.com | 7acdb8e | 2011-02-11 14:07:02 +0000 | [diff] [blame] | 3800 | } | 
| bsalomon | e179a91 | 2016-01-20 06:18:10 -0800 | [diff] [blame] | 3801 |  | 
| Brian Salomon | f9a1fdf | 2019-05-09 10:30:12 -0400 | [diff] [blame] | 3802 | void GrGLGpu::onFinishFlush(GrSurfaceProxy*[], int, SkSurface::BackendSurfaceAccess access, | 
| Greg Daniel | 797efca | 2019-05-09 14:04:20 -0400 | [diff] [blame] | 3803 | const GrFlushInfo& info, const GrPrepareForExternalIORequests&) { | 
| Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 3804 | // If we inserted semaphores during the flush, we need to call GLFlush. | 
| Brian Salomon | 9ff5acb | 2019-05-08 09:04:47 -0400 | [diff] [blame] | 3805 | bool insertedSemaphore = info.fNumSemaphores > 0 && this->caps()->semaphoreSupport(); | 
| Brian Salomon | b0d8b76 | 2019-05-06 16:58:22 -0400 | [diff] [blame] | 3806 | // We call finish if the client told us to sync or if we have a finished proc but don't support | 
|  | 3807 | // GLsync objects. | 
|  | 3808 | bool finish = (info.fFlags & kSyncCpu_GrFlushFlag) || | 
|  | 3809 | (info.fFinishedProc && !this->caps()->fenceSyncSupport()); | 
|  | 3810 | if (finish) { | 
| Greg Daniel | bae7121 | 2019-03-01 15:24:35 -0500 | [diff] [blame] | 3811 | GL_CALL(Finish()); | 
| Brian Salomon | b0d8b76 | 2019-05-06 16:58:22 -0400 | [diff] [blame] | 3812 | // After a finish everything previously sent to GL is done. | 
|  | 3813 | for (const auto& cb : fFinishCallbacks) { | 
|  | 3814 | cb.fCallback(cb.fContext); | 
|  | 3815 | this->deleteSync(cb.fSync); | 
|  | 3816 | } | 
|  | 3817 | fFinishCallbacks.clear(); | 
|  | 3818 | if (info.fFinishedProc) { | 
|  | 3819 | info.fFinishedProc(info.fFinishedContext); | 
|  | 3820 | } | 
|  | 3821 | } else { | 
|  | 3822 | if (info.fFinishedProc) { | 
|  | 3823 | FinishCallback callback; | 
|  | 3824 | callback.fCallback = info.fFinishedProc; | 
|  | 3825 | callback.fContext = info.fFinishedContext; | 
|  | 3826 | callback.fSync = (GrGLsync)this->insertFence(); | 
|  | 3827 | fFinishCallbacks.push_back(callback); | 
|  | 3828 | GL_CALL(Flush()); | 
|  | 3829 | } else if (insertedSemaphore) { | 
|  | 3830 | // Must call flush after semaphores in case they are waited on another GL context. | 
|  | 3831 | GL_CALL(Flush()); | 
|  | 3832 | } | 
|  | 3833 | // See if any previously inserted finish procs are good to go. | 
|  | 3834 | this->checkFinishProcs(); | 
| Greg Daniel | a3aa75a | 2019-04-12 14:24:55 -0400 | [diff] [blame] | 3835 | } | 
| Greg Daniel | 5131678 | 2017-08-02 15:10:09 +0000 | [diff] [blame] | 3836 | } | 
|  | 3837 |  | 
| Greg Daniel | 2d41d0d | 2019-08-26 11:08:51 -0400 | [diff] [blame] | 3838 | void GrGLGpu::submit(GrOpsRenderPass* renderPass) { | 
|  | 3839 | // The GrGLOpsRenderPass doesn't buffer ops so there is nothing to do here | 
|  | 3840 | SkASSERT(fCachedOpsRenderPass.get() == renderPass); | 
|  | 3841 | fCachedOpsRenderPass->reset(); | 
| Robert Phillips | 5b5d84c | 2018-08-09 15:12:18 -0400 | [diff] [blame] | 3842 | } | 
|  | 3843 |  | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3844 | GrFence SK_WARN_UNUSED_RESULT GrGLGpu::insertFence() { | 
| Greg Daniel | c64ee46 | 2017-06-15 16:59:49 -0400 | [diff] [blame] | 3845 | SkASSERT(this->caps()->fenceSyncSupport()); | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3846 | GrGLsync sync; | 
|  | 3847 | GL_CALL_RET(sync, FenceSync(GR_GL_SYNC_GPU_COMMANDS_COMPLETE, 0)); | 
|  | 3848 | GR_STATIC_ASSERT(sizeof(GrFence) >= sizeof(GrGLsync)); | 
|  | 3849 | return (GrFence)sync; | 
| jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 3850 | } | 
|  | 3851 |  | 
| Brian Salomon | b0d8b76 | 2019-05-06 16:58:22 -0400 | [diff] [blame] | 3852 | bool GrGLGpu::waitSync(GrGLsync sync, uint64_t timeout, bool flush) { | 
|  | 3853 | GrGLbitfield flags = flush ? GR_GL_SYNC_FLUSH_COMMANDS_BIT : 0; | 
| jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 3854 | GrGLenum result; | 
| Brian Salomon | b0d8b76 | 2019-05-06 16:58:22 -0400 | [diff] [blame] | 3855 | GL_CALL_RET(result, ClientWaitSync(sync, flags, timeout)); | 
|  | 3856 | return (GR_GL_CONDITION_SATISFIED == result || GR_GL_ALREADY_SIGNALED == result); | 
|  | 3857 | } | 
|  | 3858 |  | 
|  | 3859 | bool GrGLGpu::waitFence(GrFence fence, uint64_t timeout) { | 
|  | 3860 | return this->waitSync((GrGLsync)fence, timeout, /* flush = */ true); | 
| jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 3861 | } | 
|  | 3862 |  | 
|  | 3863 | void GrGLGpu::deleteFence(GrFence fence) const { | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3864 | this->deleteSync((GrGLsync)fence); | 
|  | 3865 | } | 
|  | 3866 |  | 
| Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 3867 | sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT GrGLGpu::makeSemaphore(bool isOwned) { | 
| Brian Salomon | 9ff5acb | 2019-05-08 09:04:47 -0400 | [diff] [blame] | 3868 | SkASSERT(this->caps()->semaphoreSupport()); | 
| Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 3869 | return GrGLSemaphore::Make(this, isOwned); | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3870 | } | 
|  | 3871 |  | 
| Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 3872 | sk_sp<GrSemaphore> GrGLGpu::wrapBackendSemaphore(const GrBackendSemaphore& semaphore, | 
|  | 3873 | GrResourceProvider::SemaphoreWrapType wrapType, | 
|  | 3874 | GrWrapOwnership ownership) { | 
| Brian Salomon | 9ff5acb | 2019-05-08 09:04:47 -0400 | [diff] [blame] | 3875 | SkASSERT(this->caps()->semaphoreSupport()); | 
| Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 3876 | return GrGLSemaphore::MakeWrapped(this, semaphore.glSync(), ownership); | 
|  | 3877 | } | 
|  | 3878 |  | 
| Greg Daniel | 858e12c | 2018-12-06 11:11:37 -0500 | [diff] [blame] | 3879 | void GrGLGpu::insertSemaphore(sk_sp<GrSemaphore> semaphore) { | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3880 | GrGLSemaphore* glSem = static_cast<GrGLSemaphore*>(semaphore.get()); | 
|  | 3881 |  | 
| Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 3882 | GrGLsync sync; | 
|  | 3883 | GL_CALL_RET(sync, FenceSync(GR_GL_SYNC_GPU_COMMANDS_COMPLETE, 0)); | 
|  | 3884 | glSem->setSync(sync); | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3885 | } | 
|  | 3886 |  | 
| Greg Daniel | 48661b8 | 2018-01-22 16:11:35 -0500 | [diff] [blame] | 3887 | void GrGLGpu::waitSemaphore(sk_sp<GrSemaphore> semaphore) { | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3888 | GrGLSemaphore* glSem = static_cast<GrGLSemaphore*>(semaphore.get()); | 
|  | 3889 |  | 
|  | 3890 | GL_CALL(WaitSync(glSem->sync(), 0, GR_GL_TIMEOUT_IGNORED)); | 
|  | 3891 | } | 
|  | 3892 |  | 
| Brian Salomon | b0d8b76 | 2019-05-06 16:58:22 -0400 | [diff] [blame] | 3893 | void GrGLGpu::checkFinishProcs() { | 
|  | 3894 | // Bail after the first unfinished sync since we expect they signal in the order inserted. | 
|  | 3895 | while (!fFinishCallbacks.empty() && this->waitSync(fFinishCallbacks.front().fSync, | 
|  | 3896 | /* timeout = */ 0, /* flush  = */ false)) { | 
|  | 3897 | fFinishCallbacks.front().fCallback(fFinishCallbacks.front().fContext); | 
|  | 3898 | this->deleteSync(fFinishCallbacks.front().fSync); | 
|  | 3899 | fFinishCallbacks.pop_front(); | 
|  | 3900 | } | 
|  | 3901 | } | 
|  | 3902 |  | 
| Greg Daniel | 6be3523 | 2017-03-01 17:01:09 -0500 | [diff] [blame] | 3903 | void GrGLGpu::deleteSync(GrGLsync sync) const { | 
|  | 3904 | GL_CALL(DeleteSync(sync)); | 
| jvanverth | 84741b3 | 2016-09-30 08:39:02 -0700 | [diff] [blame] | 3905 | } | 
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 3906 |  | 
| Robert Phillips | 65a88fa | 2017-08-08 08:36:22 -0400 | [diff] [blame] | 3907 | void GrGLGpu::insertEventMarker(const char* msg) { | 
|  | 3908 | GL_CALL(InsertEventMarker(strlen(msg), msg)); | 
|  | 3909 | } | 
|  | 3910 |  | 
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 3911 | sk_sp<GrSemaphore> GrGLGpu::prepareTextureForCrossContextUsage(GrTexture* texture) { | 
|  | 3912 | // Set up a semaphore to be signaled once the data is ready, and flush GL | 
| Greg Daniel | a5cb781 | 2017-06-16 09:45:32 -0400 | [diff] [blame] | 3913 | sk_sp<GrSemaphore> semaphore = this->makeSemaphore(true); | 
| Greg Daniel | 858e12c | 2018-12-06 11:11:37 -0500 | [diff] [blame] | 3914 | this->insertSemaphore(semaphore); | 
|  | 3915 | // We must call flush here to make sure the GrGLSync object gets created and sent to the gpu. | 
|  | 3916 | GL_CALL(Flush()); | 
| Brian Osman | 13dddce | 2017-05-09 13:19:50 -0400 | [diff] [blame] | 3917 |  | 
|  | 3918 | return semaphore; | 
|  | 3919 | } | 
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 3920 |  | 
|  | 3921 | int GrGLGpu::TextureToCopyProgramIdx(GrTexture* texture) { | 
| Brian Salomon | 60dd8c7 | 2018-07-30 10:24:13 -0400 | [diff] [blame] | 3922 | switch (GrSLCombinedSamplerTypeForTextureType(texture->texturePriv().textureType())) { | 
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 3923 | case kTexture2DSampler_GrSLType: | 
|  | 3924 | return 0; | 
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 3925 | case kTexture2DRectSampler_GrSLType: | 
| Brian Salomon | 5711133 | 2018-02-05 15:55:54 -0500 | [diff] [blame] | 3926 | return 1; | 
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 3927 | case kTextureExternalSampler_GrSLType: | 
| Brian Salomon | 5711133 | 2018-02-05 15:55:54 -0500 | [diff] [blame] | 3928 | return 2; | 
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 3929 | default: | 
| Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 3930 | SK_ABORT("Unexpected samper type"); | 
| Robert Phillips | 646e429 | 2017-06-13 12:44:56 -0400 | [diff] [blame] | 3931 | } | 
|  | 3932 | } | 
| Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 3933 |  | 
| Kevin Lubick | f4def34 | 2018-10-04 12:52:50 -0400 | [diff] [blame] | 3934 | #ifdef SK_ENABLE_DUMP_GPU | 
| Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 3935 | #include "src/utils/SkJSONWriter.h" | 
| Brian Osman | 71a1889 | 2017-08-10 10:23:25 -0400 | [diff] [blame] | 3936 | void GrGLGpu::onDumpJSON(SkJSONWriter* writer) const { | 
|  | 3937 | // We are called by the base class, which has already called beginObject(). We choose to nest | 
|  | 3938 | // all of our caps information in a named sub-object. | 
|  | 3939 | writer->beginObject("GL GPU"); | 
|  | 3940 |  | 
|  | 3941 | const GrGLubyte* str; | 
|  | 3942 | GL_CALL_RET(str, GetString(GR_GL_VERSION)); | 
|  | 3943 | writer->appendString("GL_VERSION", (const char*)(str)); | 
|  | 3944 | GL_CALL_RET(str, GetString(GR_GL_RENDERER)); | 
|  | 3945 | writer->appendString("GL_RENDERER", (const char*)(str)); | 
|  | 3946 | GL_CALL_RET(str, GetString(GR_GL_VENDOR)); | 
|  | 3947 | writer->appendString("GL_VENDOR", (const char*)(str)); | 
|  | 3948 | GL_CALL_RET(str, GetString(GR_GL_SHADING_LANGUAGE_VERSION)); | 
|  | 3949 | writer->appendString("GL_SHADING_LANGUAGE_VERSION", (const char*)(str)); | 
|  | 3950 |  | 
|  | 3951 | writer->appendName("extensions"); | 
|  | 3952 | glInterface()->fExtensions.dumpJSON(writer); | 
|  | 3953 |  | 
|  | 3954 | writer->endObject(); | 
|  | 3955 | } | 
| Kevin Lubick | f4def34 | 2018-10-04 12:52:50 -0400 | [diff] [blame] | 3956 | #endif |