blob: 1a9566ae3820f734bae4fb746e8c8330f5f78d83 [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * 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.comac10a2d2010-12-22 21:39:39 +00006 */
7
epoger@google.comec3ed6a2011-07-28 14:26:00 +00008
jvanverth39edf762014-12-22 11:44:19 -08009#include "GrGLGpu.h"
jvanverthcba99b82015-06-24 06:59:57 -070010#include "GrGLGLSL.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070011#include "GrGLStencilAttachment.h"
bsalomon37dd3312014-11-03 08:47:23 -080012#include "GrGLTextureRenderTarget.h"
bsalomon3582d3e2015-02-13 14:20:05 -080013#include "GrGpuResourcePriv.h"
egdaniel8dd688b2015-01-22 10:16:09 -080014#include "GrPipeline.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080015#include "GrRenderTargetPriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070016#include "GrSurfacePriv.h"
bsalomon@google.coma3201942012-06-21 19:58:20 +000017#include "GrTemplates.h"
bsalomonafbf2d62014-09-30 12:18:44 -070018#include "GrTexturePriv.h"
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +000019#include "GrTypes.h"
bsalomoncb8979d2015-05-05 09:51:38 -070020#include "GrVertices.h"
bsalomon6df86402015-06-01 10:41:49 -070021#include "builders/GrGLShaderStringBuilder.h"
jvanverthcba99b82015-06-24 06:59:57 -070022#include "glsl/GrGLSLCaps.h"
commit-bot@chromium.org32184d82013-10-09 15:14:18 +000023#include "SkStrokeRec.h"
bsalomon@google.com3582bf92011-06-30 21:32:31 +000024#include "SkTemplates.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000025
bsalomon@google.com0b77d682011-08-19 13:28:54 +000026#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +000027#define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->glInterface(), RET, X)
bsalomon@google.com0b77d682011-08-19 13:28:54 +000028
reed@google.comac10a2d2010-12-22 21:39:39 +000029#define SKIP_CACHE_CHECK true
30
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000031#if GR_GL_CHECK_ALLOC_WITH_GET_ERROR
32 #define CLEAR_ERROR_BEFORE_ALLOC(iface) GrGLClearErr(iface)
33 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL_NOERRCHECK(iface, call)
34 #define CHECK_ALLOC_ERROR(iface) GR_GL_GET_ERROR(iface)
rmistry@google.comfbfcd562012-08-23 18:09:54 +000035#else
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000036 #define CLEAR_ERROR_BEFORE_ALLOC(iface)
37 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL(iface, call)
38 #define CHECK_ALLOC_ERROR(iface) GR_GL_NO_ERROR
39#endif
40
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +000041
42///////////////////////////////////////////////////////////////////////////////
43
cdaltonb85a0aa2014-07-21 15:32:44 -070044
cdalton8917d622015-05-06 13:40:21 -070045static const GrGLenum gXfermodeEquation2Blend[] = {
46 // Basic OpenGL blend equations.
47 GR_GL_FUNC_ADD,
48 GR_GL_FUNC_SUBTRACT,
49 GR_GL_FUNC_REVERSE_SUBTRACT,
50
51 // GL_KHR_blend_equation_advanced.
52 GR_GL_SCREEN,
53 GR_GL_OVERLAY,
54 GR_GL_DARKEN,
55 GR_GL_LIGHTEN,
56 GR_GL_COLORDODGE,
57 GR_GL_COLORBURN,
58 GR_GL_HARDLIGHT,
59 GR_GL_SOFTLIGHT,
60 GR_GL_DIFFERENCE,
61 GR_GL_EXCLUSION,
62 GR_GL_MULTIPLY,
63 GR_GL_HSL_HUE,
64 GR_GL_HSL_SATURATION,
65 GR_GL_HSL_COLOR,
66 GR_GL_HSL_LUMINOSITY
67};
68GR_STATIC_ASSERT(0 == kAdd_GrBlendEquation);
69GR_STATIC_ASSERT(1 == kSubtract_GrBlendEquation);
70GR_STATIC_ASSERT(2 == kReverseSubtract_GrBlendEquation);
71GR_STATIC_ASSERT(3 == kScreen_GrBlendEquation);
72GR_STATIC_ASSERT(4 == kOverlay_GrBlendEquation);
73GR_STATIC_ASSERT(5 == kDarken_GrBlendEquation);
74GR_STATIC_ASSERT(6 == kLighten_GrBlendEquation);
75GR_STATIC_ASSERT(7 == kColorDodge_GrBlendEquation);
76GR_STATIC_ASSERT(8 == kColorBurn_GrBlendEquation);
77GR_STATIC_ASSERT(9 == kHardLight_GrBlendEquation);
78GR_STATIC_ASSERT(10 == kSoftLight_GrBlendEquation);
79GR_STATIC_ASSERT(11 == kDifference_GrBlendEquation);
80GR_STATIC_ASSERT(12 == kExclusion_GrBlendEquation);
81GR_STATIC_ASSERT(13 == kMultiply_GrBlendEquation);
82GR_STATIC_ASSERT(14 == kHSLHue_GrBlendEquation);
83GR_STATIC_ASSERT(15 == kHSLSaturation_GrBlendEquation);
84GR_STATIC_ASSERT(16 == kHSLColor_GrBlendEquation);
85GR_STATIC_ASSERT(17 == kHSLLuminosity_GrBlendEquation);
bsalomonf7cc8772015-05-11 11:21:14 -070086GR_STATIC_ASSERT(SK_ARRAY_COUNT(gXfermodeEquation2Blend) == kGrBlendEquationCnt);
cdalton8917d622015-05-06 13:40:21 -070087
twiz@google.com0f31ca72011-03-18 17:38:11 +000088static const GrGLenum gXfermodeCoeff2Blend[] = {
89 GR_GL_ZERO,
90 GR_GL_ONE,
91 GR_GL_SRC_COLOR,
92 GR_GL_ONE_MINUS_SRC_COLOR,
93 GR_GL_DST_COLOR,
94 GR_GL_ONE_MINUS_DST_COLOR,
95 GR_GL_SRC_ALPHA,
96 GR_GL_ONE_MINUS_SRC_ALPHA,
97 GR_GL_DST_ALPHA,
98 GR_GL_ONE_MINUS_DST_ALPHA,
99 GR_GL_CONSTANT_COLOR,
100 GR_GL_ONE_MINUS_CONSTANT_COLOR,
101 GR_GL_CONSTANT_ALPHA,
102 GR_GL_ONE_MINUS_CONSTANT_ALPHA,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000103
104 // extended blend coeffs
105 GR_GL_SRC1_COLOR,
106 GR_GL_ONE_MINUS_SRC1_COLOR,
107 GR_GL_SRC1_ALPHA,
108 GR_GL_ONE_MINUS_SRC1_ALPHA,
reed@google.comac10a2d2010-12-22 21:39:39 +0000109};
110
bsalomon861e1032014-12-16 07:33:49 -0800111bool GrGLGpu::BlendCoeffReferencesConstant(GrBlendCoeff coeff) {
bsalomon@google.com080773c2011-03-15 19:09:25 +0000112 static const bool gCoeffReferencesBlendConst[] = {
113 false,
114 false,
115 false,
116 false,
117 false,
118 false,
119 false,
120 false,
121 false,
122 false,
123 true,
124 true,
125 true,
126 true,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000127
128 // extended blend coeffs
129 false,
130 false,
131 false,
132 false,
bsalomon@google.com080773c2011-03-15 19:09:25 +0000133 };
134 return gCoeffReferencesBlendConst[coeff];
bsalomonf7cc8772015-05-11 11:21:14 -0700135 GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gCoeffReferencesBlendConst));
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000136
bsalomon@google.com47059542012-06-06 20:51:20 +0000137 GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff);
138 GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff);
139 GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff);
140 GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff);
141 GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff);
142 GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff);
143 GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff);
144 GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff);
145 GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff);
146 GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff);
147 GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff);
148 GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff);
149 GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff);
150 GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000151
bsalomon@google.com47059542012-06-06 20:51:20 +0000152 GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff);
153 GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff);
154 GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff);
155 GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000156
157 // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope
bsalomonf7cc8772015-05-11 11:21:14 -0700158 GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gXfermodeCoeff2Blend));
bsalomon@google.com080773c2011-03-15 19:09:25 +0000159}
160
reed@google.comac10a2d2010-12-22 21:39:39 +0000161///////////////////////////////////////////////////////////////////////////////
162
bsalomon682c2692015-05-22 14:01:46 -0700163GrGpu* GrGLGpu::Create(GrBackendContext backendContext, const GrContextOptions& options,
164 GrContext* context) {
bsalomon424cc262015-05-22 10:37:30 -0700165 SkAutoTUnref<const GrGLInterface> glInterface(
166 reinterpret_cast<const GrGLInterface*>(backendContext));
167 if (!glInterface) {
168 glInterface.reset(GrGLDefaultInterface());
169 } else {
170 glInterface->ref();
171 }
172 if (!glInterface) {
173 return NULL;
174 }
bsalomon682c2692015-05-22 14:01:46 -0700175 GrGLContext* glContext = GrGLContext::Create(glInterface, options);
bsalomon424cc262015-05-22 10:37:30 -0700176 if (glContext) {
177 return SkNEW_ARGS(GrGLGpu, (glContext, context));
178 }
179 return NULL;
180}
181
rileya@google.come38160c2012-07-03 18:03:04 +0000182static bool gPrintStartupSpew;
bsalomon@google.com42ab7ea2011-01-19 17:19:40 +0000183
bsalomon424cc262015-05-22 10:37:30 -0700184GrGLGpu::GrGLGpu(GrGLContext* ctx, GrContext* context)
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000185 : GrGpu(context)
robertphillips@google.com6177e692013-02-28 20:16:25 +0000186 , fGLContext(ctx) {
bsalomon424cc262015-05-22 10:37:30 -0700187 SkASSERT(ctx);
188 fCaps.reset(SkRef(ctx->caps()));
bsalomon@google.combcce8922013-03-25 15:38:39 +0000189
bsalomon1c63bf62014-07-22 13:09:46 -0700190 fHWBoundTextureUniqueIDs.reset(this->glCaps().maxFragmentTextureUnits());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000191
bsalomon424cc262015-05-22 10:37:30 -0700192 GrGLClearErr(this->glInterface());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000193 if (gPrintStartupSpew) {
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000194 const GrGLubyte* vendor;
195 const GrGLubyte* renderer;
196 const GrGLubyte* version;
197 GL_CALL_RET(vendor, GetString(GR_GL_VENDOR));
198 GL_CALL_RET(renderer, GetString(GR_GL_RENDERER));
199 GL_CALL_RET(version, GetString(GR_GL_VERSION));
bsalomon861e1032014-12-16 07:33:49 -0800200 SkDebugf("------------------------- create GrGLGpu %p --------------\n",
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000201 this);
tfarina38406c82014-10-31 07:11:12 -0700202 SkDebugf("------ VENDOR %s\n", vendor);
203 SkDebugf("------ RENDERER %s\n", renderer);
204 SkDebugf("------ VERSION %s\n", version);
205 SkDebugf("------ EXTENSIONS\n");
bsalomon424cc262015-05-22 10:37:30 -0700206 this->glContext().extensions().print();
tfarina38406c82014-10-31 07:11:12 -0700207 SkDebugf("\n");
kkinnunen297aaf92015-02-19 06:32:12 -0800208 SkDebugf("%s", this->glCaps().dump().c_str());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000209 }
210
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000211 fProgramCache = SkNEW_ARGS(ProgramCache, (this));
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000212
joshualitt2dd1ae02014-12-03 06:24:10 -0800213 SkASSERT(this->glCaps().maxVertexAttributes() >= GrGeometryProcessor::kMaxVertexAttribs);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000214
bsalomon@google.comfe676522011-06-17 18:12:21 +0000215 fLastSuccessfulStencilFmtIdx = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000216 fHWProgramID = 0;
egdanield803f272015-03-18 13:01:52 -0700217 fTempSrcFBOID = 0;
218 fTempDstFBOID = 0;
219 fStencilClearFBOID = 0;
cdaltonc7103a12014-08-11 14:05:05 -0700220
jvanverthe9c0fc62015-04-29 11:18:05 -0700221 if (this->glCaps().shaderCaps()->pathRenderingSupport()) {
kkinnunen5b653572014-08-20 04:13:27 -0700222 fPathRendering.reset(new GrGLPathRendering(this));
cdaltonc7103a12014-08-11 14:05:05 -0700223 }
bsalomon6df86402015-06-01 10:41:49 -0700224
225 this->createCopyProgram();
reed@google.comac10a2d2010-12-22 21:39:39 +0000226}
227
bsalomon861e1032014-12-16 07:33:49 -0800228GrGLGpu::~GrGLGpu() {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000229 if (0 != fHWProgramID) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000230 // detach the current program so there is no confusion on OpenGL's part
231 // that we want it to be deleted
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000232 GL_CALL(UseProgram(0));
233 }
234
egdanield803f272015-03-18 13:01:52 -0700235 if (0 != fTempSrcFBOID) {
236 GL_CALL(DeleteFramebuffers(1, &fTempSrcFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -0800237 }
egdanield803f272015-03-18 13:01:52 -0700238 if (0 != fTempDstFBOID) {
239 GL_CALL(DeleteFramebuffers(1, &fTempDstFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -0800240 }
egdanield803f272015-03-18 13:01:52 -0700241 if (0 != fStencilClearFBOID) {
242 GL_CALL(DeleteFramebuffers(1, &fStencilClearFBOID));
bsalomondd3143b2015-02-23 09:27:45 -0800243 }
egdaniel0f5f9672015-02-03 11:10:51 -0800244
bsalomon6df86402015-06-01 10:41:49 -0700245 if (0 != fCopyProgram.fArrayBuffer) {
246 GL_CALL(DeleteBuffers(1, &fCopyProgram.fArrayBuffer));
247 }
248
249 if (0 != fCopyProgram.fProgram) {
250 GL_CALL(DeleteProgram(fCopyProgram.fProgram));
251 }
252
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000253 delete fProgramCache;
bsalomonc8dc1f72014-08-21 13:02:13 -0700254}
255
bsalomon861e1032014-12-16 07:33:49 -0800256void GrGLGpu::contextAbandoned() {
robertphillipse3371302014-09-17 06:01:06 -0700257 INHERITED::contextAbandoned();
bsalomonc8dc1f72014-08-21 13:02:13 -0700258 fProgramCache->abandon();
259 fHWProgramID = 0;
egdanield803f272015-03-18 13:01:52 -0700260 fTempSrcFBOID = 0;
261 fTempDstFBOID = 0;
262 fStencilClearFBOID = 0;
bsalomon6df86402015-06-01 10:41:49 -0700263 fCopyProgram.fArrayBuffer = 0;
264 fCopyProgram.fProgram = 0;
jvanverthe9c0fc62015-04-29 11:18:05 -0700265 if (this->glCaps().shaderCaps()->pathRenderingSupport()) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700266 this->glPathRendering()->abandonGpuResources();
267 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000268}
269
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000270///////////////////////////////////////////////////////////////////////////////
bsalomon861e1032014-12-16 07:33:49 -0800271GrPixelConfig GrGLGpu::preferredReadPixelsConfig(GrPixelConfig readConfig,
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000272 GrPixelConfig surfaceConfig) const {
bsalomon47c1ccb2015-06-24 15:04:13 -0700273 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == readConfig) {
274 return kBGRA_8888_GrPixelConfig;
275 } else if (kMesa_GrGLDriver == this->glContext().driver() &&
276 GrBytesPerPixel(readConfig) == 4 &&
277 GrPixelConfigSwapRAndB(readConfig) == surfaceConfig) {
278 // Mesa 3D takes a slow path on when reading back BGRA from an RGBA surface and vice-versa.
279 // Perhaps this should be guarded by some compiletime or runtime check.
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000280 return surfaceConfig;
bsalomon47c1ccb2015-06-24 15:04:13 -0700281 } else if (readConfig == kBGRA_8888_GrPixelConfig
282 && !this->glCaps().readPixelsSupported(
283 this->glInterface(),
284 GR_GL_BGRA,
285 GR_GL_UNSIGNED_BYTE,
286 surfaceConfig
287 )) {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000288 return kRGBA_8888_GrPixelConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000289 } else {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000290 return readConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000291 }
292}
293
bsalomon861e1032014-12-16 07:33:49 -0800294GrPixelConfig GrGLGpu::preferredWritePixelsConfig(GrPixelConfig writeConfig,
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000295 GrPixelConfig surfaceConfig) const {
bsalomon47c1ccb2015-06-24 15:04:13 -0700296 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == writeConfig) {
297 return kBGRA_8888_GrPixelConfig;
298 } else {
299 return writeConfig;
300 }
bsalomon@google.com9c680582013-02-06 18:17:50 +0000301}
302
bsalomon861e1032014-12-16 07:33:49 -0800303bool GrGLGpu::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
krajcevski145d48c2014-06-11 16:07:50 -0700304 if (kIndex_8_GrPixelConfig == srcConfig || kIndex_8_GrPixelConfig == texture->config()) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000305 return false;
306 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000307 if (srcConfig != texture->config() && kGLES_GrGLStandard == this->glStandard()) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000308 // In general ES2 requires the internal format of the texture and the format of the src
309 // pixels to match. However, It may or may not be possible to upload BGRA data to a RGBA
310 // texture. It depends upon which extension added BGRA. The Apple extension allows it
311 // (BGRA's internal format is RGBA) while the EXT extension does not (BGRA is its own
312 // internal format).
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000313 if (this->glCaps().isConfigTexturable(kBGRA_8888_GrPixelConfig) &&
bsalomon@google.com9c680582013-02-06 18:17:50 +0000314 !this->glCaps().bgraIsInternalFormat() &&
315 kBGRA_8888_GrPixelConfig == srcConfig &&
316 kRGBA_8888_GrPixelConfig == texture->config()) {
317 return true;
318 } else {
319 return false;
320 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000321 } else {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000322 return true;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000323 }
324}
325
bsalomon861e1032014-12-16 07:33:49 -0800326bool GrGLGpu::fullReadPixelsIsFasterThanPartial() const {
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000327 return SkToBool(GR_GL_FULL_READPIXELS_FASTER_THAN_PARTIAL);
328}
329
bsalomon861e1032014-12-16 07:33:49 -0800330void GrGLGpu::onResetContext(uint32_t resetBits) {
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000331 // we don't use the zb at all
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000332 if (resetBits & kMisc_GrGLBackendState) {
333 GL_CALL(Disable(GR_GL_DEPTH_TEST));
334 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000335
egdaniel8dd688b2015-01-22 10:16:09 -0800336 fHWDrawFace = GrPipelineBuilder::kInvalid_DrawFace;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000337 fHWDitherEnabled = kUnknown_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000338
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000339 if (kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000340 // Desktop-only state that we never change
341 if (!this->glCaps().isCoreProfile()) {
342 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
343 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
344 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
345 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
346 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
347 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
348 }
349 // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a
350 // core profile. This seems like a bug since the core spec removes any mention of
351 // GL_ARB_imaging.
352 if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) {
353 GL_CALL(Disable(GR_GL_COLOR_TABLE));
354 }
355 GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL));
356 // Since ES doesn't support glPointSize at all we always use the VS to
357 // set the point size
358 GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE));
359
360 // We should set glPolygonMode(FRONT_AND_BACK,FILL) here, too. It isn't
361 // currently part of our gl interface. There are probably others as
362 // well.
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000363 }
joshualitt58162332014-08-01 06:44:53 -0700364
365 if (kGLES_GrGLStandard == this->glStandard() &&
bsalomon424cc262015-05-22 10:37:30 -0700366 this->hasExtension("GL_ARM_shader_framebuffer_fetch")) {
joshualitt58162332014-08-01 06:44:53 -0700367 // The arm extension requires specifically enabling MSAA fetching per sample.
368 // On some devices this may have a perf hit. Also multiple render targets are disabled
369 GL_CALL(Enable(GR_GL_FETCH_PER_SAMPLE_ARM));
370 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000371 fHWWriteToColor = kUnknown_TriState;
372 // we only ever use lines in hairline mode
373 GL_CALL(LineWidth(1));
bsalomon@google.comcad107b2013-06-28 14:32:08 +0000374 }
edisonn@google.comba669992013-06-28 16:03:21 +0000375
egdanielb414f252014-07-29 13:15:47 -0700376 if (resetBits & kMSAAEnable_GrGLBackendState) {
377 fMSAAEnabled = kUnknown_TriState;
vbuzinovdded6962015-06-12 08:59:45 -0700378
379 // In mixed samples mode coverage modulation allows the coverage to be converted to
380 // "opacity", which can then be blended into the color buffer to accomplish antialiasing.
381 // Enable coverage modulation suitable for premultiplied alpha colors.
382 // This state has no effect when not rendering to a mixed sampled target.
383 if (this->glCaps().shaderCaps()->mixedSamplesSupport()) {
384 GL_CALL(CoverageModulation(GR_GL_RGBA));
385 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000386 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000387
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +0000388 fHWActiveTextureUnitIdx = -1; // invalid
389
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000390 if (resetBits & kTextureBinding_GrGLBackendState) {
bsalomon1c63bf62014-07-22 13:09:46 -0700391 for (int s = 0; s < fHWBoundTextureUniqueIDs.count(); ++s) {
392 fHWBoundTextureUniqueIDs[s] = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000393 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000394 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000395
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000396 if (resetBits & kBlend_GrGLBackendState) {
397 fHWBlendState.invalidate();
398 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000399
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000400 if (resetBits & kView_GrGLBackendState) {
401 fHWScissorSettings.invalidate();
402 fHWViewport.invalidate();
403 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000404
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000405 if (resetBits & kStencil_GrGLBackendState) {
406 fHWStencilSettings.invalidate();
407 fHWStencilTestEnabled = kUnknown_TriState;
408 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000409
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000410 // Vertex
411 if (resetBits & kVertex_GrGLBackendState) {
412 fHWGeometryState.invalidate();
413 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000414
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000415 if (resetBits & kRenderTarget_GrGLBackendState) {
egdanield803f272015-03-18 13:01:52 -0700416 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000417 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000418
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000419 if (resetBits & kPathRendering_GrGLBackendState) {
jvanverthe9c0fc62015-04-29 11:18:05 -0700420 if (this->caps()->shaderCaps()->pathRenderingSupport()) {
kkinnunenccdaa042014-08-20 01:36:23 -0700421 this->glPathRendering()->resetContext();
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000422 }
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000423 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000424
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000425 // we assume these values
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000426 if (resetBits & kPixelStore_GrGLBackendState) {
427 if (this->glCaps().unpackRowLengthSupport()) {
428 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
429 }
430 if (this->glCaps().packRowLengthSupport()) {
431 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
432 }
433 if (this->glCaps().unpackFlipYSupport()) {
434 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
435 }
436 if (this->glCaps().packFlipYSupport()) {
437 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
438 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000439 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000440
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000441 if (resetBits & kProgram_GrGLBackendState) {
442 fHWProgramID = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000443 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000444}
445
egdanielcf614fd2015-04-22 13:58:58 -0700446static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000447 // By default, GrRenderTargets are GL's normal orientation so that they
448 // can be drawn to by the outside world without the client having
449 // to render upside down.
450 if (kDefault_GrSurfaceOrigin == origin) {
451 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
452 } else {
453 return origin;
454 }
455}
456
bsalomon6dc6f5f2015-06-18 09:12:16 -0700457GrTexture* GrGLGpu::onWrapBackendTexture(const GrBackendTextureDesc& desc,
458 GrWrapOwnership ownership) {
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000459 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000460 return NULL;
461 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000462
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000463 if (0 == desc.fTextureHandle) {
464 return NULL;
465 }
466
bsalomon@google.combcce8922013-03-25 15:38:39 +0000467 int maxSize = this->caps()->maxTextureSize();
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000468 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
469 return NULL;
470 }
471
bsalomonb15b4c12014-10-29 12:41:57 -0700472 GrGLTexture::IDDesc idDesc;
473 GrSurfaceDesc surfDesc;
474
475 idDesc.fTextureID = static_cast<GrGLuint>(desc.fTextureHandle);
bsalomon6dc6f5f2015-06-18 09:12:16 -0700476
477 switch (ownership) {
478 case kAdopt_GrWrapOwnership:
479 idDesc.fLifeCycle = GrGpuResource::kAdopted_LifeCycle;
480 break;
481 case kBorrow_GrWrapOwnership:
482 idDesc.fLifeCycle = GrGpuResource::kBorrowed_LifeCycle;
483 break;
484 }
bsalomonb15b4c12014-10-29 12:41:57 -0700485
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000486 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
bsalomonb15b4c12014-10-29 12:41:57 -0700487 surfDesc.fFlags = (GrSurfaceFlags) desc.fFlags;
488 surfDesc.fWidth = desc.fWidth;
489 surfDesc.fHeight = desc.fHeight;
490 surfDesc.fConfig = desc.fConfig;
senorblanco94e50102015-04-06 09:42:57 -0700491 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000492 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrBackendTextureFlag);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000493 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
494 // assuming the old behaviour, which is that backend textures are always
495 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
496 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
497 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
bsalomonb15b4c12014-10-29 12:41:57 -0700498 surfDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000499 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700500 surfDesc.fOrigin = desc.fOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000501 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000502
503 GrGLTexture* texture = NULL;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000504 if (renderTarget) {
bsalomonb15b4c12014-10-29 12:41:57 -0700505 GrGLRenderTarget::IDDesc rtIDDesc;
egdanielb0e1be22015-04-22 13:27:39 -0700506 if (!this->createRenderTargetObjects(surfDesc, GrGpuResource::kUncached_LifeCycle,
507 idDesc.fTextureID, &rtIDDesc)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000508 return NULL;
509 }
bsalomon37dd3312014-11-03 08:47:23 -0800510 texture = SkNEW_ARGS(GrGLTextureRenderTarget, (this, surfDesc, idDesc, rtIDDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000511 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700512 texture = SkNEW_ARGS(GrGLTexture, (this, surfDesc, idDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000513 }
514 if (NULL == texture) {
515 return NULL;
516 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000517
bsalomon@google.come269f212011-11-07 13:29:52 +0000518 return texture;
519}
520
bsalomon6dc6f5f2015-06-18 09:12:16 -0700521GrRenderTarget* GrGLGpu::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& wrapDesc,
522 GrWrapOwnership ownership) {
bsalomonb15b4c12014-10-29 12:41:57 -0700523 GrGLRenderTarget::IDDesc idDesc;
egdanield803f272015-03-18 13:01:52 -0700524 idDesc.fRTFBOID = static_cast<GrGLuint>(wrapDesc.fRenderTargetHandle);
bsalomonb15b4c12014-10-29 12:41:57 -0700525 idDesc.fMSColorRenderbufferID = 0;
egdanield803f272015-03-18 13:01:52 -0700526 idDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
bsalomon6dc6f5f2015-06-18 09:12:16 -0700527 switch (ownership) {
528 case kAdopt_GrWrapOwnership:
529 idDesc.fLifeCycle = GrGpuResource::kAdopted_LifeCycle;
530 break;
531 case kBorrow_GrWrapOwnership:
532 idDesc.fLifeCycle = GrGpuResource::kBorrowed_LifeCycle;
533 break;
534 }
senorblancod7395d82015-06-18 13:26:52 -0700535 idDesc.fSampleConfig = GrRenderTarget::kUnified_SampleConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000536
bsalomonb15b4c12014-10-29 12:41:57 -0700537 GrSurfaceDesc desc;
538 desc.fConfig = wrapDesc.fConfig;
539 desc.fFlags = kCheckAllocation_GrSurfaceFlag;
540 desc.fWidth = wrapDesc.fWidth;
541 desc.fHeight = wrapDesc.fHeight;
senorblanco94e50102015-04-06 09:42:57 -0700542 desc.fSampleCnt = SkTMin(wrapDesc.fSampleCnt, this->caps()->maxSampleCount());
bsalomonb15b4c12014-10-29 12:41:57 -0700543 desc.fOrigin = resolve_origin(wrapDesc.fOrigin, true);
544
bsalomon37dd3312014-11-03 08:47:23 -0800545 GrRenderTarget* tgt = SkNEW_ARGS(GrGLRenderTarget, (this, desc, idDesc));
bsalomonb15b4c12014-10-29 12:41:57 -0700546 if (wrapDesc.fStencilBits) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700547 GrGLStencilAttachment::IDDesc sbDesc;
548 GrGLStencilAttachment::Format format;
549 format.fInternalFormat = GrGLStencilAttachment::kUnknownInternalFormat;
bsalomon@google.come269f212011-11-07 13:29:52 +0000550 format.fPacked = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700551 format.fStencilBits = wrapDesc.fStencilBits;
552 format.fTotalBits = wrapDesc.fStencilBits;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700553 GrGLStencilAttachment* sb = SkNEW_ARGS(GrGLStencilAttachment,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000554 (this,
kkinnunen36c57df2015-01-27 00:30:18 -0800555 sbDesc,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000556 desc.fWidth,
557 desc.fHeight,
558 desc.fSampleCnt,
559 format));
egdaniel8dc7c3a2015-04-16 11:22:42 -0700560 tgt->renderTargetPriv().didAttachStencilAttachment(sb);
bsalomon@google.come269f212011-11-07 13:29:52 +0000561 sb->unref();
562 }
563 return tgt;
564}
565
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000566////////////////////////////////////////////////////////////////////////////////
567
bsalomon861e1032014-12-16 07:33:49 -0800568bool GrGLGpu::onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000569 int left, int top, int width, int height,
570 GrPixelConfig config, const void* buffer,
571 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000572 if (NULL == buffer) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000573 return false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000574 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000575 GrGLTexture* glTex = static_cast<GrGLTexture*>(texture);
576
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000577 this->setScratchTextureUnit();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000578 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTex->textureID()));
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000579
krajcevski145d48c2014-06-11 16:07:50 -0700580 bool success = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700581 if (GrPixelConfigIsCompressed(glTex->desc().fConfig)) {
bsalomon861e1032014-12-16 07:33:49 -0800582 // We check that config == desc.fConfig in GrGLGpu::canWriteTexturePixels()
bsalomonb15b4c12014-10-29 12:41:57 -0700583 SkASSERT(config == glTex->desc().fConfig);
584 success = this->uploadCompressedTexData(glTex->desc(), buffer, false, left, top, width,
585 height);
krajcevski145d48c2014-06-11 16:07:50 -0700586 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700587 success = this->uploadTexData(glTex->desc(), false, left, top, width, height, config,
588 buffer, rowBytes);
krajcevski145d48c2014-06-11 16:07:50 -0700589 }
590
591 if (success) {
bsalomonafbf2d62014-09-30 12:18:44 -0700592 texture->texturePriv().dirtyMipMaps(true);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000593 return true;
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000594 }
krajcevski145d48c2014-06-11 16:07:50 -0700595
596 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000597}
598
bsalomonb15b4c12014-10-29 12:41:57 -0700599static inline GrGLenum check_alloc_error(const GrSurfaceDesc& desc,
600 const GrGLInterface* interface) {
bsalomonf2703d82014-10-28 14:33:06 -0700601 if (SkToBool(desc.fFlags & kCheckAllocation_GrSurfaceFlag)) {
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000602 return GR_GL_GET_ERROR(interface);
603 } else {
604 return CHECK_ALLOC_ERROR(interface);
605 }
606}
607
bsalomon861e1032014-12-16 07:33:49 -0800608bool GrGLGpu::uploadTexData(const GrSurfaceDesc& desc,
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000609 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000610 int left, int top, int width, int height,
611 GrPixelConfig dataConfig,
612 const void* data,
613 size_t rowBytes) {
bsalomon49f085d2014-09-05 13:34:00 -0700614 SkASSERT(data || isNewTexture);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000615
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000616 // If we're uploading compressed data then we should be using uploadCompressedTexData
617 SkASSERT(!GrPixelConfigIsCompressed(dataConfig));
618
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000619 size_t bpp = GrBytesPerPixel(dataConfig);
bsalomone8d21e82015-07-16 08:23:13 -0700620 if (!GrSurfacePriv::AdjustWritePixelParams(desc.fWidth, desc.fHeight, bpp, &left, &top,
621 &width, &height, &data, &rowBytes)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000622 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000623 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000624 size_t trimRowBytes = width * bpp;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000625
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000626 // in case we need a temporary, trimmed copy of the src pixels
joshualitt29f86792015-05-29 08:06:48 -0700627 SkAutoSMalloc<128 * 128> tempStorage;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000628
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000629 // We currently lazily create MIPMAPs when the we see a draw with
630 // GrTextureParams::kMipMap_FilterMode. Using texture storage requires that the
631 // MIP levels are all created when the texture is created. So for now we don't use
632 // texture storage.
633 bool useTexStorage = false &&
634 isNewTexture &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000635 this->glCaps().texStorageSupport();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000636
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000637 if (useTexStorage && kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com313f0192012-07-10 17:21:02 +0000638 // 565 is not a sized internal format on desktop GL. So on desktop with
639 // 565 we always use an unsized internal format to let the system pick
640 // the best sized format to convert the 565 data to. Since TexStorage
641 // only allows sized internal formats we will instead use TexImage2D.
642 useTexStorage = desc.fConfig != kRGB_565_GrPixelConfig;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000643 }
644
jvanverth3f801cb2014-12-16 09:49:38 -0800645 GrGLenum internalFormat = 0x0; // suppress warning
646 GrGLenum externalFormat = 0x0; // suppress warning
647 GrGLenum externalType = 0x0; // suppress warning
bsalomone904c092014-07-17 10:50:59 -0700648
jvanverthe1869ca2014-12-16 13:32:27 -0800649 // glTexStorage requires sized internal formats on both desktop and ES. ES2 requires an unsized
jvanverthf72b7522014-12-17 10:46:01 -0800650 // format for glTexImage, unlike ES3 and desktop.
jvanverthe1869ca2014-12-16 13:32:27 -0800651 bool useSizedFormat = useTexStorage;
jvanverthf72b7522014-12-17 10:46:01 -0800652 if (kGL_GrGLStandard == this->glStandard() ||
653 (this->glVersion() >= GR_GL_VER(3, 0) &&
654 // ES3 only works with sized BGRA8 format if "GL_APPLE_texture_format_BGRA8888" enabled
655 (kBGRA_8888_GrPixelConfig != dataConfig || !this->glCaps().bgraIsInternalFormat()))) {
jvanverthe1869ca2014-12-16 13:32:27 -0800656 useSizedFormat = true;
657 }
jvanverthf72b7522014-12-17 10:46:01 -0800658
bsalomone904c092014-07-17 10:50:59 -0700659 if (!this->configToGLFormats(dataConfig, useSizedFormat, &internalFormat,
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000660 &externalFormat, &externalType)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000661 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000662 }
663
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000664 /*
bsalomon@google.com6f379512011-11-16 20:36:03 +0000665 * check whether to allocate a temporary buffer for flipping y or
666 * because our srcData has extra bytes past each row. If so, we need
667 * to trim those off here, since GL ES may not let us specify
668 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000669 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000670 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000671 bool swFlipY = false;
672 bool glFlipY = false;
bsalomon49f085d2014-09-05 13:34:00 -0700673 if (data) {
senorblanco@chromium.orgef5dbe12013-01-28 16:42:38 +0000674 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000675 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000676 glFlipY = true;
677 } else {
678 swFlipY = true;
679 }
680 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000681 if (this->glCaps().unpackRowLengthSupport() && !swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000682 // can't use this for flipping, only non-neg values allowed. :(
683 if (rowBytes != trimRowBytes) {
684 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
685 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
686 restoreGLRowLength = true;
687 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000688 } else {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000689 if (trimRowBytes != rowBytes || swFlipY) {
690 // copy data into our new storage, skipping the trailing bytes
691 size_t trimSize = height * trimRowBytes;
692 const char* src = (const char*)data;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000693 if (swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000694 src += (height - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000695 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000696 char* dst = (char*)tempStorage.reset(trimSize);
697 for (int y = 0; y < height; y++) {
698 memcpy(dst, src, trimRowBytes);
699 if (swFlipY) {
700 src -= rowBytes;
701 } else {
702 src += rowBytes;
703 }
704 dst += trimRowBytes;
705 }
706 // now point data to our copied version
707 data = tempStorage.get();
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000708 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000709 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000710 if (glFlipY) {
711 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
712 }
joshualittee5da552014-07-16 13:32:56 -0700713 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT,
714 static_cast<GrGLint>(GrUnpackAlignment(dataConfig))));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000715 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000716 bool succeeded = true;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000717 if (isNewTexture &&
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000718 0 == left && 0 == top &&
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000719 desc.fWidth == width && desc.fHeight == height) {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000720 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000721 if (useTexStorage) {
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000722 // We never resize or change formats of textures.
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000723 GL_ALLOC_CALL(this->glInterface(),
724 TexStorage2D(GR_GL_TEXTURE_2D,
725 1, // levels
726 internalFormat,
727 desc.fWidth, desc.fHeight));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000728 } else {
bsalomond4cb9222014-08-11 14:19:09 -0700729 GL_ALLOC_CALL(this->glInterface(),
730 TexImage2D(GR_GL_TEXTURE_2D,
731 0, // level
732 internalFormat,
733 desc.fWidth, desc.fHeight,
734 0, // border
735 externalFormat, externalType,
736 data));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000737 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000738 GrGLenum error = check_alloc_error(desc, this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000739 if (error != GR_GL_NO_ERROR) {
740 succeeded = false;
741 } else {
742 // if we have data and we used TexStorage to create the texture, we
743 // now upload with TexSubImage.
bsalomon49f085d2014-09-05 13:34:00 -0700744 if (data && useTexStorage) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000745 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
746 0, // level
747 left, top,
748 width, height,
749 externalFormat, externalType,
750 data));
751 }
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000752 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000753 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000754 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000755 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000756 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000757 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
758 0, // level
759 left, top,
760 width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000761 externalFormat, externalType, data));
762 }
763
764 if (restoreGLRowLength) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000765 SkASSERT(this->glCaps().unpackRowLengthSupport());
bsalomon@google.com6f379512011-11-16 20:36:03 +0000766 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000767 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000768 if (glFlipY) {
769 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
770 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000771 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000772}
773
krajcevski145d48c2014-06-11 16:07:50 -0700774// TODO: This function is using a lot of wonky semantics like, if width == -1
piotaixre4b23142014-10-02 10:57:53 -0700775// then set width = desc.fWdith ... blah. A better way to do it might be to
krajcevski145d48c2014-06-11 16:07:50 -0700776// create a CompressedTexData struct that takes a desc/ptr and figures out
777// the proper upload semantics. Then users can construct this function how they
778// see fit if they want to go against the "standard" way to do it.
bsalomon861e1032014-12-16 07:33:49 -0800779bool GrGLGpu::uploadCompressedTexData(const GrSurfaceDesc& desc,
krajcevski145d48c2014-06-11 16:07:50 -0700780 const void* data,
781 bool isNewTexture,
782 int left, int top, int width, int height) {
bsalomon49f085d2014-09-05 13:34:00 -0700783 SkASSERT(data || isNewTexture);
krajcevski9c0e6292014-06-02 07:38:14 -0700784
785 // No support for software flip y, yet...
786 SkASSERT(kBottomLeft_GrSurfaceOrigin != desc.fOrigin);
787
krajcevski145d48c2014-06-11 16:07:50 -0700788 if (-1 == width) {
789 width = desc.fWidth;
790 }
791#ifdef SK_DEBUG
792 else {
793 SkASSERT(width <= desc.fWidth);
794 }
795#endif
796
797 if (-1 == height) {
798 height = desc.fHeight;
799 }
800#ifdef SK_DEBUG
801 else {
802 SkASSERT(height <= desc.fHeight);
803 }
804#endif
805
krajcevski9c0e6292014-06-02 07:38:14 -0700806 // Make sure that the width and height that we pass to OpenGL
807 // is a multiple of the block size.
bsalomon98806072014-12-12 15:11:17 -0800808 size_t dataSize = GrCompressedFormatDataSize(desc.fConfig, width, height);
krajcevski9c0e6292014-06-02 07:38:14 -0700809
810 // We only need the internal format for compressed 2D textures.
811 GrGLenum internalFormat = 0;
812 if (!this->configToGLFormats(desc.fConfig, false, &internalFormat, NULL, NULL)) {
813 return false;
814 }
815
krajcevski145d48c2014-06-11 16:07:50 -0700816 if (isNewTexture) {
bsalomond4cb9222014-08-11 14:19:09 -0700817 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
krajcevski145d48c2014-06-11 16:07:50 -0700818 GL_ALLOC_CALL(this->glInterface(),
819 CompressedTexImage2D(GR_GL_TEXTURE_2D,
820 0, // level
821 internalFormat,
822 width, height,
823 0, // border
bsalomon98806072014-12-12 15:11:17 -0800824 SkToInt(dataSize),
krajcevski145d48c2014-06-11 16:07:50 -0700825 data));
bsalomond4cb9222014-08-11 14:19:09 -0700826 GrGLenum error = check_alloc_error(desc, this->glInterface());
827 if (error != GR_GL_NO_ERROR) {
828 return false;
829 }
krajcevski145d48c2014-06-11 16:07:50 -0700830 } else {
bsalomond4cb9222014-08-11 14:19:09 -0700831 // Paletted textures can't be updated.
832 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
833 return false;
834 }
835 GL_CALL(CompressedTexSubImage2D(GR_GL_TEXTURE_2D,
836 0, // level
837 left, top,
838 width, height,
839 internalFormat,
bsalomon98806072014-12-12 15:11:17 -0800840 SkToInt(dataSize),
bsalomond4cb9222014-08-11 14:19:09 -0700841 data));
krajcevski145d48c2014-06-11 16:07:50 -0700842 }
krajcevski9c0e6292014-06-02 07:38:14 -0700843
bsalomond4cb9222014-08-11 14:19:09 -0700844 return true;
krajcevski9c0e6292014-06-02 07:38:14 -0700845}
846
bsalomon424cc262015-05-22 10:37:30 -0700847static bool renderbuffer_storage_msaa(const GrGLContext& ctx,
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000848 int sampleCount,
849 GrGLenum format,
850 int width, int height) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000851 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000852 SkASSERT(GrGLCaps::kNone_MSFBOType != ctx.caps()->msFBOType());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000853 switch (ctx.caps()->msFBOType()) {
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000854 case GrGLCaps::kDesktop_ARB_MSFBOType:
855 case GrGLCaps::kDesktop_EXT_MSFBOType:
vbuzinovdded6962015-06-12 08:59:45 -0700856 case GrGLCaps::kMixedSamples_MSFBOType:
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000857 case GrGLCaps::kES_3_0_MSFBOType:
858 GL_ALLOC_CALL(ctx.interface(),
859 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
860 sampleCount,
861 format,
862 width, height));
863 break;
864 case GrGLCaps::kES_Apple_MSFBOType:
865 GL_ALLOC_CALL(ctx.interface(),
866 RenderbufferStorageMultisampleES2APPLE(GR_GL_RENDERBUFFER,
867 sampleCount,
868 format,
869 width, height));
870 break;
871 case GrGLCaps::kES_EXT_MsToTexture_MSFBOType:
872 case GrGLCaps::kES_IMG_MsToTexture_MSFBOType:
873 GL_ALLOC_CALL(ctx.interface(),
874 RenderbufferStorageMultisampleES2EXT(GR_GL_RENDERBUFFER,
875 sampleCount,
876 format,
877 width, height));
878 break;
879 case GrGLCaps::kNone_MSFBOType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000880 SkFAIL("Shouldn't be here if we don't support multisampled renderbuffers.");
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000881 break;
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000882 }
Brian Salomon9251d4e2015-03-17 16:03:19 -0400883 return (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000884}
885
egdanielb0e1be22015-04-22 13:27:39 -0700886bool GrGLGpu::createRenderTargetObjects(const GrSurfaceDesc& desc,
887 GrGpuResource::LifeCycle lifeCycle,
888 GrGLuint texID,
bsalomonb15b4c12014-10-29 12:41:57 -0700889 GrGLRenderTarget::IDDesc* idDesc) {
890 idDesc->fMSColorRenderbufferID = 0;
egdanield803f272015-03-18 13:01:52 -0700891 idDesc->fRTFBOID = 0;
892 idDesc->fTexFBOID = 0;
egdanielb0e1be22015-04-22 13:27:39 -0700893 idDesc->fLifeCycle = lifeCycle;
vbuzinovdded6962015-06-12 08:59:45 -0700894 idDesc->fSampleConfig = (GrGLCaps::kMixedSamples_MSFBOType == this->glCaps().msFBOType() &&
895 desc.fSampleCnt > 0) ? GrRenderTarget::kStencil_SampleConfig :
896 GrRenderTarget::kUnified_SampleConfig;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000897
898 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000899
bsalomon@google.comab15d612011-08-09 12:57:56 +0000900 GrGLenum msColorFormat = 0; // suppress warning
901
bsalomonb15b4c12014-10-29 12:41:57 -0700902 if (desc.fSampleCnt > 0 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000903 goto FAILED;
904 }
905
egdanield803f272015-03-18 13:01:52 -0700906 GL_CALL(GenFramebuffers(1, &idDesc->fTexFBOID));
907 if (!idDesc->fTexFBOID) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000908 goto FAILED;
909 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000910
egdanield803f272015-03-18 13:01:52 -0700911
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000912 // If we are using multisampling we will create two FBOS. We render to one and then resolve to
913 // the texture bound to the other. The exception is the IMG multisample extension. With this
914 // extension the texture is multisampled when rendered to and then auto-resolves it when it is
915 // rendered from.
bsalomonb15b4c12014-10-29 12:41:57 -0700916 if (desc.fSampleCnt > 0 && this->glCaps().usesMSAARenderBuffers()) {
egdanield803f272015-03-18 13:01:52 -0700917 GL_CALL(GenFramebuffers(1, &idDesc->fRTFBOID));
bsalomonb15b4c12014-10-29 12:41:57 -0700918 GL_CALL(GenRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
egdanield803f272015-03-18 13:01:52 -0700919 if (!idDesc->fRTFBOID ||
920 !idDesc->fMSColorRenderbufferID ||
bsalomonb15b4c12014-10-29 12:41:57 -0700921 !this->configToGLFormats(desc.fConfig,
commit-bot@chromium.org87002952013-08-20 15:12:01 +0000922 // ES2 and ES3 require sized internal formats for rb storage.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000923 kGLES_GrGLStandard == this->glStandard(),
bsalomon@google.com347c3822013-05-01 20:10:01 +0000924 &msColorFormat,
925 NULL,
926 NULL)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000927 goto FAILED;
928 }
929 } else {
egdanield803f272015-03-18 13:01:52 -0700930 idDesc->fRTFBOID = idDesc->fTexFBOID;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000931 }
932
egdanield803f272015-03-18 13:01:52 -0700933 // below here we may bind the FBO
934 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
935 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
bsalomonb15b4c12014-10-29 12:41:57 -0700936 SkASSERT(desc.fSampleCnt > 0);
937 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, idDesc->fMSColorRenderbufferID));
bsalomon424cc262015-05-22 10:37:30 -0700938 if (!renderbuffer_storage_msaa(*fGLContext,
bsalomonb15b4c12014-10-29 12:41:57 -0700939 desc.fSampleCnt,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000940 msColorFormat,
bsalomonb15b4c12014-10-29 12:41:57 -0700941 desc.fWidth, desc.fHeight)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000942 goto FAILED;
943 }
egdanield803f272015-03-18 13:01:52 -0700944 fStats.incRenderTargetBinds();
945 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fRTFBOID));
946 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
947 GR_GL_COLOR_ATTACHMENT0,
948 GR_GL_RENDERBUFFER,
949 idDesc->fMSColorRenderbufferID));
bsalomonb15b4c12014-10-29 12:41:57 -0700950 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
951 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000952 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
953 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
954 goto FAILED;
955 }
bsalomon424cc262015-05-22 10:37:30 -0700956 fGLContext->caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000957 }
958 }
egdanield803f272015-03-18 13:01:52 -0700959 fStats.incRenderTargetBinds();
960 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000961
bsalomonb15b4c12014-10-29 12:41:57 -0700962 if (this->glCaps().usesImplicitMSAAResolve() && desc.fSampleCnt > 0) {
egdanield803f272015-03-18 13:01:52 -0700963 GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000964 GR_GL_COLOR_ATTACHMENT0,
965 GR_GL_TEXTURE_2D,
bsalomonb15b4c12014-10-29 12:41:57 -0700966 texID, 0, desc.fSampleCnt));
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000967 } else {
egdanield803f272015-03-18 13:01:52 -0700968 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000969 GR_GL_COLOR_ATTACHMENT0,
970 GR_GL_TEXTURE_2D,
971 texID, 0));
972 }
bsalomonb15b4c12014-10-29 12:41:57 -0700973 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
974 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
egdanield803f272015-03-18 13:01:52 -0700975 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000976 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
977 goto FAILED;
978 }
bsalomon424cc262015-05-22 10:37:30 -0700979 fGLContext->caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000980 }
981
982 return true;
983
984FAILED:
bsalomonb15b4c12014-10-29 12:41:57 -0700985 if (idDesc->fMSColorRenderbufferID) {
986 GL_CALL(DeleteRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000987 }
egdanield803f272015-03-18 13:01:52 -0700988 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
989 GL_CALL(DeleteFramebuffers(1, &idDesc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000990 }
egdanield803f272015-03-18 13:01:52 -0700991 if (idDesc->fTexFBOID) {
992 GL_CALL(DeleteFramebuffers(1, &idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000993 }
994 return false;
995}
996
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000997// good to set a break-point here to know when createTexture fails
998static GrTexture* return_null_texture() {
mtklein@google.com330313a2013-08-22 15:37:26 +0000999// SkDEBUGFAIL("null texture");
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +00001000 return NULL;
1001}
1002
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001003#if 0 && defined(SK_DEBUG)
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +00001004static size_t as_size_t(int x) {
1005 return x;
1006}
1007#endif
1008
egdanielb0e1be22015-04-22 13:27:39 -07001009GrTexture* GrGLGpu::onCreateTexture(const GrSurfaceDesc& desc,
1010 GrGpuResource::LifeCycle lifeCycle,
bsalomon5236cf42015-01-14 10:42:08 -08001011 const void* srcData, size_t rowBytes) {
bsalomon@google.com8a70eef2013-03-19 13:58:55 +00001012 // We fail if the MSAA was requested and is not available.
1013 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
tfarina38406c82014-10-31 07:11:12 -07001014 //SkDebugf("MSAA RT requested but not supported on this platform.");
bsalomon@google.com8a70eef2013-03-19 13:58:55 +00001015 return return_null_texture();
1016 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001017
bsalomonf2703d82014-10-28 14:33:06 -07001018 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
reed@google.comac10a2d2010-12-22 21:39:39 +00001019
bsalomonb15b4c12014-10-29 12:41:57 -07001020 GrGLTexture::IDDesc idDesc;
1021 GL_CALL(GenTextures(1, &idDesc.fTextureID));
egdanielb0e1be22015-04-22 13:27:39 -07001022 idDesc.fLifeCycle = lifeCycle;
junov@chromium.org8b6b1c92013-08-29 16:22:09 +00001023
bsalomonb15b4c12014-10-29 12:41:57 -07001024 if (!idDesc.fTextureID) {
bsalomon@google.comd9f826c2011-07-18 15:25:04 +00001025 return return_null_texture();
1026 }
1027
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00001028 this->setScratchTextureUnit();
bsalomonb15b4c12014-10-29 12:41:57 -07001029 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, idDesc.fTextureID));
bsalomon@google.come269f212011-11-07 13:29:52 +00001030
junov@chromium.org8b6b1c92013-08-29 16:22:09 +00001031 if (renderTarget && this->glCaps().textureUsageSupport()) {
1032 // provides a hint about how this texture will be used
1033 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1034 GR_GL_TEXTURE_USAGE,
1035 GR_GL_FRAMEBUFFER_ATTACHMENT));
1036 }
1037
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001038 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1039 // drivers have a bug where an FBO won't be complete if it includes a
1040 // texture that is not mipmap complete (considering the filter in use).
1041 GrGLTexture::TexParams initialTexParams;
1042 // we only set a subset here so invalidate first
1043 initialTexParams.invalidate();
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00001044 initialTexParams.fMinFilter = GR_GL_NEAREST;
1045 initialTexParams.fMagFilter = GR_GL_NEAREST;
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001046 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
1047 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001048 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1049 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00001050 initialTexParams.fMagFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001051 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1052 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00001053 initialTexParams.fMinFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001054 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1055 GR_GL_TEXTURE_WRAP_S,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001056 initialTexParams.fWrapS));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001057 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1058 GR_GL_TEXTURE_WRAP_T,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001059 initialTexParams.fWrapT));
bsalomonb15b4c12014-10-29 12:41:57 -07001060 if (!this->uploadTexData(desc, true, 0, 0,
1061 desc.fWidth, desc.fHeight,
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001062 desc.fConfig, srcData, rowBytes)) {
bsalomonb15b4c12014-10-29 12:41:57 -07001063 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001064 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001065 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001066
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001067 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +00001068 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001069 // unbind the texture from the texture unit before binding it to the frame buffer
1070 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
bsalomon5236cf42015-01-14 10:42:08 -08001071 GrGLRenderTarget::IDDesc rtIDDesc;
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001072
egdanielb0e1be22015-04-22 13:27:39 -07001073 if (!this->createRenderTargetObjects(desc, lifeCycle, idDesc.fTextureID, &rtIDDesc)) {
bsalomonb15b4c12014-10-29 12:41:57 -07001074 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
reed@google.comac10a2d2010-12-22 21:39:39 +00001075 return return_null_texture();
1076 }
bsalomon37dd3312014-11-03 08:47:23 -08001077 tex = SkNEW_ARGS(GrGLTextureRenderTarget, (this, desc, idDesc, rtIDDesc));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001078 } else {
bsalomonb15b4c12014-10-29 12:41:57 -07001079 tex = SkNEW_ARGS(GrGLTexture, (this, desc, idDesc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001080 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001081 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +00001082#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001083 SkDebugf("--- new texture [%d] size=(%d %d) config=%d\n",
bsalomon@google.com64c4fe42011-11-05 14:51:01 +00001084 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +00001085#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001086 return tex;
1087}
1088
egdanielb0e1be22015-04-22 13:27:39 -07001089GrTexture* GrGLGpu::onCreateCompressedTexture(const GrSurfaceDesc& desc,
1090 GrGpuResource::LifeCycle lifeCycle,
bsalomon5236cf42015-01-14 10:42:08 -08001091 const void* srcData) {
krajcevski9c0e6292014-06-02 07:38:14 -07001092 // Make sure that we're not flipping Y.
egdanielb0e1be22015-04-22 13:27:39 -07001093 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
krajcevski9c0e6292014-06-02 07:38:14 -07001094 return return_null_texture();
1095 }
1096
bsalomonb15b4c12014-10-29 12:41:57 -07001097 GrGLTexture::IDDesc idDesc;
1098 GL_CALL(GenTextures(1, &idDesc.fTextureID));
egdanielb0e1be22015-04-22 13:27:39 -07001099 idDesc.fLifeCycle = lifeCycle;
krajcevski9c0e6292014-06-02 07:38:14 -07001100
bsalomonb15b4c12014-10-29 12:41:57 -07001101 if (!idDesc.fTextureID) {
krajcevski9c0e6292014-06-02 07:38:14 -07001102 return return_null_texture();
1103 }
1104
1105 this->setScratchTextureUnit();
bsalomonb15b4c12014-10-29 12:41:57 -07001106 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, idDesc.fTextureID));
krajcevski9c0e6292014-06-02 07:38:14 -07001107
1108 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1109 // drivers have a bug where an FBO won't be complete if it includes a
1110 // texture that is not mipmap complete (considering the filter in use).
1111 GrGLTexture::TexParams initialTexParams;
1112 // we only set a subset here so invalidate first
1113 initialTexParams.invalidate();
1114 initialTexParams.fMinFilter = GR_GL_NEAREST;
1115 initialTexParams.fMagFilter = GR_GL_NEAREST;
1116 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
1117 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
1118 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1119 GR_GL_TEXTURE_MAG_FILTER,
1120 initialTexParams.fMagFilter));
1121 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1122 GR_GL_TEXTURE_MIN_FILTER,
1123 initialTexParams.fMinFilter));
1124 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1125 GR_GL_TEXTURE_WRAP_S,
1126 initialTexParams.fWrapS));
1127 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1128 GR_GL_TEXTURE_WRAP_T,
1129 initialTexParams.fWrapT));
1130
bsalomonb15b4c12014-10-29 12:41:57 -07001131 if (!this->uploadCompressedTexData(desc, srcData)) {
1132 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
krajcevski9c0e6292014-06-02 07:38:14 -07001133 return return_null_texture();
1134 }
1135
1136 GrGLTexture* tex;
bsalomonb15b4c12014-10-29 12:41:57 -07001137 tex = SkNEW_ARGS(GrGLTexture, (this, desc, idDesc));
krajcevski9c0e6292014-06-02 07:38:14 -07001138 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
1139#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001140 SkDebugf("--- new compressed texture [%d] size=(%d %d) config=%d\n",
krajcevski9c0e6292014-06-02 07:38:14 -07001141 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
1142#endif
1143 return tex;
1144}
1145
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001146namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001147
egdaniel8dc7c3a2015-04-16 11:22:42 -07001148const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001149
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001150void inline get_stencil_rb_sizes(const GrGLInterface* gl,
egdaniel8dc7c3a2015-04-16 11:22:42 -07001151 GrGLStencilAttachment::Format* format) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001152
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001153 // we shouldn't ever know one size and not the other
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001154 SkASSERT((kUnknownBitCount == format->fStencilBits) ==
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001155 (kUnknownBitCount == format->fTotalBits));
1156 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001157 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001158 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1159 (GrGLint*)&format->fStencilBits);
1160 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001161 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001162 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1163 (GrGLint*)&format->fTotalBits);
1164 format->fTotalBits += format->fStencilBits;
1165 } else {
1166 format->fTotalBits = format->fStencilBits;
1167 }
1168 }
1169}
1170}
1171
egdaniel8dc7c3a2015-04-16 11:22:42 -07001172bool GrGLGpu::createStencilAttachmentForRenderTarget(GrRenderTarget* rt, int width, int height) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001173 // All internally created RTs are also textures. We don't create
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001174 // SBs for a client's standalone RT (that is a RT that isn't also a texture).
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001175 SkASSERT(rt->asTexture());
1176 SkASSERT(width >= rt->width());
1177 SkASSERT(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001178
vbuzinovdded6962015-06-12 08:59:45 -07001179 int samples = rt->numStencilSamples();
egdaniel8dc7c3a2015-04-16 11:22:42 -07001180 GrGLStencilAttachment::IDDesc sbDesc;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001181
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001182 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001183 for (int i = 0; i < stencilFmtCnt; ++i) {
kkinnunen36c57df2015-01-27 00:30:18 -08001184 if (!sbDesc.fRenderbufferID) {
1185 GL_CALL(GenRenderbuffers(1, &sbDesc.fRenderbufferID));
bsalomon12299ab2014-11-14 13:33:09 -08001186 }
kkinnunen36c57df2015-01-27 00:30:18 -08001187 if (!sbDesc.fRenderbufferID) {
bsalomon12299ab2014-11-14 13:33:09 -08001188 return false;
1189 }
kkinnunen36c57df2015-01-27 00:30:18 -08001190 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001191 // we start with the last stencil format that succeeded in hopes
1192 // that we won't go through this loop more than once after the
1193 // first (painful) stencil creation.
1194 int sIdx = (i + fLastSuccessfulStencilFmtIdx) % stencilFmtCnt;
bsalomon12299ab2014-11-14 13:33:09 -08001195 const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[sIdx];
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001196 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001197 // we do this "if" so that we don't call the multisample
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001198 // version on a GL that doesn't have an MSAA extension.
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001199 bool created;
1200 if (samples > 0) {
bsalomon424cc262015-05-22 10:37:30 -07001201 created = renderbuffer_storage_msaa(*fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001202 samples,
1203 sFmt.fInternalFormat,
1204 width, height);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001205 } else {
bsalomon12299ab2014-11-14 13:33:09 -08001206 GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER,
1207 sFmt.fInternalFormat,
1208 width, height));
1209 created = (GR_GL_NO_ERROR == check_alloc_error(rt->desc(), this->glInterface()));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001210 }
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001211 if (created) {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001212 fStats.incStencilAttachmentCreates();
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001213 // After sized formats we attempt an unsized format and take
1214 // whatever sizes GL gives us. In that case we query for the size.
egdaniel8dc7c3a2015-04-16 11:22:42 -07001215 GrGLStencilAttachment::Format format = sFmt;
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001216 get_stencil_rb_sizes(this->glInterface(), &format);
egdaniel8dc7c3a2015-04-16 11:22:42 -07001217 SkAutoTUnref<GrGLStencilAttachment> sb(SkNEW_ARGS(GrGLStencilAttachment,
kkinnunen36c57df2015-01-27 00:30:18 -08001218 (this, sbDesc, width, height, samples, format)));
egdaniel8dc7c3a2015-04-16 11:22:42 -07001219 if (this->attachStencilAttachmentToRenderTarget(sb, rt)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001220 fLastSuccessfulStencilFmtIdx = sIdx;
egdaniel8dc7c3a2015-04-16 11:22:42 -07001221 rt->renderTargetPriv().didAttachStencilAttachment(sb);
egdanieldf603552015-03-18 13:26:11 -07001222// This work around is currently breaking on windows 7 hd2000 bot when we bind a color buffer
1223#if 0
bsalomondd3143b2015-02-23 09:27:45 -08001224 // Clear the stencil buffer. We use a special purpose FBO for this so that the
1225 // entire stencil buffer is cleared, even if it is attached to an FBO with a
1226 // smaller color target.
egdanield803f272015-03-18 13:01:52 -07001227 if (0 == fStencilClearFBOID) {
1228 GL_CALL(GenFramebuffers(1, &fStencilClearFBOID));
bsalomondd3143b2015-02-23 09:27:45 -08001229 }
robertphillips73165bd2015-03-01 07:38:15 -08001230
egdanield803f272015-03-18 13:01:52 -07001231 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fStencilClearFBOID));
1232 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1233 fStats.incRenderTargetBinds();
1234 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001235 GR_GL_STENCIL_ATTACHMENT,
1236 GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
1237 if (sFmt.fPacked) {
egdanield803f272015-03-18 13:01:52 -07001238 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001239 GR_GL_DEPTH_ATTACHMENT,
1240 GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
1241 }
1242
1243 GL_CALL(ClearStencil(0));
bsalomon9d2049d2015-03-17 12:06:19 -07001244 // Many GL implementations seem to have trouble with clearing an FBO with only
1245 // a stencil buffer.
1246 GrGLuint tempRB;
1247 GL_CALL(GenRenderbuffers(1, &tempRB));
1248 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, tempRB));
Brian Salomon9251d4e2015-03-17 16:03:19 -04001249 if (samples > 0) {
1250 renderbuffer_storage_msaa(fGLContext, samples, GR_GL_RGBA8, width, height);
1251 } else {
1252 GL_CALL(RenderbufferStorage(GR_GL_RENDERBUFFER, GR_GL_RGBA8, width, height));
1253 }
egdanield803f272015-03-18 13:01:52 -07001254 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon9d2049d2015-03-17 12:06:19 -07001255 GR_GL_COLOR_ATTACHMENT0,
1256 GR_GL_RENDERBUFFER, tempRB));
1257
bsalomondd3143b2015-02-23 09:27:45 -08001258 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
1259
egdanield803f272015-03-18 13:01:52 -07001260 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon9d2049d2015-03-17 12:06:19 -07001261 GR_GL_COLOR_ATTACHMENT0,
1262 GR_GL_RENDERBUFFER, 0));
1263 GL_CALL(DeleteRenderbuffers(1, &tempRB));
1264
bsalomondd3143b2015-02-23 09:27:45 -08001265 // Unbind the SB from the FBO so that we don't keep it alive.
egdanield803f272015-03-18 13:01:52 -07001266 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001267 GR_GL_STENCIL_ATTACHMENT,
1268 GR_GL_RENDERBUFFER, 0));
1269 if (sFmt.fPacked) {
egdanield803f272015-03-18 13:01:52 -07001270 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001271 GR_GL_DEPTH_ATTACHMENT,
1272 GR_GL_RENDERBUFFER, 0));
1273 }
egdanieldf603552015-03-18 13:26:11 -07001274#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001275 return true;
bsalomon12299ab2014-11-14 13:33:09 -08001276 }
bsalomon10e23ca2014-11-25 05:52:06 -08001277 // Remove the scratch key from this resource so we don't grab it from the cache ever
1278 // again.
bsalomon3582d3e2015-02-13 14:20:05 -08001279 sb->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -08001280 // Set this to 0 since we handed the valid ID off to the failed stencil buffer resource.
kkinnunen36c57df2015-01-27 00:30:18 -08001281 sbDesc.fRenderbufferID = 0;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001282 }
1283 }
kkinnunen36c57df2015-01-27 00:30:18 -08001284 GL_CALL(DeleteRenderbuffers(1, &sbDesc.fRenderbufferID));
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001285 return false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001286}
1287
egdaniel8dc7c3a2015-04-16 11:22:42 -07001288bool GrGLGpu::attachStencilAttachmentToRenderTarget(GrStencilAttachment* sb, GrRenderTarget* rt) {
bsalomon37dd3312014-11-03 08:47:23 -08001289 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt);
egdanield803f272015-03-18 13:01:52 -07001290
1291 GrGLuint fbo = glrt->renderFBOID();
1292
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001293 if (NULL == sb) {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001294 if (rt->renderTargetPriv().getStencilAttachment()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001295 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001296 GR_GL_STENCIL_ATTACHMENT,
1297 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001298 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001299 GR_GL_DEPTH_ATTACHMENT,
1300 GR_GL_RENDERBUFFER, 0));
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001301#ifdef SK_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001302 GrGLenum status;
1303 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001304 SkASSERT(GR_GL_FRAMEBUFFER_COMPLETE == status);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001305#endif
1306 }
1307 return true;
1308 } else {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001309 GrGLStencilAttachment* glsb = static_cast<GrGLStencilAttachment*>(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001310 GrGLuint rb = glsb->renderbufferID();
1311
egdanield803f272015-03-18 13:01:52 -07001312 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1313 fStats.incRenderTargetBinds();
1314 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fbo));
1315 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001316 GR_GL_STENCIL_ATTACHMENT,
1317 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001318 if (glsb->format().fPacked) {
egdanield803f272015-03-18 13:01:52 -07001319 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001320 GR_GL_DEPTH_ATTACHMENT,
1321 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001322 } else {
egdanield803f272015-03-18 13:01:52 -07001323 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001324 GR_GL_DEPTH_ATTACHMENT,
1325 GR_GL_RENDERBUFFER, 0));
reed@google.comac10a2d2010-12-22 21:39:39 +00001326 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001327
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001328 GrGLenum status;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001329 if (!this->glCaps().isColorConfigAndStencilFormatVerified(rt->config(), glsb->format())) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001330 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1331 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
egdanield803f272015-03-18 13:01:52 -07001332 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1333 GR_GL_STENCIL_ATTACHMENT,
1334 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001335 if (glsb->format().fPacked) {
egdanield803f272015-03-18 13:01:52 -07001336 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1337 GR_GL_DEPTH_ATTACHMENT,
1338 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001339 }
1340 return false;
1341 } else {
bsalomon424cc262015-05-22 10:37:30 -07001342 fGLContext->caps()->markColorConfigAndStencilFormatAsVerified(
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001343 rt->config(),
1344 glsb->format());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001345 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001346 }
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001347 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001348 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001349}
1350
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001351////////////////////////////////////////////////////////////////////////////////
1352
bsalomon861e1032014-12-16 07:33:49 -08001353GrVertexBuffer* GrGLGpu::onCreateVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001354 GrGLVertexBuffer::Desc desc;
1355 desc.fDynamic = dynamic;
1356 desc.fSizeInBytes = size;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001357
bsalomon@google.com96966a52013-02-21 16:34:21 +00001358 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001359 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001360 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001361 return vertexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001362 } else {
1363 GL_CALL(GenBuffers(1, &desc.fID));
1364 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001365 fHWGeometryState.setVertexBufferID(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001366 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1367 // make sure driver can allocate memory for this buffer
1368 GL_ALLOC_CALL(this->glInterface(),
1369 BufferData(GR_GL_ARRAY_BUFFER,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001370 (GrGLsizeiptr) desc.fSizeInBytes,
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001371 NULL, // data ptr
1372 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1373 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1374 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001375 this->notifyVertexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001376 return NULL;
1377 }
1378 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
1379 return vertexBuffer;
1380 }
1381 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001382 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001383}
1384
bsalomon861e1032014-12-16 07:33:49 -08001385GrIndexBuffer* GrGLGpu::onCreateIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001386 GrGLIndexBuffer::Desc desc;
1387 desc.fDynamic = dynamic;
1388 desc.fSizeInBytes = size;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001389
bsalomon@google.com96966a52013-02-21 16:34:21 +00001390 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001391 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001392 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001393 return indexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001394 } else {
1395 GL_CALL(GenBuffers(1, &desc.fID));
1396 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001397 fHWGeometryState.setIndexBufferIDOnDefaultVertexArray(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001398 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1399 // make sure driver can allocate memory for this buffer
1400 GL_ALLOC_CALL(this->glInterface(),
1401 BufferData(GR_GL_ELEMENT_ARRAY_BUFFER,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001402 (GrGLsizeiptr) desc.fSizeInBytes,
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001403 NULL, // data ptr
1404 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1405 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1406 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001407 this->notifyIndexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001408 return NULL;
1409 }
1410 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
1411 return indexBuffer;
1412 }
1413 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001414 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001415}
1416
bsalomon3e791242014-12-17 13:43:13 -08001417void GrGLGpu::flushScissor(const GrScissorState& scissorState,
joshualitt77b13072014-10-27 14:51:01 -07001418 const GrGLIRect& rtViewport,
1419 GrSurfaceOrigin rtOrigin) {
robertphillipse85a32d2015-02-10 08:16:55 -08001420 if (scissorState.enabled()) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001421 GrGLIRect scissor;
bsalomonb0bd4f62014-09-03 07:19:50 -07001422 scissor.setRelativeTo(rtViewport,
robertphillipse85a32d2015-02-10 08:16:55 -08001423 scissorState.rect().fLeft,
1424 scissorState.rect().fTop,
1425 scissorState.rect().width(),
1426 scissorState.rect().height(),
bsalomonb0bd4f62014-09-03 07:19:50 -07001427 rtOrigin);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001428 // if the scissor fully contains the viewport then we fall through and
1429 // disable the scissor test.
bsalomonb0bd4f62014-09-03 07:19:50 -07001430 if (!scissor.contains(rtViewport)) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001431 if (fHWScissorSettings.fRect != scissor) {
1432 scissor.pushToGLScissor(this->glInterface());
1433 fHWScissorSettings.fRect = scissor;
1434 }
1435 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1436 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1437 fHWScissorSettings.fEnabled = kYes_TriState;
1438 }
1439 return;
1440 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001441 }
joshualitt77b13072014-10-27 14:51:01 -07001442
1443 // See fall through note above
1444 this->disableScissor();
1445}
1446
cdaltond0a840d2015-03-16 17:19:58 -07001447bool GrGLGpu::flushGLState(const DrawArgs& args) {
egdaniel080e6732014-12-22 07:35:52 -08001448 GrXferProcessor::BlendInfo blendInfo;
egdaniel8dd688b2015-01-22 10:16:09 -08001449 const GrPipeline& pipeline = *args.fPipeline;
1450 args.fPipeline->getXferProcessor()->getBlendInfo(&blendInfo);
egdaniel080e6732014-12-22 07:35:52 -08001451
egdaniel8dd688b2015-01-22 10:16:09 -08001452 this->flushDither(pipeline.isDitherState());
egdaniel080e6732014-12-22 07:35:52 -08001453 this->flushColorWrite(blendInfo.fWriteColor);
egdaniel8dd688b2015-01-22 10:16:09 -08001454 this->flushDrawFace(pipeline.getDrawFace());
bsalomonbc3d0de2014-12-15 13:45:03 -08001455
bsalomon6df86402015-06-01 10:41:49 -07001456 SkAutoTUnref<GrGLProgram> program(fProgramCache->refProgram(args));
1457 if (!program) {
bsalomon682c2692015-05-22 14:01:46 -07001458 GrCapsDebugf(this->caps(), "Failed to create program!\n");
bsalomon1f78c0a2014-12-17 09:43:13 -08001459 return false;
bsalomonbc3d0de2014-12-15 13:45:03 -08001460 }
1461
bsalomon6df86402015-06-01 10:41:49 -07001462 GrGLuint programID = program->programID();
bsalomon1f78c0a2014-12-17 09:43:13 -08001463 if (fHWProgramID != programID) {
1464 GL_CALL(UseProgram(programID));
1465 fHWProgramID = programID;
1466 }
1467
egdanield803f272015-03-18 13:01:52 -07001468 if (blendInfo.fWriteColor) {
1469 this->flushBlend(blendInfo);
1470 }
bsalomon1f78c0a2014-12-17 09:43:13 -08001471
cdalton42717652015-06-18 11:54:30 -07001472 SkSTArray<8, const GrTextureAccess*> textureAccesses;
1473 program->setData(*args.fPrimitiveProcessor, pipeline, *args.fBatchTracker, &textureAccesses);
1474
1475 int numTextureAccesses = textureAccesses.count();
1476 for (int i = 0; i < numTextureAccesses; i++) {
1477 this->bindTexture(i, textureAccesses[i]->getParams(),
1478 static_cast<GrGLTexture*>(textureAccesses[i]->getTexture()));
1479 }
bsalomon1f78c0a2014-12-17 09:43:13 -08001480
egdaniel8dd688b2015-01-22 10:16:09 -08001481 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(pipeline.getRenderTarget());
1482 this->flushStencil(pipeline.getStencil());
1483 this->flushScissor(pipeline.getScissorState(), glRT->getViewport(), glRT->origin());
cdaltond0a840d2015-03-16 17:19:58 -07001484 this->flushHWAAState(glRT, pipeline.isHWAntialiasState());
bsalomonbc3d0de2014-12-15 13:45:03 -08001485
1486 // This must come after textures are flushed because a texture may need
egdanield803f272015-03-18 13:01:52 -07001487 // to be msaa-resolved (which will modify bound FBO state).
1488 this->flushRenderTarget(glRT, NULL);
bsalomonbc3d0de2014-12-15 13:45:03 -08001489
1490 return true;
1491}
1492
joshualitt873ad0e2015-01-20 09:08:51 -08001493void GrGLGpu::setupGeometry(const GrPrimitiveProcessor& primProc,
bsalomone64eb572015-05-07 11:35:55 -07001494 const GrNonInstancedVertices& vertices,
bsalomonbc3d0de2014-12-15 13:45:03 -08001495 size_t* indexOffsetInBytes) {
1496 GrGLVertexBuffer* vbuf;
bsalomone64eb572015-05-07 11:35:55 -07001497 vbuf = (GrGLVertexBuffer*) vertices.vertexBuffer();
bsalomonbc3d0de2014-12-15 13:45:03 -08001498
1499 SkASSERT(vbuf);
1500 SkASSERT(!vbuf->isMapped());
1501
1502 GrGLIndexBuffer* ibuf = NULL;
bsalomone64eb572015-05-07 11:35:55 -07001503 if (vertices.isIndexed()) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001504 SkASSERT(indexOffsetInBytes);
1505
1506 *indexOffsetInBytes = 0;
bsalomone64eb572015-05-07 11:35:55 -07001507 ibuf = (GrGLIndexBuffer*)vertices.indexBuffer();
bsalomonbc3d0de2014-12-15 13:45:03 -08001508
1509 SkASSERT(ibuf);
1510 SkASSERT(!ibuf->isMapped());
1511 *indexOffsetInBytes += ibuf->baseOffset();
1512 }
1513 GrGLAttribArrayState* attribState =
1514 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
1515
joshualitt873ad0e2015-01-20 09:08:51 -08001516 int vaCount = primProc.numAttribs();
joshualitt71c92602015-01-14 08:12:47 -08001517 if (vaCount > 0) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001518
joshualitt873ad0e2015-01-20 09:08:51 -08001519 GrGLsizei stride = static_cast<GrGLsizei>(primProc.getVertexStride());
bsalomonbc3d0de2014-12-15 13:45:03 -08001520
bsalomone64eb572015-05-07 11:35:55 -07001521 size_t vertexOffsetInBytes = stride * vertices.startVertex();
bsalomonbc3d0de2014-12-15 13:45:03 -08001522
1523 vertexOffsetInBytes += vbuf->baseOffset();
1524
bsalomonbc3d0de2014-12-15 13:45:03 -08001525 uint32_t usedAttribArraysMask = 0;
1526 size_t offset = 0;
1527
1528 for (int attribIndex = 0; attribIndex < vaCount; attribIndex++) {
joshualitt873ad0e2015-01-20 09:08:51 -08001529 const GrGeometryProcessor::Attribute& attrib = primProc.getAttrib(attribIndex);
bsalomonbc3d0de2014-12-15 13:45:03 -08001530 usedAttribArraysMask |= (1 << attribIndex);
joshualitt71c92602015-01-14 08:12:47 -08001531 GrVertexAttribType attribType = attrib.fType;
bsalomonbc3d0de2014-12-15 13:45:03 -08001532 attribState->set(this,
1533 attribIndex,
bsalomon6df86402015-06-01 10:41:49 -07001534 vbuf->bufferID(),
bsalomonbc3d0de2014-12-15 13:45:03 -08001535 GrGLAttribTypeToLayout(attribType).fCount,
1536 GrGLAttribTypeToLayout(attribType).fType,
1537 GrGLAttribTypeToLayout(attribType).fNormalized,
1538 stride,
1539 reinterpret_cast<GrGLvoid*>(vertexOffsetInBytes + offset));
joshualitt71c92602015-01-14 08:12:47 -08001540 offset += attrib.fOffset;
bsalomonbc3d0de2014-12-15 13:45:03 -08001541 }
1542 attribState->disableUnusedArrays(this, usedAttribArraysMask);
1543 }
1544}
1545
joshualitt873ad0e2015-01-20 09:08:51 -08001546void GrGLGpu::buildProgramDesc(GrProgramDesc* desc,
1547 const GrPrimitiveProcessor& primProc,
egdaniel8dd688b2015-01-22 10:16:09 -08001548 const GrPipeline& pipeline,
joshualitt873ad0e2015-01-20 09:08:51 -08001549 const GrBatchTracker& batchTracker) const {
bsalomon50785a32015-02-06 07:02:37 -08001550 if (!GrGLProgramDescBuilder::Build(desc, primProc, pipeline, this, batchTracker)) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001551 SkDEBUGFAIL("Failed to generate GL program descriptor");
1552 }
1553}
1554
bsalomon861e1032014-12-16 07:33:49 -08001555void GrGLGpu::disableScissor() {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001556 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001557 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001558 fHWScissorSettings.fEnabled = kNo_TriState;
1559 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001560 }
1561}
1562
bsalomon861e1032014-12-16 07:33:49 -08001563void GrGLGpu::onClear(GrRenderTarget* target, const SkIRect* rect, GrColor color,
joshualitt4b68ec02014-11-07 14:11:45 -08001564 bool canIgnoreRect) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001565 // parent class should never let us get here with no RT
bsalomon49f085d2014-09-05 13:34:00 -07001566 SkASSERT(target);
bsalomonb0bd4f62014-09-03 07:19:50 -07001567 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001568
robertphillips@google.com56ce48a2013-10-31 21:44:25 +00001569 if (canIgnoreRect && this->glCaps().fullClearIsFree()) {
1570 rect = NULL;
1571 }
1572
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001573 SkIRect clippedRect;
bsalomon49f085d2014-09-05 13:34:00 -07001574 if (rect) {
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001575 // flushScissor expects rect to be clipped to the target.
bsalomon@google.com74b98712011-11-11 19:46:16 +00001576 clippedRect = *rect;
bsalomonb0bd4f62014-09-03 07:19:50 -07001577 SkIRect rtRect = SkIRect::MakeWH(target->width(), target->height());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001578 if (clippedRect.intersect(rtRect)) {
1579 rect = &clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001580 } else {
1581 return;
1582 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001583 }
rmistry@google.comd6bab022013-12-02 13:50:38 +00001584
egdanield803f272015-03-18 13:01:52 -07001585 this->flushRenderTarget(glRT, rect);
bsalomon3e791242014-12-17 13:43:13 -08001586 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08001587 if (rect) {
1588 scissorState.set(*rect);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001589 }
joshualitt77b13072014-10-27 14:51:01 -07001590 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001591
1592 GrGLfloat r, g, b, a;
1593 static const GrGLfloat scale255 = 1.f / 255.f;
1594 a = GrColorUnpackA(color) * scale255;
1595 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001596 r = GrColorUnpackR(color) * scaleRGB;
1597 g = GrColorUnpackG(color) * scaleRGB;
1598 b = GrColorUnpackB(color) * scaleRGB;
1599
1600 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00001601 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001602 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001603 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00001604}
1605
bsalomon861e1032014-12-16 07:33:49 -08001606void GrGLGpu::discard(GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -08001607 SkASSERT(renderTarget);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001608 if (!this->caps()->discardRenderTargetSupport()) {
1609 return;
1610 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001611
1612 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(renderTarget);
egdanield803f272015-03-18 13:01:52 -07001613 if (renderTarget->getUniqueID() != fHWBoundRenderTargetUniqueID) {
1614 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1615 fStats.incRenderTargetBinds();
1616 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, glRT->renderFBOID()));
1617 }
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001618 switch (this->glCaps().invalidateFBType()) {
joshualitt58162332014-08-01 06:44:53 -07001619 case GrGLCaps::kNone_InvalidateFBType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00001620 SkFAIL("Should never get here.");
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001621 break;
1622 case GrGLCaps::kInvalidate_InvalidateFBType:
egdanield803f272015-03-18 13:01:52 -07001623 if (0 == glRT->renderFBOID()) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001624 // When rendering to the default framebuffer the legal values for attachments
1625 // are GL_COLOR, GL_DEPTH, GL_STENCIL, ... rather than the various FBO attachment
1626 // types.
1627 static const GrGLenum attachments[] = { GR_GL_COLOR };
egdanield803f272015-03-18 13:01:52 -07001628 GL_CALL(InvalidateFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001629 attachments));
1630 } else {
1631 static const GrGLenum attachments[] = { GR_GL_COLOR_ATTACHMENT0 };
egdanield803f272015-03-18 13:01:52 -07001632 GL_CALL(InvalidateFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001633 attachments));
1634 }
1635 break;
1636 case GrGLCaps::kDiscard_InvalidateFBType: {
egdanield803f272015-03-18 13:01:52 -07001637 if (0 == glRT->renderFBOID()) {
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001638 // When rendering to the default framebuffer the legal values for attachments
1639 // are GL_COLOR, GL_DEPTH, GL_STENCIL, ... rather than the various FBO attachment
1640 // types. See glDiscardFramebuffer() spec.
1641 static const GrGLenum attachments[] = { GR_GL_COLOR };
egdanield803f272015-03-18 13:01:52 -07001642 GL_CALL(DiscardFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001643 attachments));
1644 } else {
1645 static const GrGLenum attachments[] = { GR_GL_COLOR_ATTACHMENT0 };
egdanield803f272015-03-18 13:01:52 -07001646 GL_CALL(DiscardFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001647 attachments));
1648 }
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001649 break;
1650 }
1651 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001652 renderTarget->flagAsResolved();
1653}
1654
1655
bsalomon861e1032014-12-16 07:33:49 -08001656void GrGLGpu::clearStencil(GrRenderTarget* target) {
bsalomonb0bd4f62014-09-03 07:19:50 -07001657 if (NULL == target) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00001658 return;
1659 }
bsalomonb0bd4f62014-09-03 07:19:50 -07001660 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07001661 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001662
joshualitt77b13072014-10-27 14:51:01 -07001663 this->disableScissor();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001664
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001665 GL_CALL(StencilMask(0xffffffff));
1666 GL_CALL(ClearStencil(0));
1667 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001668 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001669}
1670
bsalomon861e1032014-12-16 07:33:49 -08001671void GrGLGpu::onClearStencilClip(GrRenderTarget* target, const SkIRect& rect, bool insideClip) {
bsalomon49f085d2014-09-05 13:34:00 -07001672 SkASSERT(target);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001673
egdaniel8dc7c3a2015-04-16 11:22:42 -07001674 GrStencilAttachment* sb = target->renderTargetPriv().getStencilAttachment();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001675 // this should only be called internally when we know we have a
1676 // stencil buffer.
bsalomon6bc1b5f2015-02-23 09:06:38 -08001677 SkASSERT(sb);
1678 GrGLint stencilBitCount = sb->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001679#if 0
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001680 SkASSERT(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00001681 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001682#else
1683 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001684 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001685 // turned into draws. Our contract on GrDrawTarget says that
1686 // changing the clip between stencil passes may or may not
1687 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00001688 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001689#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001690 GrGLint value;
1691 if (insideClip) {
1692 value = (1 << (stencilBitCount - 1));
1693 } else {
1694 value = 0;
1695 }
bsalomonb0bd4f62014-09-03 07:19:50 -07001696 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07001697 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001698
bsalomon3e791242014-12-17 13:43:13 -08001699 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08001700 scissorState.set(rect);
joshualitt77b13072014-10-27 14:51:01 -07001701 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001702
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001703 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001704 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001705 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001706 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001707}
1708
bsalomon861e1032014-12-16 07:33:49 -08001709bool GrGLGpu::readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001710 int left, int top,
1711 int width, int height,
1712 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001713 size_t rowBytes) const {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001714 // If this rendertarget is aready TopLeft, we don't need to flip.
1715 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
1716 return false;
1717 }
1718
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001719 // if GL can do the flip then we'll never pay for it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001720 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001721 return false;
1722 }
1723
1724 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00001725 // get the flip for free. Otherwise it costs.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001726 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001727 return true;
1728 }
1729 // If we have to do memcpys to handle rowBytes then y-flip is free
1730 // Note the rowBytes might be tight to the passed in data, but if data
1731 // gets clipped in x to the target the rowBytes will no longer be tight.
1732 if (left >= 0 && (left + width) < renderTarget->width()) {
1733 return 0 == rowBytes ||
1734 GrBytesPerPixel(config) * width == rowBytes;
1735 } else {
1736 return false;
1737 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001738}
1739
bsalomon861e1032014-12-16 07:33:49 -08001740bool GrGLGpu::onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001741 int left, int top,
1742 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001743 GrPixelConfig config,
1744 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001745 size_t rowBytes) {
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001746 // We cannot read pixels into a compressed buffer
1747 if (GrPixelConfigIsCompressed(config)) {
1748 return false;
1749 }
1750
1751 GrGLenum format = 0;
1752 GrGLenum type = 0;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001753 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin();
bsalomon@google.com280e99f2012-01-05 16:17:38 +00001754 if (!this->configToGLFormats(config, false, NULL, &format, &type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001755 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001756 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001757 size_t bpp = GrBytesPerPixel(config);
bsalomone8d21e82015-07-16 08:23:13 -07001758 if (!GrSurfacePriv::AdjustReadPixelParams(target->width(), target->height(), bpp,
1759 &left, &top, &width, &height,
1760 &buffer,
1761 &rowBytes)) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001762 return false;
1763 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001764
bsalomon@google.comc6980972011-11-02 19:57:21 +00001765 // resolve the render target if necessary
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001766 GrGLRenderTarget* tgt = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07001767 switch (tgt->getResolveType()) {
1768 case GrGLRenderTarget::kCantResolve_ResolveType:
1769 return false;
1770 case GrGLRenderTarget::kAutoResolves_ResolveType:
1771 this->flushRenderTarget(static_cast<GrGLRenderTarget*>(target), &SkIRect::EmptyIRect());
1772 break;
1773 case GrGLRenderTarget::kCanResolve_ResolveType:
1774 this->onResolveRenderTarget(tgt);
1775 // we don't track the state of the READ FBO ID.
1776 fStats.incRenderTargetBinds();
1777 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1778 tgt->textureFBOID()));
1779 break;
1780 default:
1781 SkFAIL("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00001782 }
1783
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001784 const GrGLIRect& glvp = tgt->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00001785
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00001786 // the read rect is viewport-relative
1787 GrGLIRect readRect;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001788 readRect.setRelativeTo(glvp, left, top, width, height, target->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001789
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001790 size_t tightRowBytes = bpp * width;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001791 if (0 == rowBytes) {
1792 rowBytes = tightRowBytes;
1793 }
1794 size_t readDstRowBytes = tightRowBytes;
1795 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001796
bsalomon@google.comc6980972011-11-02 19:57:21 +00001797 // determine if GL can read using the passed rowBytes or if we need
1798 // a scratch buffer.
joshualitt29f86792015-05-29 08:06:48 -07001799 SkAutoSMalloc<32 * sizeof(GrColor)> scratch;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001800 if (rowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001801 if (this->glCaps().packRowLengthSupport()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001802 SkASSERT(!(rowBytes % sizeof(GrColor)));
skia.committer@gmail.com4677acc2013-10-17 07:02:33 +00001803 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001804 static_cast<GrGLint>(rowBytes / sizeof(GrColor))));
bsalomon@google.comc6980972011-11-02 19:57:21 +00001805 readDstRowBytes = rowBytes;
1806 } else {
1807 scratch.reset(tightRowBytes * height);
1808 readDst = scratch.get();
1809 }
1810 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001811 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001812 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
1813 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001814 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
1815 readRect.fWidth, readRect.fHeight,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001816 format, type, readDst));
1817 if (readDstRowBytes != tightRowBytes) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001818 SkASSERT(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00001819 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
1820 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001821 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001822 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001823 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001824 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001825
1826 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00001827 // API presents top-to-bottom. We must preserve the padding contents. Note
1828 // that the above readPixels did not overwrite the padding.
1829 if (readDst == buffer) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001830 SkASSERT(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001831 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001832 scratch.reset(tightRowBytes);
1833 void* tmpRow = scratch.get();
1834 // flip y in-place by rows
1835 const int halfY = height >> 1;
1836 char* top = reinterpret_cast<char*>(buffer);
1837 char* bottom = top + (height - 1) * rowBytes;
1838 for (int y = 0; y < halfY; y++) {
1839 memcpy(tmpRow, top, tightRowBytes);
1840 memcpy(top, bottom, tightRowBytes);
1841 memcpy(bottom, tmpRow, tightRowBytes);
1842 top += rowBytes;
1843 bottom -= rowBytes;
1844 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001845 }
1846 } else {
egdanield803f272015-03-18 13:01:52 -07001847 SkASSERT(readDst != buffer); SkASSERT(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00001848 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001849 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001850 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001851 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001852 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001853 dst += (height-1) * rowBytes;
1854 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001855 for (int y = 0; y < height; y++) {
1856 memcpy(dst, src, tightRowBytes);
1857 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001858 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001859 dst += rowBytes;
1860 } else {
1861 dst -= rowBytes;
1862 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001863 }
1864 }
1865 return true;
1866}
1867
egdanield803f272015-03-18 13:01:52 -07001868void GrGLGpu::flushRenderTarget(GrGLRenderTarget* target, const SkIRect* bound) {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001869
egdanield803f272015-03-18 13:01:52 -07001870 SkASSERT(target);
bsalomon6ba6fa12015-03-04 11:57:37 -08001871
egdanield803f272015-03-18 13:01:52 -07001872 uint32_t rtID = target->getUniqueID();
1873 if (fHWBoundRenderTargetUniqueID != rtID) {
bsalomon1e0bf7e2015-03-14 12:08:51 -07001874 fStats.incRenderTargetBinds();
egdanield803f272015-03-18 13:01:52 -07001875 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, target->renderFBOID()));
1876#ifdef SK_DEBUG
1877 // don't do this check in Chromium -- this is causing
1878 // lots of repeated command buffer flushes when the compositor is
1879 // rendering with Ganesh, which is really slow; even too slow for
1880 // Debug mode.
cdalton1acea862015-06-02 13:05:52 -07001881 if (kChromium_GrGLDriver != this->glContext().driver()) {
egdanield803f272015-03-18 13:01:52 -07001882 GrGLenum status;
1883 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1884 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
1885 SkDebugf("GrGLGpu::flushRenderTarget glCheckFramebufferStatus %x\n", status);
1886 }
bsalomon160f24c2015-03-17 15:55:42 -07001887 }
egdanield803f272015-03-18 13:01:52 -07001888#endif
1889 fHWBoundRenderTargetUniqueID = rtID;
1890 const GrGLIRect& vp = target->getViewport();
1891 if (fHWViewport != vp) {
1892 vp.pushToGLViewport(this->glInterface());
1893 fHWViewport = vp;
bsalomon160f24c2015-03-17 15:55:42 -07001894 }
bsalomon5cd020f2015-03-17 12:46:56 -07001895 }
egdanield803f272015-03-18 13:01:52 -07001896 if (NULL == bound || !bound->isEmpty()) {
1897 target->flagAsNeedingResolve(bound);
1898 }
1899
1900 GrTexture *texture = target->asTexture();
1901 if (texture) {
1902 texture->texturePriv().dirtyMipMaps(true);
1903 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001904}
1905
twiz@google.com0f31ca72011-03-18 17:38:11 +00001906GrGLenum gPrimitiveType2GLMode[] = {
1907 GR_GL_TRIANGLES,
1908 GR_GL_TRIANGLE_STRIP,
1909 GR_GL_TRIANGLE_FAN,
1910 GR_GL_POINTS,
1911 GR_GL_LINES,
1912 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00001913};
1914
bsalomon@google.comd302f142011-03-03 13:54:13 +00001915#define SWAP_PER_DRAW 0
1916
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001917#if SWAP_PER_DRAW
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001918 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001919 #include <AGL/agl.h>
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001920 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comce7357d2012-06-25 17:49:25 +00001921 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00001922 void SwapBuf() {
1923 DWORD procID = GetCurrentProcessId();
1924 HWND hwnd = GetTopWindow(GetDesktopWindow());
1925 while(hwnd) {
1926 DWORD wndProcID = 0;
1927 GetWindowThreadProcessId(hwnd, &wndProcID);
1928 if(wndProcID == procID) {
1929 SwapBuffers(GetDC(hwnd));
1930 }
1931 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
1932 }
1933 }
1934 #endif
1935#endif
1936
bsalomone64eb572015-05-07 11:35:55 -07001937void GrGLGpu::onDraw(const DrawArgs& args, const GrNonInstancedVertices& vertices) {
cdaltond0a840d2015-03-16 17:19:58 -07001938 if (!this->flushGLState(args)) {
bsalomond95263c2014-12-16 13:05:12 -08001939 return;
1940 }
1941
joshualitt873ad0e2015-01-20 09:08:51 -08001942 size_t indexOffsetInBytes = 0;
bsalomoncb8979d2015-05-05 09:51:38 -07001943 this->setupGeometry(*args.fPrimitiveProcessor, vertices, &indexOffsetInBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +00001944
bsalomoncb8979d2015-05-05 09:51:38 -07001945 SkASSERT((size_t)vertices.primitiveType() < SK_ARRAY_COUNT(gPrimitiveType2GLMode));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00001946
bsalomoncb8979d2015-05-05 09:51:38 -07001947 if (vertices.isIndexed()) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001948 GrGLvoid* indices =
bsalomoncb8979d2015-05-05 09:51:38 -07001949 reinterpret_cast<GrGLvoid*>(indexOffsetInBytes + sizeof(uint16_t) *
1950 vertices.startIndex());
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001951 // info.startVertex() was accounted for by setupGeometry.
bsalomoncb8979d2015-05-05 09:51:38 -07001952 GL_CALL(DrawElements(gPrimitiveType2GLMode[vertices.primitiveType()],
1953 vertices.indexCount(),
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001954 GR_GL_UNSIGNED_SHORT,
1955 indices));
1956 } else {
1957 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account for
1958 // startVertex in the DrawElements case. So we always rely on setupGeometry to have
1959 // accounted for startVertex.
bsalomoncb8979d2015-05-05 09:51:38 -07001960 GL_CALL(DrawArrays(gPrimitiveType2GLMode[vertices.primitiveType()], 0,
1961 vertices.vertexCount()));
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001962 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00001963#if SWAP_PER_DRAW
1964 glFlush();
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001965 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001966 aglSwapBuffers(aglGetCurrentContext());
1967 int set_a_break_pt_here = 9;
1968 aglSwapBuffers(aglGetCurrentContext());
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001969 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001970 SwapBuf();
1971 int set_a_break_pt_here = 9;
1972 SwapBuf();
1973 #endif
1974#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00001975}
1976
bsalomon861e1032014-12-16 07:33:49 -08001977void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target) {
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001978 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001979 if (rt->needsResolve()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001980 // Some extensions automatically resolves the texture when it is read.
1981 if (this->glCaps().usesMSAARenderBuffers()) {
egdanield803f272015-03-18 13:01:52 -07001982 SkASSERT(rt->textureFBOID() != rt->renderFBOID());
1983 fStats.incRenderTargetBinds();
1984 fStats.incRenderTargetBinds();
1985 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()));
1986 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()));
1987 // make sure we go through flushRenderTarget() since we've modified
1988 // the bound DRAW FBO ID.
1989 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001990 const GrGLIRect& vp = rt->getViewport();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001991 const SkIRect dirtyRect = rt->getResolveRect();
reed@google.comac10a2d2010-12-22 21:39:39 +00001992
bsalomon@google.com347c3822013-05-01 20:10:01 +00001993 if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001994 // Apple's extension uses the scissor as the blit bounds.
bsalomon3e791242014-12-17 13:43:13 -08001995 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08001996 scissorState.set(dirtyRect);
1997 this->flushScissor(scissorState, vp, rt->origin());
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001998 GL_CALL(ResolveMultisampleFramebuffer());
1999 } else {
robertphillipse85a32d2015-02-10 08:16:55 -08002000 GrGLIRect r;
2001 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
2002 dirtyRect.width(), dirtyRect.height(), target->origin());
2003
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002004 int right = r.fLeft + r.fWidth;
2005 int top = r.fBottom + r.fHeight;
derekf8c8f71a2014-09-16 06:24:57 -07002006
2007 // BlitFrameBuffer respects the scissor, so disable it.
joshualitt77b13072014-10-27 14:51:01 -07002008 this->disableScissor();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002009 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
2010 r.fLeft, r.fBottom, right, top,
2011 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00002012 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002013 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00002014 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00002015 }
2016}
2017
bsalomon@google.com411dad02012-06-05 20:24:20 +00002018namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00002019
bsalomon@google.com411dad02012-06-05 20:24:20 +00002020
2021GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
2022 static const GrGLenum gTable[] = {
2023 GR_GL_KEEP, // kKeep_StencilOp
2024 GR_GL_REPLACE, // kReplace_StencilOp
2025 GR_GL_INCR_WRAP, // kIncWrap_StencilOp
2026 GR_GL_INCR, // kIncClamp_StencilOp
2027 GR_GL_DECR_WRAP, // kDecWrap_StencilOp
2028 GR_GL_DECR, // kDecClamp_StencilOp
2029 GR_GL_ZERO, // kZero_StencilOp
2030 GR_GL_INVERT, // kInvert_StencilOp
2031 };
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00002032 GR_STATIC_ASSERT(SK_ARRAY_COUNT(gTable) == kStencilOpCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002033 GR_STATIC_ASSERT(0 == kKeep_StencilOp);
2034 GR_STATIC_ASSERT(1 == kReplace_StencilOp);
2035 GR_STATIC_ASSERT(2 == kIncWrap_StencilOp);
2036 GR_STATIC_ASSERT(3 == kIncClamp_StencilOp);
2037 GR_STATIC_ASSERT(4 == kDecWrap_StencilOp);
2038 GR_STATIC_ASSERT(5 == kDecClamp_StencilOp);
2039 GR_STATIC_ASSERT(6 == kZero_StencilOp);
2040 GR_STATIC_ASSERT(7 == kInvert_StencilOp);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00002041 SkASSERT((unsigned) op < kStencilOpCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002042 return gTable[op];
2043}
2044
2045void set_gl_stencil(const GrGLInterface* gl,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002046 const GrStencilSettings& settings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002047 GrGLenum glFace,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002048 GrStencilSettings::Face grFace) {
kkinnunenccdaa042014-08-20 01:36:23 -07002049 GrGLenum glFunc = GrToGLStencilFunc(settings.func(grFace));
bsalomon@google.coma3201942012-06-21 19:58:20 +00002050 GrGLenum glFailOp = gr_to_gl_stencil_op(settings.failOp(grFace));
2051 GrGLenum glPassOp = gr_to_gl_stencil_op(settings.passOp(grFace));
2052
2053 GrGLint ref = settings.funcRef(grFace);
2054 GrGLint mask = settings.funcMask(grFace);
2055 GrGLint writeMask = settings.writeMask(grFace);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002056
2057 if (GR_GL_FRONT_AND_BACK == glFace) {
2058 // we call the combined func just in case separate stencil is not
2059 // supported.
2060 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
2061 GR_GL_CALL(gl, StencilMask(writeMask));
2062 GR_GL_CALL(gl, StencilOp(glFailOp, glPassOp, glPassOp));
2063 } else {
2064 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
2065 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
2066 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, glPassOp, glPassOp));
2067 }
2068}
2069}
bsalomon@google.comd302f142011-03-03 13:54:13 +00002070
bsalomon3e791242014-12-17 13:43:13 -08002071void GrGLGpu::flushStencil(const GrStencilSettings& stencilSettings) {
2072 if (fHWStencilSettings != stencilSettings) {
joshualitta58fe352014-10-27 08:39:00 -07002073 if (stencilSettings.isDisabled()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00002074 if (kNo_TriState != fHWStencilTestEnabled) {
2075 GL_CALL(Disable(GR_GL_STENCIL_TEST));
2076 fHWStencilTestEnabled = kNo_TriState;
2077 }
2078 } else {
2079 if (kYes_TriState != fHWStencilTestEnabled) {
2080 GL_CALL(Enable(GR_GL_STENCIL_TEST));
2081 fHWStencilTestEnabled = kYes_TriState;
2082 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00002083 }
joshualitta58fe352014-10-27 08:39:00 -07002084 if (!stencilSettings.isDisabled()) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00002085 if (this->caps()->twoSidedStencilSupport()) {
bsalomon@google.com411dad02012-06-05 20:24:20 +00002086 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002087 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002088 GR_GL_FRONT,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002089 GrStencilSettings::kFront_Face);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002090 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002091 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002092 GR_GL_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002093 GrStencilSettings::kBack_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00002094 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00002095 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002096 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002097 GR_GL_FRONT_AND_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002098 GrStencilSettings::kFront_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00002099 }
2100 }
joshualitta58fe352014-10-27 08:39:00 -07002101 fHWStencilSettings = stencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00002102 }
2103}
2104
cdaltond0a840d2015-03-16 17:19:58 -07002105void GrGLGpu::flushHWAAState(GrRenderTarget* rt, bool useHWAA) {
vbuzinovdded6962015-06-12 08:59:45 -07002106 SkASSERT(!useHWAA || rt->isStencilBufferMultisampled());
bsalomon@google.com202d1392013-03-19 18:58:08 +00002107
cdalton0edea2c2015-05-21 08:27:44 -07002108 if (this->glCaps().multisampleDisableSupport()) {
cdaltond0a840d2015-03-16 17:19:58 -07002109 if (useHWAA) {
2110 if (kYes_TriState != fMSAAEnabled) {
2111 GL_CALL(Enable(GR_GL_MULTISAMPLE));
2112 fMSAAEnabled = kYes_TriState;
2113 }
2114 } else {
2115 if (kNo_TriState != fMSAAEnabled) {
2116 GL_CALL(Disable(GR_GL_MULTISAMPLE));
2117 fMSAAEnabled = kNo_TriState;
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00002118 }
2119 }
2120 }
2121}
2122
egdaniel080e6732014-12-22 07:35:52 -08002123void GrGLGpu::flushBlend(const GrXferProcessor::BlendInfo& blendInfo) {
egdanielb414f252014-07-29 13:15:47 -07002124 // Any optimization to disable blending should have already been applied and
cdalton8917d622015-05-06 13:40:21 -07002125 // tweaked the equation to "add" or "subtract", and the coeffs to (1, 0).
bsalomonf7cc8772015-05-11 11:21:14 -07002126
cdalton8917d622015-05-06 13:40:21 -07002127 GrBlendEquation equation = blendInfo.fEquation;
egdanielc2304142014-12-11 13:15:13 -08002128 GrBlendCoeff srcCoeff = blendInfo.fSrcBlend;
2129 GrBlendCoeff dstCoeff = blendInfo.fDstBlend;
cdalton8917d622015-05-06 13:40:21 -07002130 bool blendOff = (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
2131 kOne_GrBlendCoeff == srcCoeff && kZero_GrBlendCoeff == dstCoeff;
egdanielb414f252014-07-29 13:15:47 -07002132 if (blendOff) {
2133 if (kNo_TriState != fHWBlendState.fEnabled) {
2134 GL_CALL(Disable(GR_GL_BLEND));
joel.liang9764c402015-07-09 19:46:18 -07002135
2136 // Workaround for the ARM KHR_blend_equation_advanced blacklist issue
2137 // https://code.google.com/p/skia/issues/detail?id=3943
2138 if (kARM_GrGLVendor == this->ctxInfo().vendor() &&
2139 GrBlendEquationIsAdvanced(fHWBlendState.fEquation)) {
2140 SkASSERT(this->caps()->advancedBlendEquationSupport());
2141 // Set to any basic blending equation.
2142 GrBlendEquation blend_equation = kAdd_GrBlendEquation;
2143 GL_CALL(BlendEquation(gXfermodeEquation2Blend[blend_equation]));
2144 fHWBlendState.fEquation = blend_equation;
2145 }
2146
egdanielb414f252014-07-29 13:15:47 -07002147 fHWBlendState.fEnabled = kNo_TriState;
2148 }
cdalton8917d622015-05-06 13:40:21 -07002149 return;
2150 }
2151
2152 if (kYes_TriState != fHWBlendState.fEnabled) {
2153 GL_CALL(Enable(GR_GL_BLEND));
2154 fHWBlendState.fEnabled = kYes_TriState;
2155 }
2156
2157 if (fHWBlendState.fEquation != equation) {
2158 GL_CALL(BlendEquation(gXfermodeEquation2Blend[equation]));
2159 fHWBlendState.fEquation = equation;
2160 }
2161
2162 if (GrBlendEquationIsAdvanced(equation)) {
2163 SkASSERT(this->caps()->advancedBlendEquationSupport());
2164 // Advanced equations have no other blend state.
2165 return;
2166 }
2167
2168 if (fHWBlendState.fSrcCoeff != srcCoeff ||
2169 fHWBlendState.fDstCoeff != dstCoeff) {
2170 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
2171 gXfermodeCoeff2Blend[dstCoeff]));
2172 fHWBlendState.fSrcCoeff = srcCoeff;
2173 fHWBlendState.fDstCoeff = dstCoeff;
2174 }
2175
2176 GrColor blendConst = blendInfo.fBlendConstant;
2177 if ((BlendCoeffReferencesConstant(srcCoeff) ||
2178 BlendCoeffReferencesConstant(dstCoeff)) &&
2179 (!fHWBlendState.fConstColorValid ||
2180 fHWBlendState.fConstColor != blendConst)) {
2181 GrGLfloat c[4];
2182 GrColorToRGBAFloat(blendConst, c);
2183 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
2184 fHWBlendState.fConstColor = blendConst;
2185 fHWBlendState.fConstColorValid = true;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002186 }
2187}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00002188
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00002189static inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00002190 static const GrGLenum gWrapModes[] = {
2191 GR_GL_CLAMP_TO_EDGE,
2192 GR_GL_REPEAT,
2193 GR_GL_MIRRORED_REPEAT
2194 };
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +00002195 GR_STATIC_ASSERT(SkShader::kTileModeCount == SK_ARRAY_COUNT(gWrapModes));
bsalomon@google.comb8670992012-07-25 21:27:09 +00002196 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
2197 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
2198 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
2199 return gWrapModes[tm];
2200}
2201
bsalomon861e1032014-12-16 07:33:49 -08002202void GrGLGpu::bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture) {
bsalomon49f085d2014-09-05 13:34:00 -07002203 SkASSERT(texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00002204
bsalomon@google.comb8670992012-07-25 21:27:09 +00002205 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
2206 // from the rt it will still be the last bound texture, but it needs resolving. So keep this
bsalomon@google.com4c883782012-06-04 19:05:11 +00002207 // out of the "last != next" check.
bsalomon37dd3312014-11-03 08:47:23 -08002208 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon49f085d2014-09-05 13:34:00 -07002209 if (texRT) {
bsalomon@google.com4c883782012-06-04 19:05:11 +00002210 this->onResolveRenderTarget(texRT);
2211 }
2212
bsalomon1c63bf62014-07-22 13:09:46 -07002213 uint32_t textureID = texture->getUniqueID();
2214 if (fHWBoundTextureUniqueIDs[unitIdx] != textureID) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002215 this->setTextureUnit(unitIdx);
2216 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texture->textureID()));
bsalomon1c63bf62014-07-22 13:09:46 -07002217 fHWBoundTextureUniqueIDs[unitIdx] = textureID;
bsalomon@google.com4c883782012-06-04 19:05:11 +00002218 }
2219
bsalomon@google.com4c883782012-06-04 19:05:11 +00002220 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002221 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002222 bool setAll = timestamp < this->getResetTimestamp();
2223 GrGLTexture::TexParams newTexParams;
2224
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002225 static GrGLenum glMinFilterModes[] = {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002226 GR_GL_NEAREST,
2227 GR_GL_LINEAR,
2228 GR_GL_LINEAR_MIPMAP_LINEAR
2229 };
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002230 static GrGLenum glMagFilterModes[] = {
2231 GR_GL_NEAREST,
2232 GR_GL_LINEAR,
2233 GR_GL_LINEAR
2234 };
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002235 GrTextureParams::FilterMode filterMode = params.filterMode();
bsalomonefd7d452014-10-23 14:17:46 -07002236
2237 if (GrTextureParams::kMipMap_FilterMode == filterMode) {
2238 if (!this->caps()->mipMapSupport() || GrPixelConfigIsCompressed(texture->config())) {
2239 filterMode = GrTextureParams::kBilerp_FilterMode;
2240 }
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002241 }
bsalomonefd7d452014-10-23 14:17:46 -07002242
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002243 newTexParams.fMinFilter = glMinFilterModes[filterMode];
2244 newTexParams.fMagFilter = glMagFilterModes[filterMode];
skia.committer@gmail.comaeefb2a2013-07-27 07:01:06 +00002245
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002246 if (GrTextureParams::kMipMap_FilterMode == filterMode &&
bsalomonefd7d452014-10-23 14:17:46 -07002247 texture->texturePriv().mipMapsAreDirty()) {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002248 GL_CALL(GenerateMipmap(GR_GL_TEXTURE_2D));
bsalomonafbf2d62014-09-30 12:18:44 -07002249 texture->texturePriv().dirtyMipMaps(false);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002250 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00002251
bsalomon@google.comb8670992012-07-25 21:27:09 +00002252 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
2253 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002254 memcpy(newTexParams.fSwizzleRGBA,
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002255 GrGLShaderBuilder::GetTexParamSwizzle(texture->config(), this->glCaps()),
bsalomon@google.com4c883782012-06-04 19:05:11 +00002256 sizeof(newTexParams.fSwizzleRGBA));
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002257 if (setAll || newTexParams.fMagFilter != oldTexParams.fMagFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002258 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002259 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2260 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002261 newTexParams.fMagFilter));
2262 }
2263 if (setAll || newTexParams.fMinFilter != oldTexParams.fMinFilter) {
2264 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002265 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2266 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002267 newTexParams.fMinFilter));
bsalomon@google.com4c883782012-06-04 19:05:11 +00002268 }
2269 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002270 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002271 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2272 GR_GL_TEXTURE_WRAP_S,
2273 newTexParams.fWrapS));
2274 }
2275 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002276 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002277 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2278 GR_GL_TEXTURE_WRAP_T,
2279 newTexParams.fWrapT));
2280 }
2281 if (this->glCaps().textureSwizzleSupport() &&
2282 (setAll || memcmp(newTexParams.fSwizzleRGBA,
2283 oldTexParams.fSwizzleRGBA,
2284 sizeof(newTexParams.fSwizzleRGBA)))) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002285 this->setTextureUnit(unitIdx);
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002286 if (this->glStandard() == kGLES_GrGLStandard) {
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00002287 // ES3 added swizzle support but not GL_TEXTURE_SWIZZLE_RGBA.
2288 const GrGLenum* swizzle = newTexParams.fSwizzleRGBA;
2289 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_R, swizzle[0]));
2290 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_G, swizzle[1]));
2291 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_B, swizzle[2]));
2292 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_A, swizzle[3]));
2293 } else {
2294 GR_STATIC_ASSERT(sizeof(newTexParams.fSwizzleRGBA[0]) == sizeof(GrGLint));
2295 const GrGLint* swizzle = reinterpret_cast<const GrGLint*>(newTexParams.fSwizzleRGBA);
2296 GL_CALL(TexParameteriv(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_RGBA, swizzle));
2297 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00002298 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002299 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002300}
2301
bsalomon3e791242014-12-17 13:43:13 -08002302void GrGLGpu::flushDither(bool dither) {
2303 if (dither) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002304 if (kYes_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002305 GL_CALL(Enable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002306 fHWDitherEnabled = kYes_TriState;
2307 }
2308 } else {
2309 if (kNo_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002310 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002311 fHWDitherEnabled = kNo_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +00002312 }
2313 }
bsalomon3e791242014-12-17 13:43:13 -08002314}
reed@google.comac10a2d2010-12-22 21:39:39 +00002315
egdaniel080e6732014-12-22 07:35:52 -08002316void GrGLGpu::flushColorWrite(bool writeColor) {
2317 if (!writeColor) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002318 if (kNo_TriState != fHWWriteToColor) {
2319 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
2320 GR_GL_FALSE, GR_GL_FALSE));
2321 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002322 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002323 } else {
2324 if (kYes_TriState != fHWWriteToColor) {
2325 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
2326 fHWWriteToColor = kYes_TriState;
2327 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00002328 }
bsalomon3e791242014-12-17 13:43:13 -08002329}
bsalomon@google.comd302f142011-03-03 13:54:13 +00002330
egdaniel8dd688b2015-01-22 10:16:09 -08002331void GrGLGpu::flushDrawFace(GrPipelineBuilder::DrawFace face) {
bsalomon3e791242014-12-17 13:43:13 -08002332 if (fHWDrawFace != face) {
2333 switch (face) {
egdaniel8dd688b2015-01-22 10:16:09 -08002334 case GrPipelineBuilder::kCCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002335 GL_CALL(Enable(GR_GL_CULL_FACE));
2336 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002337 break;
egdaniel8dd688b2015-01-22 10:16:09 -08002338 case GrPipelineBuilder::kCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002339 GL_CALL(Enable(GR_GL_CULL_FACE));
2340 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002341 break;
egdaniel8dd688b2015-01-22 10:16:09 -08002342 case GrPipelineBuilder::kBoth_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002343 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002344 break;
2345 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00002346 SkFAIL("Unknown draw face.");
bsalomon@google.comd302f142011-03-03 13:54:13 +00002347 }
bsalomon3e791242014-12-17 13:43:13 -08002348 fHWDrawFace = face;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002349 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002350}
2351
bsalomon861e1032014-12-16 07:33:49 -08002352bool GrGLGpu::configToGLFormats(GrPixelConfig config,
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002353 bool getSizedInternalFormat,
2354 GrGLenum* internalFormat,
2355 GrGLenum* externalFormat,
jvanverth672bb7f2015-07-13 07:19:57 -07002356 GrGLenum* externalType) const {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002357 GrGLenum dontCare;
2358 if (NULL == internalFormat) {
2359 internalFormat = &dontCare;
2360 }
2361 if (NULL == externalFormat) {
2362 externalFormat = &dontCare;
2363 }
2364 if (NULL == externalType) {
2365 externalType = &dontCare;
2366 }
2367
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002368 if(!this->glCaps().isConfigTexturable(config)) {
2369 return false;
2370 }
2371
reed@google.comac10a2d2010-12-22 21:39:39 +00002372 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00002373 case kRGBA_8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +00002374 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002375 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002376 if (getSizedInternalFormat) {
2377 *internalFormat = GR_GL_RGBA8;
2378 } else {
2379 *internalFormat = GR_GL_RGBA;
2380 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002381 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002382 break;
bsalomon@google.com0342a852012-08-20 19:22:38 +00002383 case kBGRA_8888_GrPixelConfig:
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002384 if (this->glCaps().bgraIsInternalFormat()) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002385 if (getSizedInternalFormat) {
2386 *internalFormat = GR_GL_BGRA8;
2387 } else {
2388 *internalFormat = GR_GL_BGRA;
2389 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002390 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002391 if (getSizedInternalFormat) {
2392 *internalFormat = GR_GL_RGBA8;
2393 } else {
2394 *internalFormat = GR_GL_RGBA;
2395 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002396 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002397 *externalFormat = GR_GL_BGRA;
bsalomon@google.com6f379512011-11-16 20:36:03 +00002398 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002399 break;
jvanverthfa1e8a72014-12-22 08:31:49 -08002400 case kSRGBA_8888_GrPixelConfig:
2401 *internalFormat = GR_GL_SRGB_ALPHA;
2402 *externalFormat = GR_GL_SRGB_ALPHA;
jvanverth99babf22015-05-22 06:06:40 -07002403 if (getSizedInternalFormat || kGL_GrGLStandard == this->glStandard()) {
2404 // desktop or ES 3.0
2405 SkASSERT(this->glVersion() >= GR_GL_VER(3, 0));
jvanverthfa1e8a72014-12-22 08:31:49 -08002406 *internalFormat = GR_GL_SRGB8_ALPHA8;
jvanverth99babf22015-05-22 06:06:40 -07002407 *externalFormat = GR_GL_RGBA;
jvanverthfa1e8a72014-12-22 08:31:49 -08002408 } else {
jvanverth99babf22015-05-22 06:06:40 -07002409 // ES 2.0 with EXT_sRGB
2410 SkASSERT(kGL_GrGLStandard != this->glStandard() &&
2411 this->glVersion() < GR_GL_VER(3, 0));
jvanverthfa1e8a72014-12-22 08:31:49 -08002412 *internalFormat = GR_GL_SRGB_ALPHA;
jvanverth99babf22015-05-22 06:06:40 -07002413 *externalFormat = GR_GL_SRGB_ALPHA;
jvanverthfa1e8a72014-12-22 08:31:49 -08002414 }
2415 *externalType = GR_GL_UNSIGNED_BYTE;
2416 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002417 case kRGB_565_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002418 *internalFormat = GR_GL_RGB;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002419 *externalFormat = GR_GL_RGB;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002420 if (getSizedInternalFormat) {
jvanverth3f801cb2014-12-16 09:49:38 -08002421 if (!this->glCaps().ES2CompatibilitySupport()) {
2422 *internalFormat = GR_GL_RGB5;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002423 } else {
2424 *internalFormat = GR_GL_RGB565;
2425 }
2426 } else {
2427 *internalFormat = GR_GL_RGB;
2428 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002429 *externalType = GR_GL_UNSIGNED_SHORT_5_6_5;
reed@google.comac10a2d2010-12-22 21:39:39 +00002430 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002431 case kRGBA_4444_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002432 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002433 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002434 if (getSizedInternalFormat) {
2435 *internalFormat = GR_GL_RGBA4;
2436 } else {
2437 *internalFormat = GR_GL_RGBA;
2438 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002439 *externalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
reed@google.comac10a2d2010-12-22 21:39:39 +00002440 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002441 case kIndex_8_GrPixelConfig:
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002442 // no sized/unsized internal format distinction here
2443 *internalFormat = GR_GL_PALETTE8_RGBA8;
reed@google.comac10a2d2010-12-22 21:39:39 +00002444 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002445 case kAlpha_8_GrPixelConfig:
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002446 if (this->glCaps().textureRedSupport()) {
2447 *internalFormat = GR_GL_RED;
2448 *externalFormat = GR_GL_RED;
2449 if (getSizedInternalFormat) {
2450 *internalFormat = GR_GL_R8;
2451 } else {
2452 *internalFormat = GR_GL_RED;
2453 }
2454 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002455 } else {
2456 *internalFormat = GR_GL_ALPHA;
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002457 *externalFormat = GR_GL_ALPHA;
2458 if (getSizedInternalFormat) {
2459 *internalFormat = GR_GL_ALPHA8;
2460 } else {
2461 *internalFormat = GR_GL_ALPHA;
2462 }
2463 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002464 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002465 break;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002466 case kETC1_GrPixelConfig:
egdanield588c012015-03-27 12:22:10 -07002467 *internalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002468 break;
2469 case kLATC_GrPixelConfig:
2470 switch(this->glCaps().latcAlias()) {
2471 case GrGLCaps::kLATC_LATCAlias:
2472 *internalFormat = GR_GL_COMPRESSED_LUMINANCE_LATC1;
2473 break;
2474 case GrGLCaps::kRGTC_LATCAlias:
2475 *internalFormat = GR_GL_COMPRESSED_RED_RGTC1;
2476 break;
2477 case GrGLCaps::k3DC_LATCAlias:
2478 *internalFormat = GR_GL_COMPRESSED_3DC_X;
2479 break;
2480 }
2481 break;
krajcevski238b4562014-06-30 09:09:22 -07002482 case kR11_EAC_GrPixelConfig:
egdanield588c012015-03-27 12:22:10 -07002483 *internalFormat = GR_GL_COMPRESSED_R11_EAC;
krajcevski238b4562014-06-30 09:09:22 -07002484 break;
krajcevski7ef21622014-07-16 15:21:13 -07002485
2486 case kASTC_12x12_GrPixelConfig:
egdanield588c012015-03-27 12:22:10 -07002487 *internalFormat = GR_GL_COMPRESSED_RGBA_ASTC_12x12_KHR;
krajcevski7ef21622014-07-16 15:21:13 -07002488 break;
2489
joshualittee5da552014-07-16 13:32:56 -07002490 case kRGBA_float_GrPixelConfig:
2491 *internalFormat = GR_GL_RGBA32F;
2492 *externalFormat = GR_GL_RGBA;
2493 *externalType = GR_GL_FLOAT;
2494 break;
krajcevski7ef21622014-07-16 15:21:13 -07002495
jvanverth28f9c602014-12-05 13:06:35 -08002496 case kAlpha_half_GrPixelConfig:
jvanverth1334c212014-12-18 05:44:55 -08002497 if (this->glCaps().textureRedSupport()) {
2498 if (getSizedInternalFormat) {
2499 *internalFormat = GR_GL_R16F;
2500 } else {
2501 *internalFormat = GR_GL_RED;
2502 }
jvanverth28f9c602014-12-05 13:06:35 -08002503 *externalFormat = GR_GL_RED;
jvanverth1334c212014-12-18 05:44:55 -08002504 } else {
2505 if (getSizedInternalFormat) {
2506 *internalFormat = GR_GL_ALPHA16F;
2507 } else {
2508 *internalFormat = GR_GL_ALPHA;
2509 }
2510 *externalFormat = GR_GL_ALPHA;
2511 }
2512 if (kGL_GrGLStandard == this->glStandard() || this->glVersion() >= GR_GL_VER(3, 0)) {
jvanvertha60b2ea2014-12-12 05:58:06 -08002513 *externalType = GR_GL_HALF_FLOAT;
jvanverth28f9c602014-12-05 13:06:35 -08002514 } else {
jvanverth1334c212014-12-18 05:44:55 -08002515 *externalType = GR_GL_HALF_FLOAT_OES;
jvanverth28f9c602014-12-05 13:06:35 -08002516 }
2517 break;
2518
jvanverthfb5df432015-05-21 08:12:27 -07002519 case kRGBA_half_GrPixelConfig:
2520 *internalFormat = GR_GL_RGBA16F;
2521 *externalFormat = GR_GL_RGBA;
2522 if (kGL_GrGLStandard == this->glStandard() || this->glVersion() >= GR_GL_VER(3, 0)) {
2523 *externalType = GR_GL_HALF_FLOAT;
2524 } else {
2525 *externalType = GR_GL_HALF_FLOAT_OES;
2526 }
2527 break;
2528
reed@google.comac10a2d2010-12-22 21:39:39 +00002529 default:
2530 return false;
2531 }
2532 return true;
2533}
2534
bsalomon861e1032014-12-16 07:33:49 -08002535void GrGLGpu::setTextureUnit(int unit) {
bsalomon1c63bf62014-07-22 13:09:46 -07002536 SkASSERT(unit >= 0 && unit < fHWBoundTextureUniqueIDs.count());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002537 if (unit != fHWActiveTextureUnitIdx) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002538 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00002539 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002540 }
2541}
bsalomon@google.com316f99232011-01-13 21:28:12 +00002542
bsalomon861e1032014-12-16 07:33:49 -08002543void GrGLGpu::setScratchTextureUnit() {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002544 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
bsalomon1c63bf62014-07-22 13:09:46 -07002545 int lastUnitIdx = fHWBoundTextureUniqueIDs.count() - 1;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002546 if (lastUnitIdx != fHWActiveTextureUnitIdx) {
2547 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx));
2548 fHWActiveTextureUnitIdx = lastUnitIdx;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002549 }
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002550 // clear out the this field so that if a program does use this unit it will rebind the correct
2551 // texture.
bsalomon1c63bf62014-07-22 13:09:46 -07002552 fHWBoundTextureUniqueIDs[lastUnitIdx] = SK_InvalidUniqueID;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002553}
2554
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002555namespace {
2556// Determines whether glBlitFramebuffer could be used between src and dst.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002557inline bool can_blit_framebuffer(const GrSurface* dst,
2558 const GrSurface* src,
egdaniel0f5f9672015-02-03 11:10:51 -08002559 const GrGLGpu* gpu) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002560 if (gpu->glCaps().isConfigRenderable(dst->config(), dst->desc().fSampleCnt > 0) &&
2561 gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon@google.com347c3822013-05-01 20:10:01 +00002562 gpu->glCaps().usesMSAARenderBuffers()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00002563 // ES3 doesn't allow framebuffer blits when the src has MSAA and the configs don't match
2564 // or the rects are not the same (not just the same size but have the same edges).
2565 if (GrGLCaps::kES_3_0_MSFBOType == gpu->glCaps().msFBOType() &&
2566 (src->desc().fSampleCnt > 0 || src->config() != dst->config())) {
2567 return false;
2568 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002569 return true;
2570 } else {
2571 return false;
2572 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002573}
bsalomon@google.comeb851172013-04-15 13:51:00 +00002574
2575inline bool can_copy_texsubimage(const GrSurface* dst,
2576 const GrSurface* src,
egdaniel0f5f9672015-02-03 11:10:51 -08002577 const GrGLGpu* gpu) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002578 // Table 3.9 of the ES2 spec indicates the supported formats with CopyTexSubImage
2579 // and BGRA isn't in the spec. There doesn't appear to be any extension that adds it. Perhaps
2580 // many drivers would allow it to work, but ANGLE does not.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002581 if (kGLES_GrGLStandard == gpu->glStandard() && gpu->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00002582 (kBGRA_8888_GrPixelConfig == dst->config() || kBGRA_8888_GrPixelConfig == src->config())) {
2583 return false;
2584 }
2585 const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget());
2586 // If dst is multisampled (and uses an extension where there is a separate MSAA renderbuffer)
2587 // then we don't want to copy to the texture but to the MSAA buffer.
egdanield803f272015-03-18 13:01:52 -07002588 if (dstRT && dstRT->renderFBOID() != dstRT->textureFBOID()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002589 return false;
2590 }
bsalomon@google.coma2719852013-04-17 14:25:27 +00002591 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2592 // If the src is multisampled (and uses an extension where there is a separate MSAA
2593 // renderbuffer) then it is an invalid operation to call CopyTexSubImage
egdanield803f272015-03-18 13:01:52 -07002594 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomon@google.coma2719852013-04-17 14:25:27 +00002595 return false;
2596 }
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002597 if (gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon49f085d2014-09-05 13:34:00 -07002598 dst->asTexture() &&
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002599 dst->origin() == src->origin() &&
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002600 !GrPixelConfigIsCompressed(src->config())) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002601 return true;
2602 } else {
2603 return false;
2604 }
2605}
2606
robertphillips754f4e92014-09-18 13:52:08 -07002607}
2608
bsalomon@google.comeb851172013-04-15 13:51:00 +00002609// If a temporary FBO was created, its non-zero ID is returned. The viewport that the copy rect is
2610// relative to is output.
egdanield803f272015-03-18 13:01:52 -07002611GrGLuint GrGLGpu::bindSurfaceAsFBO(GrSurface* surface, GrGLenum fboTarget, GrGLIRect* viewport,
2612 TempFBOTarget tempFBOTarget) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002613 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
bsalomon@google.comeb851172013-04-15 13:51:00 +00002614 if (NULL == rt) {
bsalomon49f085d2014-09-05 13:34:00 -07002615 SkASSERT(surface->asTexture());
bsalomon@google.comeb851172013-04-15 13:51:00 +00002616 GrGLuint texID = static_cast<GrGLTexture*>(surface->asTexture())->textureID();
egdanield803f272015-03-18 13:01:52 -07002617 GrGLuint* tempFBOID;
2618 tempFBOID = kSrc_TempFBOTarget == tempFBOTarget ? &fTempSrcFBOID : &fTempDstFBOID;
egdaniel0f5f9672015-02-03 11:10:51 -08002619
egdanield803f272015-03-18 13:01:52 -07002620 if (0 == *tempFBOID) {
2621 GR_GL_CALL(this->glInterface(), GenFramebuffers(1, tempFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -08002622 }
2623
egdanield803f272015-03-18 13:01:52 -07002624 fStats.incRenderTargetBinds();
2625 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, *tempFBOID));
2626 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
robertphillips754f4e92014-09-18 13:52:08 -07002627 GR_GL_COLOR_ATTACHMENT0,
2628 GR_GL_TEXTURE_2D,
2629 texID,
2630 0));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002631 viewport->fLeft = 0;
2632 viewport->fBottom = 0;
2633 viewport->fWidth = surface->width();
2634 viewport->fHeight = surface->height();
egdanield803f272015-03-18 13:01:52 -07002635 return *tempFBOID;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002636 } else {
egdanield803f272015-03-18 13:01:52 -07002637 GrGLuint tempFBOID = 0;
2638 fStats.incRenderTargetBinds();
2639 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, rt->renderFBOID()));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002640 *viewport = rt->getViewport();
egdanield803f272015-03-18 13:01:52 -07002641 return tempFBOID;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002642 }
egdaniel0f5f9672015-02-03 11:10:51 -08002643}
2644
egdanield803f272015-03-18 13:01:52 -07002645void GrGLGpu::unbindTextureFromFBO(GrGLenum fboTarget) {
2646 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
egdaniel0f5f9672015-02-03 11:10:51 -08002647 GR_GL_COLOR_ATTACHMENT0,
2648 GR_GL_TEXTURE_2D,
2649 0,
2650 0));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002651}
2652
joshualitt1c735482015-07-13 08:08:25 -07002653bool GrGLGpu::initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const {
bsalomon6df86402015-06-01 10:41:49 -07002654 // If the src is a texture, we can implement the blit as a draw assuming the config is
2655 // renderable.
2656 if (src->asTexture() && this->caps()->isConfigRenderable(src->config(), false)) {
2657 desc->fOrigin = kDefault_GrSurfaceOrigin;
2658 desc->fFlags = kRenderTarget_GrSurfaceFlag;
2659 desc->fConfig = src->config();
2660 return true;
2661 }
2662
2663 // We look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
bsalomonf90a02b2014-11-26 12:28:00 -08002664 // possible and we return false to fallback to creating a render target dst for render-to-
2665 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2666 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2667
bsalomon@google.comeb851172013-04-15 13:51:00 +00002668 // Check for format issues with glCopyTexSubImage2D
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002669 if (kGLES_GrGLStandard == this->glStandard() && this->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00002670 kBGRA_8888_GrPixelConfig == src->config()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002671 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2672 // then we set up for that, otherwise fail.
2673 if (this->caps()->isConfigRenderable(kBGRA_8888_GrPixelConfig, false)) {
2674 desc->fOrigin = kDefault_GrSurfaceOrigin;
bsalomon6bc1b5f2015-02-23 09:06:38 -08002675 desc->fFlags = kRenderTarget_GrSurfaceFlag;
bsalomonf90a02b2014-11-26 12:28:00 -08002676 desc->fConfig = kBGRA_8888_GrPixelConfig;
2677 return true;
2678 }
2679 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002680 } else if (NULL == src->asRenderTarget()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002681 // CopyTexSubImage2D or fbo blit would require creating a temp fbo for the src.
2682 return false;
bsalomon@google.coma2719852013-04-17 14:25:27 +00002683 }
2684
2685 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
egdanield803f272015-03-18 13:01:52 -07002686 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002687 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO blit or
2688 // fail.
2689 if (this->caps()->isConfigRenderable(src->config(), false)) {
2690 desc->fOrigin = kDefault_GrSurfaceOrigin;
bsalomon6bc1b5f2015-02-23 09:06:38 -08002691 desc->fFlags = kRenderTarget_GrSurfaceFlag;
bsalomonf90a02b2014-11-26 12:28:00 -08002692 desc->fConfig = src->config();
2693 return true;
2694 }
2695 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002696 }
bsalomonf90a02b2014-11-26 12:28:00 -08002697
2698 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2699 desc->fConfig = src->config();
2700 desc->fOrigin = src->origin();
2701 desc->fFlags = kNone_GrSurfaceFlags;
2702 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002703}
2704
bsalomon861e1032014-12-16 07:33:49 -08002705bool GrGLGpu::copySurface(GrSurface* dst,
joshualitta7024152014-11-03 14:16:35 -08002706 GrSurface* src,
2707 const SkIRect& srcRect,
2708 const SkIPoint& dstPoint) {
bsalomon6df86402015-06-01 10:41:49 -07002709 if (src->asTexture() && dst->asRenderTarget()) {
2710 this->copySurfaceAsDraw(dst, src, srcRect, dstPoint);
mtklein404b3b22015-05-18 09:29:10 -07002711 return true;
bsalomon5df6fee2015-05-18 06:26:15 -07002712 }
bsalomon6df86402015-06-01 10:41:49 -07002713
2714 if (can_copy_texsubimage(dst, src, this)) {
2715 this->copySurfaceAsCopyTexSubImage(dst, src, srcRect, dstPoint);
2716 return true;
2717 }
2718
mtklein404b3b22015-05-18 09:29:10 -07002719 if (can_blit_framebuffer(dst, src, this)) {
bsalomon6df86402015-06-01 10:41:49 -07002720 return this->copySurfaceAsBlitFramebuffer(dst, src, srcRect, dstPoint);
2721 }
2722
2723 return false;
2724}
2725
2726
2727void GrGLGpu::createCopyProgram() {
jvanverthcba99b82015-06-24 06:59:57 -07002728 const char* version = GrGLGetGLSLVersionDecl(this->ctxInfo());
bsalomon6df86402015-06-01 10:41:49 -07002729
2730 GrGLShaderVar aVertex("a_vertex", kVec2f_GrSLType, GrShaderVar::kAttribute_TypeModifier);
2731 GrGLShaderVar uTexCoordXform("u_texCoordXform", kVec4f_GrSLType,
2732 GrShaderVar::kUniform_TypeModifier);
2733 GrGLShaderVar uPosXform("u_posXform", kVec4f_GrSLType, GrShaderVar::kUniform_TypeModifier);
2734 GrGLShaderVar uTexture("u_texture", kSampler2D_GrSLType, GrShaderVar::kUniform_TypeModifier);
2735 GrGLShaderVar vTexCoord("v_texCoord", kVec2f_GrSLType, GrShaderVar::kVaryingOut_TypeModifier);
2736 GrGLShaderVar oFragColor("o_FragColor", kVec4f_GrSLType, GrShaderVar::kOut_TypeModifier);
2737
2738 SkString vshaderTxt(version);
2739 aVertex.appendDecl(this->ctxInfo(), &vshaderTxt);
2740 vshaderTxt.append(";");
2741 uTexCoordXform.appendDecl(this->ctxInfo(), &vshaderTxt);
2742 vshaderTxt.append(";");
2743 uPosXform.appendDecl(this->ctxInfo(), &vshaderTxt);
2744 vshaderTxt.append(";");
2745 vTexCoord.appendDecl(this->ctxInfo(), &vshaderTxt);
2746 vshaderTxt.append(";");
2747
2748 vshaderTxt.append(
2749 "// Copy Program VS\n"
2750 "void main() {"
2751 " v_texCoord = a_vertex.xy * u_texCoordXform.xy + u_texCoordXform.zw;"
2752 " gl_Position.xy = a_vertex * u_posXform.xy + u_posXform.zw;"
2753 " gl_Position.zw = vec2(0, 1);"
2754 "}"
2755 );
2756
2757 SkString fshaderTxt(version);
jvanverthcba99b82015-06-24 06:59:57 -07002758 GrGLAppendGLSLDefaultFloatPrecisionDeclaration(kDefault_GrSLPrecision, this->glStandard(),
2759 &fshaderTxt);
bsalomon6df86402015-06-01 10:41:49 -07002760 vTexCoord.setTypeModifier(GrShaderVar::kVaryingIn_TypeModifier);
2761 vTexCoord.appendDecl(this->ctxInfo(), &fshaderTxt);
2762 fshaderTxt.append(";");
2763 uTexture.appendDecl(this->ctxInfo(), &fshaderTxt);
2764 fshaderTxt.append(";");
2765 const char* fsOutName;
2766 if (this->glCaps().glslCaps()->mustDeclareFragmentShaderOutput()) {
2767 oFragColor.appendDecl(this->ctxInfo(), &fshaderTxt);
2768 fshaderTxt.append(";");
2769 fsOutName = oFragColor.c_str();
2770 } else {
2771 fsOutName = "gl_FragColor";
2772 }
2773 fshaderTxt.appendf(
2774 "// Copy Program FS\n"
2775 "void main() {"
2776 " %s = %s(u_texture, v_texCoord);"
2777 "}",
2778 fsOutName,
2779 GrGLSLTexture2DFunctionName(kVec2f_GrSLType, this->glslGeneration())
2780 );
2781
2782 GL_CALL_RET(fCopyProgram.fProgram, CreateProgram());
2783 const char* str;
2784 GrGLint length;
2785
2786 str = vshaderTxt.c_str();
2787 length = SkToInt(vshaderTxt.size());
2788 GrGLuint vshader = GrGLCompileAndAttachShader(*fGLContext, fCopyProgram.fProgram,
2789 GR_GL_VERTEX_SHADER, &str, &length, 1, &fStats);
2790
2791 str = fshaderTxt.c_str();
2792 length = SkToInt(fshaderTxt.size());
2793 GrGLuint fshader = GrGLCompileAndAttachShader(*fGLContext, fCopyProgram.fProgram,
2794 GR_GL_FRAGMENT_SHADER, &str, &length, 1, &fStats);
2795
2796 GL_CALL(LinkProgram(fCopyProgram.fProgram));
2797
2798 GL_CALL_RET(fCopyProgram.fTextureUniform, GetUniformLocation(fCopyProgram.fProgram,
2799 "u_texture"));
2800 GL_CALL_RET(fCopyProgram.fPosXformUniform, GetUniformLocation(fCopyProgram.fProgram,
2801 "u_posXform"));
2802 GL_CALL_RET(fCopyProgram.fTexCoordXformUniform, GetUniformLocation(fCopyProgram.fProgram,
2803 "u_texCoordXform"));
2804
2805 GL_CALL(BindAttribLocation(fCopyProgram.fProgram, 0, "a_vertex"));
2806
2807 GL_CALL(DeleteShader(vshader));
2808 GL_CALL(DeleteShader(fshader));
2809
2810 GL_CALL(GenBuffers(1, &fCopyProgram.fArrayBuffer));
2811 fHWGeometryState.setVertexBufferID(this, fCopyProgram.fArrayBuffer);
2812 static const GrGLfloat vdata[] = {
2813 0, 0,
2814 0, 1,
2815 1, 0,
2816 1, 1
2817 };
2818 GL_ALLOC_CALL(this->glInterface(),
2819 BufferData(GR_GL_ARRAY_BUFFER,
2820 (GrGLsizeiptr) sizeof(vdata),
2821 vdata, // data ptr
2822 GR_GL_STATIC_DRAW));
2823}
2824
2825void GrGLGpu::copySurfaceAsDraw(GrSurface* dst,
2826 GrSurface* src,
2827 const SkIRect& srcRect,
2828 const SkIPoint& dstPoint) {
2829 int w = srcRect.width();
2830 int h = srcRect.height();
2831
2832 GrGLTexture* srcTex = static_cast<GrGLTexture*>(src->asTexture());
2833 GrTextureParams params(SkShader::kClamp_TileMode, GrTextureParams::kNone_FilterMode);
2834 this->bindTexture(0, params, srcTex);
2835
2836 GrGLRenderTarget* dstRT = static_cast<GrGLRenderTarget*>(dst->asRenderTarget());
2837 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, w, h);
2838 this->flushRenderTarget(dstRT, &dstRect);
2839
2840 GL_CALL(UseProgram(fCopyProgram.fProgram));
2841 fHWProgramID = fCopyProgram.fProgram;
2842
2843 fHWGeometryState.setVertexArrayID(this, 0);
2844
2845 GrGLAttribArrayState* attribs =
2846 fHWGeometryState.bindArrayAndBufferToDraw(this, fCopyProgram.fArrayBuffer);
2847 attribs->set(this, 0, fCopyProgram.fArrayBuffer, 2, GR_GL_FLOAT, false,
2848 2 * sizeof(GrGLfloat), 0);
bsalomond6246342015-06-04 13:57:00 -07002849 attribs->disableUnusedArrays(this, 0x1);
bsalomon6df86402015-06-01 10:41:49 -07002850
2851 // dst rect edges in NDC (-1 to 1)
2852 int dw = dst->width();
2853 int dh = dst->height();
2854 GrGLfloat dx0 = 2.f * dstPoint.fX / dw - 1.f;
2855 GrGLfloat dx1 = 2.f * (dstPoint.fX + w) / dw - 1.f;
2856 GrGLfloat dy0 = 2.f * dstPoint.fY / dh - 1.f;
2857 GrGLfloat dy1 = 2.f * (dstPoint.fY + h) / dh - 1.f;
2858 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
2859 dy0 = -dy0;
2860 dy1 = -dy1;
2861 }
2862
2863 // src rect edges in normalized texture space (0 to 1)
2864 int sw = src->width();
2865 int sh = src->height();
2866 GrGLfloat sx0 = (GrGLfloat)srcRect.fLeft / sw;
2867 GrGLfloat sx1 = (GrGLfloat)(srcRect.fLeft + w) / sw;
2868 GrGLfloat sy0 = (GrGLfloat)srcRect.fTop / sh;
2869 GrGLfloat sy1 = (GrGLfloat)(srcRect.fTop + h) / sh;
2870 if (kBottomLeft_GrSurfaceOrigin == src->origin()) {
2871 sy0 = 1.f - sy0;
2872 sy1 = 1.f - sy1;
2873 }
2874
2875 GL_CALL(Uniform4f(fCopyProgram.fPosXformUniform, dx1 - dx0, dy1 - dy0, dx0, dy0));
2876 GL_CALL(Uniform4f(fCopyProgram.fTexCoordXformUniform, sx1 - sx0, sy1 - sy0, sx0, sy0));
2877 GL_CALL(Uniform1i(fCopyProgram.fTextureUniform, 0));
2878
2879 GrXferProcessor::BlendInfo blendInfo;
2880 blendInfo.reset();
2881 this->flushBlend(blendInfo);
2882 this->flushColorWrite(true);
2883 this->flushDither(false);
2884 this->flushDrawFace(GrPipelineBuilder::kBoth_DrawFace);
2885 this->flushHWAAState(dstRT, false);
2886 this->disableScissor();
2887 GrStencilSettings stencil;
2888 stencil.setDisabled();
2889 this->flushStencil(stencil);
2890
2891 GL_CALL(DrawArrays(GR_GL_TRIANGLE_STRIP, 0, 4));
2892}
2893
2894void GrGLGpu::copySurfaceAsCopyTexSubImage(GrSurface* dst,
2895 GrSurface* src,
2896 const SkIRect& srcRect,
2897 const SkIPoint& dstPoint) {
2898 SkASSERT(can_copy_texsubimage(dst, src, this));
2899 GrGLuint srcFBO;
2900 GrGLIRect srcVP;
2901 srcFBO = this->bindSurfaceAsFBO(src, GR_GL_FRAMEBUFFER, &srcVP, kSrc_TempFBOTarget);
2902 GrGLTexture* dstTex = static_cast<GrGLTexture*>(dst->asTexture());
2903 SkASSERT(dstTex);
2904 // We modified the bound FBO
2905 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
2906 GrGLIRect srcGLRect;
2907 srcGLRect.setRelativeTo(srcVP,
2908 srcRect.fLeft,
2909 srcRect.fTop,
2910 srcRect.width(),
2911 srcRect.height(),
2912 src->origin());
2913
2914 this->setScratchTextureUnit();
2915 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, dstTex->textureID()));
2916 GrGLint dstY;
2917 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
2918 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
2919 } else {
2920 dstY = dstPoint.fY;
2921 }
2922 GL_CALL(CopyTexSubImage2D(GR_GL_TEXTURE_2D, 0,
2923 dstPoint.fX, dstY,
2924 srcGLRect.fLeft, srcGLRect.fBottom,
2925 srcGLRect.fWidth, srcGLRect.fHeight));
2926 if (srcFBO) {
2927 this->unbindTextureFromFBO(GR_GL_FRAMEBUFFER);
2928 }
2929}
2930
2931bool GrGLGpu::copySurfaceAsBlitFramebuffer(GrSurface* dst,
2932 GrSurface* src,
2933 const SkIRect& srcRect,
2934 const SkIPoint& dstPoint) {
2935 SkASSERT(can_blit_framebuffer(dst, src, this));
2936 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2937 srcRect.width(), srcRect.height());
2938 if (dst == src) {
2939 if (SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) {
2940 return false;
mtklein404b3b22015-05-18 09:29:10 -07002941 }
bsalomon5df6fee2015-05-18 06:26:15 -07002942 }
bsalomon6df86402015-06-01 10:41:49 -07002943
2944 GrGLuint dstFBO;
2945 GrGLuint srcFBO;
2946 GrGLIRect dstVP;
2947 GrGLIRect srcVP;
2948 dstFBO = this->bindSurfaceAsFBO(dst, GR_GL_DRAW_FRAMEBUFFER, &dstVP,
2949 kDst_TempFBOTarget);
2950 srcFBO = this->bindSurfaceAsFBO(src, GR_GL_READ_FRAMEBUFFER, &srcVP,
2951 kSrc_TempFBOTarget);
2952 // We modified the bound FBO
2953 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
2954 GrGLIRect srcGLRect;
2955 GrGLIRect dstGLRect;
2956 srcGLRect.setRelativeTo(srcVP,
2957 srcRect.fLeft,
2958 srcRect.fTop,
2959 srcRect.width(),
2960 srcRect.height(),
2961 src->origin());
2962 dstGLRect.setRelativeTo(dstVP,
2963 dstRect.fLeft,
2964 dstRect.fTop,
2965 dstRect.width(),
2966 dstRect.height(),
2967 dst->origin());
2968
2969 // BlitFrameBuffer respects the scissor, so disable it.
2970 this->disableScissor();
2971
2972 GrGLint srcY0;
2973 GrGLint srcY1;
2974 // Does the blit need to y-mirror or not?
2975 if (src->origin() == dst->origin()) {
2976 srcY0 = srcGLRect.fBottom;
2977 srcY1 = srcGLRect.fBottom + srcGLRect.fHeight;
2978 } else {
2979 srcY0 = srcGLRect.fBottom + srcGLRect.fHeight;
2980 srcY1 = srcGLRect.fBottom;
2981 }
2982 GL_CALL(BlitFramebuffer(srcGLRect.fLeft,
2983 srcY0,
2984 srcGLRect.fLeft + srcGLRect.fWidth,
2985 srcY1,
2986 dstGLRect.fLeft,
2987 dstGLRect.fBottom,
2988 dstGLRect.fLeft + dstGLRect.fWidth,
2989 dstGLRect.fBottom + dstGLRect.fHeight,
2990 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
2991 if (dstFBO) {
2992 this->unbindTextureFromFBO(GR_GL_DRAW_FRAMEBUFFER);
2993 }
2994 if (srcFBO) {
2995 this->unbindTextureFromFBO(GR_GL_READ_FRAMEBUFFER);
2996 }
2997 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002998}
2999
cdalton231c5fd2015-05-13 12:35:36 -07003000void GrGLGpu::xferBarrier(GrRenderTarget* rt, GrXferBarrierType type) {
cdalton9954bc32015-04-29 14:17:00 -07003001 switch (type) {
cdalton231c5fd2015-05-13 12:35:36 -07003002 case kTexture_GrXferBarrierType: {
3003 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt);
3004 if (glrt->textureFBOID() != glrt->renderFBOID()) {
3005 // The render target uses separate storage so no need for glTextureBarrier.
3006 // FIXME: The render target will resolve automatically when its texture is bound,
3007 // but we could resolve only the bounds that will be read if we do it here instead.
3008 return;
3009 }
cdalton9954bc32015-04-29 14:17:00 -07003010 SkASSERT(this->caps()->textureBarrierSupport());
3011 GL_CALL(TextureBarrier());
3012 return;
cdalton231c5fd2015-05-13 12:35:36 -07003013 }
cdalton8917d622015-05-06 13:40:21 -07003014 case kBlend_GrXferBarrierType:
bsalomon4b91f762015-05-19 09:29:46 -07003015 SkASSERT(GrCaps::kAdvanced_BlendEquationSupport ==
cdalton8917d622015-05-06 13:40:21 -07003016 this->caps()->blendEquationSupport());
3017 GL_CALL(BlendBarrier());
3018 return;
cdalton9954bc32015-04-29 14:17:00 -07003019 }
3020}
3021
bsalomon861e1032014-12-16 07:33:49 -08003022void GrGLGpu::didAddGpuTraceMarker() {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00003023 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00003024 const GrTraceMarkerSet& markerArray = this->getActiveTraceMarkers();
egdanield78a1682014-07-09 10:41:26 -07003025 SkString markerString = markerArray.toStringLast();
egdanielbdad9c32015-03-05 12:19:17 -08003026#if GR_FORCE_GPU_TRACE_DEBUGGING
3027 SkDebugf("%s\n", markerString.c_str());
3028#else
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00003029 GL_CALL(PushGroupMarker(0, markerString.c_str()));
egdanielbdad9c32015-03-05 12:19:17 -08003030#endif
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00003031 }
3032}
3033
bsalomon861e1032014-12-16 07:33:49 -08003034void GrGLGpu::didRemoveGpuTraceMarker() {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00003035 if (this->caps()->gpuTracingSupport()) {
egdanielbdad9c32015-03-05 12:19:17 -08003036#if GR_FORCE_GPU_TRACE_DEBUGGING
3037 SkDebugf("Pop trace marker.\n");
3038#else
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00003039 GL_CALL(PopGroupMarker());
egdanielbdad9c32015-03-05 12:19:17 -08003040#endif
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00003041 }
3042}
joshualitt79f8fae2014-10-28 17:59:26 -07003043
jvanverth88957922015-07-14 11:02:52 -07003044GrBackendObject GrGLGpu::createTestingOnlyBackendTexture(void* pixels, int w, int h,
jvanverth672bb7f2015-07-13 07:19:57 -07003045 GrPixelConfig config) const {
3046 GrGLuint texID;
3047 GL_CALL(GenTextures(1, &texID));
3048 GL_CALL(ActiveTexture(GR_GL_TEXTURE0));
3049 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, 1));
3050 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texID));
3051 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_MAG_FILTER, GR_GL_NEAREST));
3052 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_MIN_FILTER, GR_GL_NEAREST));
3053 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_WRAP_S, GR_GL_CLAMP_TO_EDGE));
3054 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_WRAP_T, GR_GL_CLAMP_TO_EDGE));
3055
3056 GrGLenum internalFormat = 0x0; // suppress warning
3057 GrGLenum externalFormat = 0x0; // suppress warning
3058 GrGLenum externalType = 0x0; // suppress warning
3059
3060 this->configToGLFormats(config, false, &internalFormat, &externalFormat, &externalType);
3061
3062 GL_CALL(TexImage2D(GR_GL_TEXTURE_2D, 0, internalFormat, w, h, 0, externalFormat,
3063 externalType, pixels));
3064
3065 return texID;
3066}
3067
jvanverth88957922015-07-14 11:02:52 -07003068bool GrGLGpu::isTestingOnlyBackendTexture(GrBackendObject id) const {
jvanverth672bb7f2015-07-13 07:19:57 -07003069 GrGLuint texID = (GrGLuint)id;
3070
3071 GrGLboolean result;
3072 GL_CALL_RET(result, IsTexture(texID));
3073
3074 return (GR_GL_TRUE == result);
3075}
3076
jvanverth88957922015-07-14 11:02:52 -07003077void GrGLGpu::deleteTestingOnlyBackendTexture(GrBackendObject id) const {
jvanverth672bb7f2015-07-13 07:19:57 -07003078 GrGLuint texID = (GrGLuint)id;
3079 GL_CALL(DeleteTextures(1, &texID));
3080}
3081
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00003082///////////////////////////////////////////////////////////////////////////////
bsalomon861e1032014-12-16 07:33:49 -08003083GrGLAttribArrayState* GrGLGpu::HWGeometryState::bindArrayAndBuffersToDraw(
3084 GrGLGpu* gpu,
bsalomon@google.com6918d482013-03-07 19:09:11 +00003085 const GrGLVertexBuffer* vbuffer,
3086 const GrGLIndexBuffer* ibuffer) {
bsalomon49f085d2014-09-05 13:34:00 -07003087 SkASSERT(vbuffer);
bsalomon6df86402015-06-01 10:41:49 -07003088 GrGLuint vbufferID = vbuffer->bufferID();
3089 GrGLuint* ibufferIDPtr = NULL;
3090 GrGLuint ibufferID;
3091 if (ibuffer) {
3092 ibufferID = ibuffer->bufferID();
3093 ibufferIDPtr = &ibufferID;
3094 }
3095 return this->internalBind(gpu, vbufferID, ibufferIDPtr);
3096}
3097
3098GrGLAttribArrayState* GrGLGpu::HWGeometryState::bindArrayAndBufferToDraw(GrGLGpu* gpu,
3099 GrGLuint vbufferID) {
3100 return this->internalBind(gpu, vbufferID, NULL);
3101}
3102
3103GrGLAttribArrayState* GrGLGpu::HWGeometryState::bindArrayAndBuffersToDraw(GrGLGpu* gpu,
3104 GrGLuint vbufferID,
3105 GrGLuint ibufferID) {
3106 return this->internalBind(gpu, vbufferID, &ibufferID);
3107}
3108
3109GrGLAttribArrayState* GrGLGpu::HWGeometryState::internalBind(GrGLGpu* gpu,
3110 GrGLuint vbufferID,
3111 GrGLuint* ibufferID) {
robertphillips@google.com4f65a272013-03-26 19:40:46 +00003112 GrGLAttribArrayState* attribState;
3113
bsalomon6df86402015-06-01 10:41:49 -07003114 if (gpu->glCaps().isCoreProfile() && 0 != vbufferID) {
bsalomon8780bc62015-05-13 09:56:37 -07003115 if (!fVBOVertexArray) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00003116 GrGLuint arrayID;
3117 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID));
3118 int attrCount = gpu->glCaps().maxVertexAttributes();
bsalomon8780bc62015-05-13 09:56:37 -07003119 fVBOVertexArray = SkNEW_ARGS(GrGLVertexArray, (arrayID, attrCount));
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00003120 }
bsalomon6df86402015-06-01 10:41:49 -07003121 if (ibufferID) {
3122 attribState = fVBOVertexArray->bindWithIndexBuffer(gpu, *ibufferID);
3123 } else {
3124 attribState = fVBOVertexArray->bind(gpu);
3125 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00003126 } else {
bsalomon6df86402015-06-01 10:41:49 -07003127 if (ibufferID) {
3128 this->setIndexBufferIDOnDefaultVertexArray(gpu, *ibufferID);
bsalomon@google.com6918d482013-03-07 19:09:11 +00003129 } else {
3130 this->setVertexArrayID(gpu, 0);
3131 }
3132 int attrCount = gpu->glCaps().maxVertexAttributes();
3133 if (fDefaultVertexArrayAttribState.count() != attrCount) {
3134 fDefaultVertexArrayAttribState.resize(attrCount);
3135 }
3136 attribState = &fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00003137 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00003138 return attribState;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00003139}