blob: 6d97804fc65ffa52ddf350c58cd9d6f2b0232723 [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"
egdaniel8dc7c3a2015-04-16 11:22:42 -070010#include "GrGLStencilAttachment.h"
bsalomon37dd3312014-11-03 08:47:23 -080011#include "GrGLTextureRenderTarget.h"
bsalomon3582d3e2015-02-13 14:20:05 -080012#include "GrGpuResourcePriv.h"
egdaniel8dd688b2015-01-22 10:16:09 -080013#include "GrPipeline.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080014#include "GrRenderTargetPriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070015#include "GrSurfacePriv.h"
bsalomon@google.coma3201942012-06-21 19:58:20 +000016#include "GrTemplates.h"
bsalomonafbf2d62014-09-30 12:18:44 -070017#include "GrTexturePriv.h"
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +000018#include "GrTypes.h"
bsalomoncb8979d2015-05-05 09:51:38 -070019#include "GrVertices.h"
commit-bot@chromium.org32184d82013-10-09 15:14:18 +000020#include "SkStrokeRec.h"
bsalomon@google.com3582bf92011-06-30 21:32:31 +000021#include "SkTemplates.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000022
bsalomon@google.com0b77d682011-08-19 13:28:54 +000023#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +000024#define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->glInterface(), RET, X)
bsalomon@google.com0b77d682011-08-19 13:28:54 +000025
reed@google.comac10a2d2010-12-22 21:39:39 +000026#define SKIP_CACHE_CHECK true
27
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000028#if GR_GL_CHECK_ALLOC_WITH_GET_ERROR
29 #define CLEAR_ERROR_BEFORE_ALLOC(iface) GrGLClearErr(iface)
30 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL_NOERRCHECK(iface, call)
31 #define CHECK_ALLOC_ERROR(iface) GR_GL_GET_ERROR(iface)
rmistry@google.comfbfcd562012-08-23 18:09:54 +000032#else
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000033 #define CLEAR_ERROR_BEFORE_ALLOC(iface)
34 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL(iface, call)
35 #define CHECK_ALLOC_ERROR(iface) GR_GL_NO_ERROR
36#endif
37
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +000038
39///////////////////////////////////////////////////////////////////////////////
40
cdaltonb85a0aa2014-07-21 15:32:44 -070041
cdalton8917d622015-05-06 13:40:21 -070042static const GrGLenum gXfermodeEquation2Blend[] = {
43 // Basic OpenGL blend equations.
44 GR_GL_FUNC_ADD,
45 GR_GL_FUNC_SUBTRACT,
46 GR_GL_FUNC_REVERSE_SUBTRACT,
47
48 // GL_KHR_blend_equation_advanced.
49 GR_GL_SCREEN,
50 GR_GL_OVERLAY,
51 GR_GL_DARKEN,
52 GR_GL_LIGHTEN,
53 GR_GL_COLORDODGE,
54 GR_GL_COLORBURN,
55 GR_GL_HARDLIGHT,
56 GR_GL_SOFTLIGHT,
57 GR_GL_DIFFERENCE,
58 GR_GL_EXCLUSION,
59 GR_GL_MULTIPLY,
60 GR_GL_HSL_HUE,
61 GR_GL_HSL_SATURATION,
62 GR_GL_HSL_COLOR,
63 GR_GL_HSL_LUMINOSITY
64};
65GR_STATIC_ASSERT(0 == kAdd_GrBlendEquation);
66GR_STATIC_ASSERT(1 == kSubtract_GrBlendEquation);
67GR_STATIC_ASSERT(2 == kReverseSubtract_GrBlendEquation);
68GR_STATIC_ASSERT(3 == kScreen_GrBlendEquation);
69GR_STATIC_ASSERT(4 == kOverlay_GrBlendEquation);
70GR_STATIC_ASSERT(5 == kDarken_GrBlendEquation);
71GR_STATIC_ASSERT(6 == kLighten_GrBlendEquation);
72GR_STATIC_ASSERT(7 == kColorDodge_GrBlendEquation);
73GR_STATIC_ASSERT(8 == kColorBurn_GrBlendEquation);
74GR_STATIC_ASSERT(9 == kHardLight_GrBlendEquation);
75GR_STATIC_ASSERT(10 == kSoftLight_GrBlendEquation);
76GR_STATIC_ASSERT(11 == kDifference_GrBlendEquation);
77GR_STATIC_ASSERT(12 == kExclusion_GrBlendEquation);
78GR_STATIC_ASSERT(13 == kMultiply_GrBlendEquation);
79GR_STATIC_ASSERT(14 == kHSLHue_GrBlendEquation);
80GR_STATIC_ASSERT(15 == kHSLSaturation_GrBlendEquation);
81GR_STATIC_ASSERT(16 == kHSLColor_GrBlendEquation);
82GR_STATIC_ASSERT(17 == kHSLLuminosity_GrBlendEquation);
bsalomonf7cc8772015-05-11 11:21:14 -070083GR_STATIC_ASSERT(SK_ARRAY_COUNT(gXfermodeEquation2Blend) == kGrBlendEquationCnt);
cdalton8917d622015-05-06 13:40:21 -070084
twiz@google.com0f31ca72011-03-18 17:38:11 +000085static const GrGLenum gXfermodeCoeff2Blend[] = {
86 GR_GL_ZERO,
87 GR_GL_ONE,
88 GR_GL_SRC_COLOR,
89 GR_GL_ONE_MINUS_SRC_COLOR,
90 GR_GL_DST_COLOR,
91 GR_GL_ONE_MINUS_DST_COLOR,
92 GR_GL_SRC_ALPHA,
93 GR_GL_ONE_MINUS_SRC_ALPHA,
94 GR_GL_DST_ALPHA,
95 GR_GL_ONE_MINUS_DST_ALPHA,
96 GR_GL_CONSTANT_COLOR,
97 GR_GL_ONE_MINUS_CONSTANT_COLOR,
98 GR_GL_CONSTANT_ALPHA,
99 GR_GL_ONE_MINUS_CONSTANT_ALPHA,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000100
101 // extended blend coeffs
102 GR_GL_SRC1_COLOR,
103 GR_GL_ONE_MINUS_SRC1_COLOR,
104 GR_GL_SRC1_ALPHA,
105 GR_GL_ONE_MINUS_SRC1_ALPHA,
reed@google.comac10a2d2010-12-22 21:39:39 +0000106};
107
bsalomon861e1032014-12-16 07:33:49 -0800108bool GrGLGpu::BlendCoeffReferencesConstant(GrBlendCoeff coeff) {
bsalomon@google.com080773c2011-03-15 19:09:25 +0000109 static const bool gCoeffReferencesBlendConst[] = {
110 false,
111 false,
112 false,
113 false,
114 false,
115 false,
116 false,
117 false,
118 false,
119 false,
120 true,
121 true,
122 true,
123 true,
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000124
125 // extended blend coeffs
126 false,
127 false,
128 false,
129 false,
bsalomon@google.com080773c2011-03-15 19:09:25 +0000130 };
131 return gCoeffReferencesBlendConst[coeff];
bsalomonf7cc8772015-05-11 11:21:14 -0700132 GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gCoeffReferencesBlendConst));
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000133
bsalomon@google.com47059542012-06-06 20:51:20 +0000134 GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff);
135 GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff);
136 GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff);
137 GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff);
138 GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff);
139 GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff);
140 GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff);
141 GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff);
142 GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff);
143 GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff);
144 GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff);
145 GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff);
146 GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff);
147 GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000148
bsalomon@google.com47059542012-06-06 20:51:20 +0000149 GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff);
150 GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff);
151 GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff);
152 GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000153
154 // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope
bsalomonf7cc8772015-05-11 11:21:14 -0700155 GR_STATIC_ASSERT(kGrBlendCoeffCnt == SK_ARRAY_COUNT(gXfermodeCoeff2Blend));
bsalomon@google.com080773c2011-03-15 19:09:25 +0000156}
157
reed@google.comac10a2d2010-12-22 21:39:39 +0000158///////////////////////////////////////////////////////////////////////////////
159
rileya@google.come38160c2012-07-03 18:03:04 +0000160static bool gPrintStartupSpew;
bsalomon@google.com42ab7ea2011-01-19 17:19:40 +0000161
bsalomon861e1032014-12-16 07:33:49 -0800162GrGLGpu::GrGLGpu(const GrGLContext& ctx, GrContext* context)
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000163 : GrGpu(context)
robertphillips@google.com6177e692013-02-28 20:16:25 +0000164 , fGLContext(ctx) {
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000165
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000166 SkASSERT(ctx.isInitialized());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000167 fCaps.reset(SkRef(ctx.caps()));
bsalomon@google.combcce8922013-03-25 15:38:39 +0000168
bsalomon1c63bf62014-07-22 13:09:46 -0700169 fHWBoundTextureUniqueIDs.reset(this->glCaps().maxFragmentTextureUnits());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000170
robertphillips@google.com6177e692013-02-28 20:16:25 +0000171 GrGLClearErr(fGLContext.interface());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000172 if (gPrintStartupSpew) {
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000173 const GrGLubyte* vendor;
174 const GrGLubyte* renderer;
175 const GrGLubyte* version;
176 GL_CALL_RET(vendor, GetString(GR_GL_VENDOR));
177 GL_CALL_RET(renderer, GetString(GR_GL_RENDERER));
178 GL_CALL_RET(version, GetString(GR_GL_VERSION));
bsalomon861e1032014-12-16 07:33:49 -0800179 SkDebugf("------------------------- create GrGLGpu %p --------------\n",
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000180 this);
tfarina38406c82014-10-31 07:11:12 -0700181 SkDebugf("------ VENDOR %s\n", vendor);
182 SkDebugf("------ RENDERER %s\n", renderer);
183 SkDebugf("------ VERSION %s\n", version);
184 SkDebugf("------ EXTENSIONS\n");
bsalomone904c092014-07-17 10:50:59 -0700185 ctx.extensions().print();
tfarina38406c82014-10-31 07:11:12 -0700186 SkDebugf("\n");
kkinnunen297aaf92015-02-19 06:32:12 -0800187 SkDebugf("%s", this->glCaps().dump().c_str());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000188 }
189
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000190 fProgramCache = SkNEW_ARGS(ProgramCache, (this));
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000191
joshualitt2dd1ae02014-12-03 06:24:10 -0800192 SkASSERT(this->glCaps().maxVertexAttributes() >= GrGeometryProcessor::kMaxVertexAttribs);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000193
bsalomon@google.comfe676522011-06-17 18:12:21 +0000194 fLastSuccessfulStencilFmtIdx = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000195 fHWProgramID = 0;
egdanield803f272015-03-18 13:01:52 -0700196 fTempSrcFBOID = 0;
197 fTempDstFBOID = 0;
198 fStencilClearFBOID = 0;
cdaltonc7103a12014-08-11 14:05:05 -0700199
jvanverthe9c0fc62015-04-29 11:18:05 -0700200 if (this->glCaps().shaderCaps()->pathRenderingSupport()) {
kkinnunen5b653572014-08-20 04:13:27 -0700201 fPathRendering.reset(new GrGLPathRendering(this));
cdaltonc7103a12014-08-11 14:05:05 -0700202 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000203}
204
bsalomon861e1032014-12-16 07:33:49 -0800205GrGLGpu::~GrGLGpu() {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000206 if (0 != fHWProgramID) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000207 // detach the current program so there is no confusion on OpenGL's part
208 // that we want it to be deleted
mtklein404b3b22015-05-18 09:29:10 -0700209 SkASSERT(fHWProgramID == fCurrentProgram->programID());
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000210 GL_CALL(UseProgram(0));
211 }
212
egdanield803f272015-03-18 13:01:52 -0700213 if (0 != fTempSrcFBOID) {
214 GL_CALL(DeleteFramebuffers(1, &fTempSrcFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -0800215 }
egdanield803f272015-03-18 13:01:52 -0700216 if (0 != fTempDstFBOID) {
217 GL_CALL(DeleteFramebuffers(1, &fTempDstFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -0800218 }
egdanield803f272015-03-18 13:01:52 -0700219 if (0 != fStencilClearFBOID) {
220 GL_CALL(DeleteFramebuffers(1, &fStencilClearFBOID));
bsalomondd3143b2015-02-23 09:27:45 -0800221 }
egdaniel0f5f9672015-02-03 11:10:51 -0800222
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000223 delete fProgramCache;
bsalomonc8dc1f72014-08-21 13:02:13 -0700224}
225
bsalomon861e1032014-12-16 07:33:49 -0800226void GrGLGpu::contextAbandoned() {
robertphillipse3371302014-09-17 06:01:06 -0700227 INHERITED::contextAbandoned();
bsalomonc8dc1f72014-08-21 13:02:13 -0700228 fProgramCache->abandon();
229 fHWProgramID = 0;
egdanield803f272015-03-18 13:01:52 -0700230 fTempSrcFBOID = 0;
231 fTempDstFBOID = 0;
232 fStencilClearFBOID = 0;
jvanverthe9c0fc62015-04-29 11:18:05 -0700233 if (this->glCaps().shaderCaps()->pathRenderingSupport()) {
bsalomonc8dc1f72014-08-21 13:02:13 -0700234 this->glPathRendering()->abandonGpuResources();
235 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000236}
237
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000238///////////////////////////////////////////////////////////////////////////////
bsalomon861e1032014-12-16 07:33:49 -0800239GrPixelConfig GrGLGpu::preferredReadPixelsConfig(GrPixelConfig readConfig,
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000240 GrPixelConfig surfaceConfig) const {
241 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == readConfig) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000242 return kBGRA_8888_GrPixelConfig;
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000243 } else if (this->glContext().isMesa() &&
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000244 GrBytesPerPixel(readConfig) == 4 &&
245 GrPixelConfigSwapRAndB(readConfig) == surfaceConfig) {
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000246 // Mesa 3D takes a slow path on when reading back BGRA from an RGBA surface and vice-versa.
247 // Perhaps this should be guarded by some compiletime or runtime check.
248 return surfaceConfig;
piotaixre4b23142014-10-02 10:57:53 -0700249 } else if (readConfig == kBGRA_8888_GrPixelConfig
250 && !this->glCaps().readPixelsSupported(
251 this->glInterface(),
252 GR_GL_BGRA,
253 GR_GL_UNSIGNED_BYTE,
254 surfaceConfig
255 )) {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000256 return kRGBA_8888_GrPixelConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000257 } else {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000258 return readConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000259 }
260}
261
bsalomon861e1032014-12-16 07:33:49 -0800262GrPixelConfig GrGLGpu::preferredWritePixelsConfig(GrPixelConfig writeConfig,
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000263 GrPixelConfig surfaceConfig) const {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000264 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == writeConfig) {
265 return kBGRA_8888_GrPixelConfig;
266 } else {
267 return writeConfig;
268 }
bsalomon@google.com9c680582013-02-06 18:17:50 +0000269}
270
bsalomon861e1032014-12-16 07:33:49 -0800271bool GrGLGpu::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
krajcevski145d48c2014-06-11 16:07:50 -0700272 if (kIndex_8_GrPixelConfig == srcConfig || kIndex_8_GrPixelConfig == texture->config()) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000273 return false;
274 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000275 if (srcConfig != texture->config() && kGLES_GrGLStandard == this->glStandard()) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000276 // In general ES2 requires the internal format of the texture and the format of the src
277 // pixels to match. However, It may or may not be possible to upload BGRA data to a RGBA
278 // texture. It depends upon which extension added BGRA. The Apple extension allows it
279 // (BGRA's internal format is RGBA) while the EXT extension does not (BGRA is its own
280 // internal format).
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000281 if (this->glCaps().isConfigTexturable(kBGRA_8888_GrPixelConfig) &&
bsalomon@google.com9c680582013-02-06 18:17:50 +0000282 !this->glCaps().bgraIsInternalFormat() &&
283 kBGRA_8888_GrPixelConfig == srcConfig &&
284 kRGBA_8888_GrPixelConfig == texture->config()) {
285 return true;
286 } else {
287 return false;
288 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000289 } else {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000290 return true;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000291 }
292}
293
bsalomon861e1032014-12-16 07:33:49 -0800294bool GrGLGpu::fullReadPixelsIsFasterThanPartial() const {
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000295 return SkToBool(GR_GL_FULL_READPIXELS_FASTER_THAN_PARTIAL);
296}
297
bsalomon861e1032014-12-16 07:33:49 -0800298void GrGLGpu::onResetContext(uint32_t resetBits) {
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000299 // we don't use the zb at all
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000300 if (resetBits & kMisc_GrGLBackendState) {
301 GL_CALL(Disable(GR_GL_DEPTH_TEST));
302 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000303
egdaniel8dd688b2015-01-22 10:16:09 -0800304 fHWDrawFace = GrPipelineBuilder::kInvalid_DrawFace;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000305 fHWDitherEnabled = kUnknown_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000306
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000307 if (kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000308 // Desktop-only state that we never change
309 if (!this->glCaps().isCoreProfile()) {
310 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
311 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
312 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
313 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
314 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
315 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
316 }
317 // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a
318 // core profile. This seems like a bug since the core spec removes any mention of
319 // GL_ARB_imaging.
320 if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) {
321 GL_CALL(Disable(GR_GL_COLOR_TABLE));
322 }
323 GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL));
324 // Since ES doesn't support glPointSize at all we always use the VS to
325 // set the point size
326 GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE));
327
328 // We should set glPolygonMode(FRONT_AND_BACK,FILL) here, too. It isn't
329 // currently part of our gl interface. There are probably others as
330 // well.
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000331 }
joshualitt58162332014-08-01 06:44:53 -0700332
333 if (kGLES_GrGLStandard == this->glStandard() &&
334 fGLContext.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
335 // The arm extension requires specifically enabling MSAA fetching per sample.
336 // On some devices this may have a perf hit. Also multiple render targets are disabled
337 GL_CALL(Enable(GR_GL_FETCH_PER_SAMPLE_ARM));
338 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000339 fHWWriteToColor = kUnknown_TriState;
340 // we only ever use lines in hairline mode
341 GL_CALL(LineWidth(1));
bsalomon@google.comcad107b2013-06-28 14:32:08 +0000342 }
edisonn@google.comba669992013-06-28 16:03:21 +0000343
egdanielb414f252014-07-29 13:15:47 -0700344 if (resetBits & kMSAAEnable_GrGLBackendState) {
345 fMSAAEnabled = kUnknown_TriState;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000346 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000347
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +0000348 fHWActiveTextureUnitIdx = -1; // invalid
349
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000350 if (resetBits & kTextureBinding_GrGLBackendState) {
bsalomon1c63bf62014-07-22 13:09:46 -0700351 for (int s = 0; s < fHWBoundTextureUniqueIDs.count(); ++s) {
352 fHWBoundTextureUniqueIDs[s] = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000353 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000354 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000355
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000356 if (resetBits & kBlend_GrGLBackendState) {
357 fHWBlendState.invalidate();
358 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000359
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000360 if (resetBits & kView_GrGLBackendState) {
361 fHWScissorSettings.invalidate();
362 fHWViewport.invalidate();
363 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000364
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000365 if (resetBits & kStencil_GrGLBackendState) {
366 fHWStencilSettings.invalidate();
367 fHWStencilTestEnabled = kUnknown_TriState;
368 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000369
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000370 // Vertex
371 if (resetBits & kVertex_GrGLBackendState) {
372 fHWGeometryState.invalidate();
373 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000374
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000375 if (resetBits & kRenderTarget_GrGLBackendState) {
egdanield803f272015-03-18 13:01:52 -0700376 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000377 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000378
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000379 if (resetBits & kPathRendering_GrGLBackendState) {
jvanverthe9c0fc62015-04-29 11:18:05 -0700380 if (this->caps()->shaderCaps()->pathRenderingSupport()) {
kkinnunenccdaa042014-08-20 01:36:23 -0700381 this->glPathRendering()->resetContext();
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000382 }
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000383 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000384
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000385 // we assume these values
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000386 if (resetBits & kPixelStore_GrGLBackendState) {
387 if (this->glCaps().unpackRowLengthSupport()) {
388 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
389 }
390 if (this->glCaps().packRowLengthSupport()) {
391 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
392 }
393 if (this->glCaps().unpackFlipYSupport()) {
394 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
395 }
396 if (this->glCaps().packFlipYSupport()) {
397 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
398 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000399 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000400
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000401 if (resetBits & kProgram_GrGLBackendState) {
402 fHWProgramID = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000403 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000404}
405
egdanielcf614fd2015-04-22 13:58:58 -0700406static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000407 // By default, GrRenderTargets are GL's normal orientation so that they
408 // can be drawn to by the outside world without the client having
409 // to render upside down.
410 if (kDefault_GrSurfaceOrigin == origin) {
411 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
412 } else {
413 return origin;
414 }
415}
416
bsalomon861e1032014-12-16 07:33:49 -0800417GrTexture* GrGLGpu::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000418 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000419 return NULL;
420 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000421
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000422 if (0 == desc.fTextureHandle) {
423 return NULL;
424 }
425
bsalomon@google.combcce8922013-03-25 15:38:39 +0000426 int maxSize = this->caps()->maxTextureSize();
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000427 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
428 return NULL;
429 }
430
bsalomonb15b4c12014-10-29 12:41:57 -0700431 GrGLTexture::IDDesc idDesc;
432 GrSurfaceDesc surfDesc;
433
434 idDesc.fTextureID = static_cast<GrGLuint>(desc.fTextureHandle);
bsalomon5236cf42015-01-14 10:42:08 -0800435 idDesc.fLifeCycle = GrGpuResource::kWrapped_LifeCycle;
bsalomonb15b4c12014-10-29 12:41:57 -0700436
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000437 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
bsalomonb15b4c12014-10-29 12:41:57 -0700438 surfDesc.fFlags = (GrSurfaceFlags) desc.fFlags;
439 surfDesc.fWidth = desc.fWidth;
440 surfDesc.fHeight = desc.fHeight;
441 surfDesc.fConfig = desc.fConfig;
senorblanco94e50102015-04-06 09:42:57 -0700442 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000443 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrBackendTextureFlag);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000444 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
445 // assuming the old behaviour, which is that backend textures are always
446 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
447 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
448 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
bsalomonb15b4c12014-10-29 12:41:57 -0700449 surfDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000450 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700451 surfDesc.fOrigin = desc.fOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000452 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000453
454 GrGLTexture* texture = NULL;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000455 if (renderTarget) {
bsalomonb15b4c12014-10-29 12:41:57 -0700456 GrGLRenderTarget::IDDesc rtIDDesc;
egdanielb0e1be22015-04-22 13:27:39 -0700457 if (!this->createRenderTargetObjects(surfDesc, GrGpuResource::kUncached_LifeCycle,
458 idDesc.fTextureID, &rtIDDesc)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000459 return NULL;
460 }
bsalomon37dd3312014-11-03 08:47:23 -0800461 texture = SkNEW_ARGS(GrGLTextureRenderTarget, (this, surfDesc, idDesc, rtIDDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000462 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700463 texture = SkNEW_ARGS(GrGLTexture, (this, surfDesc, idDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000464 }
465 if (NULL == texture) {
466 return NULL;
467 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000468
bsalomon@google.come269f212011-11-07 13:29:52 +0000469 return texture;
470}
471
bsalomon861e1032014-12-16 07:33:49 -0800472GrRenderTarget* GrGLGpu::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& wrapDesc) {
bsalomonb15b4c12014-10-29 12:41:57 -0700473 GrGLRenderTarget::IDDesc idDesc;
egdanield803f272015-03-18 13:01:52 -0700474 idDesc.fRTFBOID = static_cast<GrGLuint>(wrapDesc.fRenderTargetHandle);
bsalomonb15b4c12014-10-29 12:41:57 -0700475 idDesc.fMSColorRenderbufferID = 0;
egdanield803f272015-03-18 13:01:52 -0700476 idDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
bsalomon5236cf42015-01-14 10:42:08 -0800477 idDesc.fLifeCycle = GrGpuResource::kWrapped_LifeCycle;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000478
bsalomonb15b4c12014-10-29 12:41:57 -0700479 GrSurfaceDesc desc;
480 desc.fConfig = wrapDesc.fConfig;
481 desc.fFlags = kCheckAllocation_GrSurfaceFlag;
482 desc.fWidth = wrapDesc.fWidth;
483 desc.fHeight = wrapDesc.fHeight;
senorblanco94e50102015-04-06 09:42:57 -0700484 desc.fSampleCnt = SkTMin(wrapDesc.fSampleCnt, this->caps()->maxSampleCount());
bsalomonb15b4c12014-10-29 12:41:57 -0700485 desc.fOrigin = resolve_origin(wrapDesc.fOrigin, true);
486
bsalomon37dd3312014-11-03 08:47:23 -0800487 GrRenderTarget* tgt = SkNEW_ARGS(GrGLRenderTarget, (this, desc, idDesc));
bsalomonb15b4c12014-10-29 12:41:57 -0700488 if (wrapDesc.fStencilBits) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700489 GrGLStencilAttachment::IDDesc sbDesc;
490 GrGLStencilAttachment::Format format;
491 format.fInternalFormat = GrGLStencilAttachment::kUnknownInternalFormat;
bsalomon@google.come269f212011-11-07 13:29:52 +0000492 format.fPacked = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700493 format.fStencilBits = wrapDesc.fStencilBits;
494 format.fTotalBits = wrapDesc.fStencilBits;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700495 GrGLStencilAttachment* sb = SkNEW_ARGS(GrGLStencilAttachment,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000496 (this,
kkinnunen36c57df2015-01-27 00:30:18 -0800497 sbDesc,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000498 desc.fWidth,
499 desc.fHeight,
500 desc.fSampleCnt,
501 format));
egdaniel8dc7c3a2015-04-16 11:22:42 -0700502 tgt->renderTargetPriv().didAttachStencilAttachment(sb);
bsalomon@google.come269f212011-11-07 13:29:52 +0000503 sb->unref();
504 }
505 return tgt;
506}
507
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000508////////////////////////////////////////////////////////////////////////////////
509
bsalomon861e1032014-12-16 07:33:49 -0800510bool GrGLGpu::onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000511 int left, int top, int width, int height,
512 GrPixelConfig config, const void* buffer,
513 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000514 if (NULL == buffer) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000515 return false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000516 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000517 GrGLTexture* glTex = static_cast<GrGLTexture*>(texture);
518
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000519 this->setScratchTextureUnit();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000520 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTex->textureID()));
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000521
krajcevski145d48c2014-06-11 16:07:50 -0700522 bool success = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700523 if (GrPixelConfigIsCompressed(glTex->desc().fConfig)) {
bsalomon861e1032014-12-16 07:33:49 -0800524 // We check that config == desc.fConfig in GrGLGpu::canWriteTexturePixels()
bsalomonb15b4c12014-10-29 12:41:57 -0700525 SkASSERT(config == glTex->desc().fConfig);
526 success = this->uploadCompressedTexData(glTex->desc(), buffer, false, left, top, width,
527 height);
krajcevski145d48c2014-06-11 16:07:50 -0700528 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700529 success = this->uploadTexData(glTex->desc(), false, left, top, width, height, config,
530 buffer, rowBytes);
krajcevski145d48c2014-06-11 16:07:50 -0700531 }
532
533 if (success) {
bsalomonafbf2d62014-09-30 12:18:44 -0700534 texture->texturePriv().dirtyMipMaps(true);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000535 return true;
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000536 }
krajcevski145d48c2014-06-11 16:07:50 -0700537
538 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000539}
540
bsalomonb15b4c12014-10-29 12:41:57 -0700541static bool adjust_pixel_ops_params(int surfaceWidth,
542 int surfaceHeight,
543 size_t bpp,
544 int* left, int* top, int* width, int* height,
545 const void** data,
546 size_t* rowBytes) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000547 if (!*rowBytes) {
548 *rowBytes = *width * bpp;
549 }
550
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000551 SkIRect subRect = SkIRect::MakeXYWH(*left, *top, *width, *height);
552 SkIRect bounds = SkIRect::MakeWH(surfaceWidth, surfaceHeight);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000553
554 if (!subRect.intersect(bounds)) {
555 return false;
556 }
557 *data = reinterpret_cast<const void*>(reinterpret_cast<intptr_t>(*data) +
558 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
559
560 *left = subRect.fLeft;
561 *top = subRect.fTop;
562 *width = subRect.width();
563 *height = subRect.height();
564 return true;
565}
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000566
bsalomonb15b4c12014-10-29 12:41:57 -0700567static inline GrGLenum check_alloc_error(const GrSurfaceDesc& desc,
568 const GrGLInterface* interface) {
bsalomonf2703d82014-10-28 14:33:06 -0700569 if (SkToBool(desc.fFlags & kCheckAllocation_GrSurfaceFlag)) {
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000570 return GR_GL_GET_ERROR(interface);
571 } else {
572 return CHECK_ALLOC_ERROR(interface);
573 }
574}
575
bsalomon861e1032014-12-16 07:33:49 -0800576bool GrGLGpu::uploadTexData(const GrSurfaceDesc& desc,
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000577 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000578 int left, int top, int width, int height,
579 GrPixelConfig dataConfig,
580 const void* data,
581 size_t rowBytes) {
bsalomon49f085d2014-09-05 13:34:00 -0700582 SkASSERT(data || isNewTexture);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000583
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000584 // If we're uploading compressed data then we should be using uploadCompressedTexData
585 SkASSERT(!GrPixelConfigIsCompressed(dataConfig));
586
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000587 size_t bpp = GrBytesPerPixel(dataConfig);
588 if (!adjust_pixel_ops_params(desc.fWidth, desc.fHeight, bpp, &left, &top,
589 &width, &height, &data, &rowBytes)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000590 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000591 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000592 size_t trimRowBytes = width * bpp;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000593
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000594 // in case we need a temporary, trimmed copy of the src pixels
georgeb62508b2014-08-12 18:00:47 -0700595 GrAutoMalloc<128 * 128> tempStorage;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000596
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000597 // We currently lazily create MIPMAPs when the we see a draw with
598 // GrTextureParams::kMipMap_FilterMode. Using texture storage requires that the
599 // MIP levels are all created when the texture is created. So for now we don't use
600 // texture storage.
601 bool useTexStorage = false &&
602 isNewTexture &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000603 this->glCaps().texStorageSupport();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000604
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000605 if (useTexStorage && kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com313f0192012-07-10 17:21:02 +0000606 // 565 is not a sized internal format on desktop GL. So on desktop with
607 // 565 we always use an unsized internal format to let the system pick
608 // the best sized format to convert the 565 data to. Since TexStorage
609 // only allows sized internal formats we will instead use TexImage2D.
610 useTexStorage = desc.fConfig != kRGB_565_GrPixelConfig;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000611 }
612
jvanverth3f801cb2014-12-16 09:49:38 -0800613 GrGLenum internalFormat = 0x0; // suppress warning
614 GrGLenum externalFormat = 0x0; // suppress warning
615 GrGLenum externalType = 0x0; // suppress warning
bsalomone904c092014-07-17 10:50:59 -0700616
jvanverthe1869ca2014-12-16 13:32:27 -0800617 // glTexStorage requires sized internal formats on both desktop and ES. ES2 requires an unsized
jvanverthf72b7522014-12-17 10:46:01 -0800618 // format for glTexImage, unlike ES3 and desktop.
jvanverthe1869ca2014-12-16 13:32:27 -0800619 bool useSizedFormat = useTexStorage;
jvanverthf72b7522014-12-17 10:46:01 -0800620 if (kGL_GrGLStandard == this->glStandard() ||
621 (this->glVersion() >= GR_GL_VER(3, 0) &&
622 // ES3 only works with sized BGRA8 format if "GL_APPLE_texture_format_BGRA8888" enabled
623 (kBGRA_8888_GrPixelConfig != dataConfig || !this->glCaps().bgraIsInternalFormat()))) {
jvanverthe1869ca2014-12-16 13:32:27 -0800624 useSizedFormat = true;
625 }
jvanverthf72b7522014-12-17 10:46:01 -0800626
bsalomone904c092014-07-17 10:50:59 -0700627 if (!this->configToGLFormats(dataConfig, useSizedFormat, &internalFormat,
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000628 &externalFormat, &externalType)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000629 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000630 }
631
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000632 /*
bsalomon@google.com6f379512011-11-16 20:36:03 +0000633 * check whether to allocate a temporary buffer for flipping y or
634 * because our srcData has extra bytes past each row. If so, we need
635 * to trim those off here, since GL ES may not let us specify
636 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000637 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000638 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000639 bool swFlipY = false;
640 bool glFlipY = false;
bsalomon49f085d2014-09-05 13:34:00 -0700641 if (data) {
senorblanco@chromium.orgef5dbe12013-01-28 16:42:38 +0000642 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000643 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000644 glFlipY = true;
645 } else {
646 swFlipY = true;
647 }
648 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000649 if (this->glCaps().unpackRowLengthSupport() && !swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000650 // can't use this for flipping, only non-neg values allowed. :(
651 if (rowBytes != trimRowBytes) {
652 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
653 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
654 restoreGLRowLength = true;
655 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000656 } else {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000657 if (trimRowBytes != rowBytes || swFlipY) {
658 // copy data into our new storage, skipping the trailing bytes
659 size_t trimSize = height * trimRowBytes;
660 const char* src = (const char*)data;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000661 if (swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000662 src += (height - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000663 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000664 char* dst = (char*)tempStorage.reset(trimSize);
665 for (int y = 0; y < height; y++) {
666 memcpy(dst, src, trimRowBytes);
667 if (swFlipY) {
668 src -= rowBytes;
669 } else {
670 src += rowBytes;
671 }
672 dst += trimRowBytes;
673 }
674 // now point data to our copied version
675 data = tempStorage.get();
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000676 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000677 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000678 if (glFlipY) {
679 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
680 }
joshualittee5da552014-07-16 13:32:56 -0700681 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT,
682 static_cast<GrGLint>(GrUnpackAlignment(dataConfig))));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000683 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000684 bool succeeded = true;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000685 if (isNewTexture &&
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000686 0 == left && 0 == top &&
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000687 desc.fWidth == width && desc.fHeight == height) {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000688 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000689 if (useTexStorage) {
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000690 // We never resize or change formats of textures.
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000691 GL_ALLOC_CALL(this->glInterface(),
692 TexStorage2D(GR_GL_TEXTURE_2D,
693 1, // levels
694 internalFormat,
695 desc.fWidth, desc.fHeight));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000696 } else {
bsalomond4cb9222014-08-11 14:19:09 -0700697 GL_ALLOC_CALL(this->glInterface(),
698 TexImage2D(GR_GL_TEXTURE_2D,
699 0, // level
700 internalFormat,
701 desc.fWidth, desc.fHeight,
702 0, // border
703 externalFormat, externalType,
704 data));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000705 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000706 GrGLenum error = check_alloc_error(desc, this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000707 if (error != GR_GL_NO_ERROR) {
708 succeeded = false;
709 } else {
710 // if we have data and we used TexStorage to create the texture, we
711 // now upload with TexSubImage.
bsalomon49f085d2014-09-05 13:34:00 -0700712 if (data && useTexStorage) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000713 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
714 0, // level
715 left, top,
716 width, height,
717 externalFormat, externalType,
718 data));
719 }
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000720 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000721 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000722 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000723 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000724 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000725 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
726 0, // level
727 left, top,
728 width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000729 externalFormat, externalType, data));
730 }
731
732 if (restoreGLRowLength) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000733 SkASSERT(this->glCaps().unpackRowLengthSupport());
bsalomon@google.com6f379512011-11-16 20:36:03 +0000734 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000735 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000736 if (glFlipY) {
737 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
738 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000739 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000740}
741
krajcevski145d48c2014-06-11 16:07:50 -0700742// TODO: This function is using a lot of wonky semantics like, if width == -1
piotaixre4b23142014-10-02 10:57:53 -0700743// then set width = desc.fWdith ... blah. A better way to do it might be to
krajcevski145d48c2014-06-11 16:07:50 -0700744// create a CompressedTexData struct that takes a desc/ptr and figures out
745// the proper upload semantics. Then users can construct this function how they
746// see fit if they want to go against the "standard" way to do it.
bsalomon861e1032014-12-16 07:33:49 -0800747bool GrGLGpu::uploadCompressedTexData(const GrSurfaceDesc& desc,
krajcevski145d48c2014-06-11 16:07:50 -0700748 const void* data,
749 bool isNewTexture,
750 int left, int top, int width, int height) {
bsalomon49f085d2014-09-05 13:34:00 -0700751 SkASSERT(data || isNewTexture);
krajcevski9c0e6292014-06-02 07:38:14 -0700752
753 // No support for software flip y, yet...
754 SkASSERT(kBottomLeft_GrSurfaceOrigin != desc.fOrigin);
755
krajcevski145d48c2014-06-11 16:07:50 -0700756 if (-1 == width) {
757 width = desc.fWidth;
758 }
759#ifdef SK_DEBUG
760 else {
761 SkASSERT(width <= desc.fWidth);
762 }
763#endif
764
765 if (-1 == height) {
766 height = desc.fHeight;
767 }
768#ifdef SK_DEBUG
769 else {
770 SkASSERT(height <= desc.fHeight);
771 }
772#endif
773
krajcevski9c0e6292014-06-02 07:38:14 -0700774 // Make sure that the width and height that we pass to OpenGL
775 // is a multiple of the block size.
bsalomon98806072014-12-12 15:11:17 -0800776 size_t dataSize = GrCompressedFormatDataSize(desc.fConfig, width, height);
krajcevski9c0e6292014-06-02 07:38:14 -0700777
778 // We only need the internal format for compressed 2D textures.
779 GrGLenum internalFormat = 0;
780 if (!this->configToGLFormats(desc.fConfig, false, &internalFormat, NULL, NULL)) {
781 return false;
782 }
783
krajcevski145d48c2014-06-11 16:07:50 -0700784 if (isNewTexture) {
bsalomond4cb9222014-08-11 14:19:09 -0700785 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
krajcevski145d48c2014-06-11 16:07:50 -0700786 GL_ALLOC_CALL(this->glInterface(),
787 CompressedTexImage2D(GR_GL_TEXTURE_2D,
788 0, // level
789 internalFormat,
790 width, height,
791 0, // border
bsalomon98806072014-12-12 15:11:17 -0800792 SkToInt(dataSize),
krajcevski145d48c2014-06-11 16:07:50 -0700793 data));
bsalomond4cb9222014-08-11 14:19:09 -0700794 GrGLenum error = check_alloc_error(desc, this->glInterface());
795 if (error != GR_GL_NO_ERROR) {
796 return false;
797 }
krajcevski145d48c2014-06-11 16:07:50 -0700798 } else {
bsalomond4cb9222014-08-11 14:19:09 -0700799 // Paletted textures can't be updated.
800 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
801 return false;
802 }
803 GL_CALL(CompressedTexSubImage2D(GR_GL_TEXTURE_2D,
804 0, // level
805 left, top,
806 width, height,
807 internalFormat,
bsalomon98806072014-12-12 15:11:17 -0800808 SkToInt(dataSize),
bsalomond4cb9222014-08-11 14:19:09 -0700809 data));
krajcevski145d48c2014-06-11 16:07:50 -0700810 }
krajcevski9c0e6292014-06-02 07:38:14 -0700811
bsalomond4cb9222014-08-11 14:19:09 -0700812 return true;
krajcevski9c0e6292014-06-02 07:38:14 -0700813}
814
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000815static bool renderbuffer_storage_msaa(GrGLContext& ctx,
816 int sampleCount,
817 GrGLenum format,
818 int width, int height) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000819 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000820 SkASSERT(GrGLCaps::kNone_MSFBOType != ctx.caps()->msFBOType());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000821 switch (ctx.caps()->msFBOType()) {
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000822 case GrGLCaps::kDesktop_ARB_MSFBOType:
823 case GrGLCaps::kDesktop_EXT_MSFBOType:
824 case GrGLCaps::kES_3_0_MSFBOType:
825 GL_ALLOC_CALL(ctx.interface(),
826 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
827 sampleCount,
828 format,
829 width, height));
830 break;
831 case GrGLCaps::kES_Apple_MSFBOType:
832 GL_ALLOC_CALL(ctx.interface(),
833 RenderbufferStorageMultisampleES2APPLE(GR_GL_RENDERBUFFER,
834 sampleCount,
835 format,
836 width, height));
837 break;
838 case GrGLCaps::kES_EXT_MsToTexture_MSFBOType:
839 case GrGLCaps::kES_IMG_MsToTexture_MSFBOType:
840 GL_ALLOC_CALL(ctx.interface(),
841 RenderbufferStorageMultisampleES2EXT(GR_GL_RENDERBUFFER,
842 sampleCount,
843 format,
844 width, height));
845 break;
846 case GrGLCaps::kNone_MSFBOType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000847 SkFAIL("Shouldn't be here if we don't support multisampled renderbuffers.");
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000848 break;
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000849 }
Brian Salomon9251d4e2015-03-17 16:03:19 -0400850 return (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000851}
852
egdanielb0e1be22015-04-22 13:27:39 -0700853bool GrGLGpu::createRenderTargetObjects(const GrSurfaceDesc& desc,
854 GrGpuResource::LifeCycle lifeCycle,
855 GrGLuint texID,
bsalomonb15b4c12014-10-29 12:41:57 -0700856 GrGLRenderTarget::IDDesc* idDesc) {
857 idDesc->fMSColorRenderbufferID = 0;
egdanield803f272015-03-18 13:01:52 -0700858 idDesc->fRTFBOID = 0;
859 idDesc->fTexFBOID = 0;
egdanielb0e1be22015-04-22 13:27:39 -0700860 idDesc->fLifeCycle = lifeCycle;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000861
862 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000863
bsalomon@google.comab15d612011-08-09 12:57:56 +0000864 GrGLenum msColorFormat = 0; // suppress warning
865
bsalomonb15b4c12014-10-29 12:41:57 -0700866 if (desc.fSampleCnt > 0 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000867 goto FAILED;
868 }
869
egdanield803f272015-03-18 13:01:52 -0700870 GL_CALL(GenFramebuffers(1, &idDesc->fTexFBOID));
871 if (!idDesc->fTexFBOID) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000872 goto FAILED;
873 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000874
egdanield803f272015-03-18 13:01:52 -0700875
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000876 // If we are using multisampling we will create two FBOS. We render to one and then resolve to
877 // the texture bound to the other. The exception is the IMG multisample extension. With this
878 // extension the texture is multisampled when rendered to and then auto-resolves it when it is
879 // rendered from.
bsalomonb15b4c12014-10-29 12:41:57 -0700880 if (desc.fSampleCnt > 0 && this->glCaps().usesMSAARenderBuffers()) {
egdanield803f272015-03-18 13:01:52 -0700881 GL_CALL(GenFramebuffers(1, &idDesc->fRTFBOID));
bsalomonb15b4c12014-10-29 12:41:57 -0700882 GL_CALL(GenRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
egdanield803f272015-03-18 13:01:52 -0700883 if (!idDesc->fRTFBOID ||
884 !idDesc->fMSColorRenderbufferID ||
bsalomonb15b4c12014-10-29 12:41:57 -0700885 !this->configToGLFormats(desc.fConfig,
commit-bot@chromium.org87002952013-08-20 15:12:01 +0000886 // ES2 and ES3 require sized internal formats for rb storage.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000887 kGLES_GrGLStandard == this->glStandard(),
bsalomon@google.com347c3822013-05-01 20:10:01 +0000888 &msColorFormat,
889 NULL,
890 NULL)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000891 goto FAILED;
892 }
893 } else {
egdanield803f272015-03-18 13:01:52 -0700894 idDesc->fRTFBOID = idDesc->fTexFBOID;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000895 }
896
egdanield803f272015-03-18 13:01:52 -0700897 // below here we may bind the FBO
898 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
899 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
bsalomonb15b4c12014-10-29 12:41:57 -0700900 SkASSERT(desc.fSampleCnt > 0);
901 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, idDesc->fMSColorRenderbufferID));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000902 if (!renderbuffer_storage_msaa(fGLContext,
bsalomonb15b4c12014-10-29 12:41:57 -0700903 desc.fSampleCnt,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000904 msColorFormat,
bsalomonb15b4c12014-10-29 12:41:57 -0700905 desc.fWidth, desc.fHeight)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000906 goto FAILED;
907 }
egdanield803f272015-03-18 13:01:52 -0700908 fStats.incRenderTargetBinds();
909 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fRTFBOID));
910 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
911 GR_GL_COLOR_ATTACHMENT0,
912 GR_GL_RENDERBUFFER,
913 idDesc->fMSColorRenderbufferID));
bsalomonb15b4c12014-10-29 12:41:57 -0700914 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
915 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000916 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
917 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
918 goto FAILED;
919 }
bsalomonb15b4c12014-10-29 12:41:57 -0700920 fGLContext.caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000921 }
922 }
egdanield803f272015-03-18 13:01:52 -0700923 fStats.incRenderTargetBinds();
924 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000925
bsalomonb15b4c12014-10-29 12:41:57 -0700926 if (this->glCaps().usesImplicitMSAAResolve() && desc.fSampleCnt > 0) {
egdanield803f272015-03-18 13:01:52 -0700927 GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000928 GR_GL_COLOR_ATTACHMENT0,
929 GR_GL_TEXTURE_2D,
bsalomonb15b4c12014-10-29 12:41:57 -0700930 texID, 0, desc.fSampleCnt));
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000931 } else {
egdanield803f272015-03-18 13:01:52 -0700932 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000933 GR_GL_COLOR_ATTACHMENT0,
934 GR_GL_TEXTURE_2D,
935 texID, 0));
936 }
bsalomonb15b4c12014-10-29 12:41:57 -0700937 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
938 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
egdanield803f272015-03-18 13:01:52 -0700939 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000940 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
941 goto FAILED;
942 }
bsalomonb15b4c12014-10-29 12:41:57 -0700943 fGLContext.caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000944 }
945
946 return true;
947
948FAILED:
bsalomonb15b4c12014-10-29 12:41:57 -0700949 if (idDesc->fMSColorRenderbufferID) {
950 GL_CALL(DeleteRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000951 }
egdanield803f272015-03-18 13:01:52 -0700952 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
953 GL_CALL(DeleteFramebuffers(1, &idDesc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000954 }
egdanield803f272015-03-18 13:01:52 -0700955 if (idDesc->fTexFBOID) {
956 GL_CALL(DeleteFramebuffers(1, &idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000957 }
958 return false;
959}
960
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000961// good to set a break-point here to know when createTexture fails
962static GrTexture* return_null_texture() {
mtklein@google.com330313a2013-08-22 15:37:26 +0000963// SkDEBUGFAIL("null texture");
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000964 return NULL;
965}
966
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000967#if 0 && defined(SK_DEBUG)
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000968static size_t as_size_t(int x) {
969 return x;
970}
971#endif
972
egdanielb0e1be22015-04-22 13:27:39 -0700973GrTexture* GrGLGpu::onCreateTexture(const GrSurfaceDesc& desc,
974 GrGpuResource::LifeCycle lifeCycle,
bsalomon5236cf42015-01-14 10:42:08 -0800975 const void* srcData, size_t rowBytes) {
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000976 // We fail if the MSAA was requested and is not available.
977 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
tfarina38406c82014-10-31 07:11:12 -0700978 //SkDebugf("MSAA RT requested but not supported on this platform.");
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000979 return return_null_texture();
980 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000981
bsalomonf2703d82014-10-28 14:33:06 -0700982 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
reed@google.comac10a2d2010-12-22 21:39:39 +0000983
bsalomonb15b4c12014-10-29 12:41:57 -0700984 GrGLTexture::IDDesc idDesc;
985 GL_CALL(GenTextures(1, &idDesc.fTextureID));
egdanielb0e1be22015-04-22 13:27:39 -0700986 idDesc.fLifeCycle = lifeCycle;
junov@chromium.org8b6b1c92013-08-29 16:22:09 +0000987
bsalomonb15b4c12014-10-29 12:41:57 -0700988 if (!idDesc.fTextureID) {
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000989 return return_null_texture();
990 }
991
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000992 this->setScratchTextureUnit();
bsalomonb15b4c12014-10-29 12:41:57 -0700993 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, idDesc.fTextureID));
bsalomon@google.come269f212011-11-07 13:29:52 +0000994
junov@chromium.org8b6b1c92013-08-29 16:22:09 +0000995 if (renderTarget && this->glCaps().textureUsageSupport()) {
996 // provides a hint about how this texture will be used
997 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
998 GR_GL_TEXTURE_USAGE,
999 GR_GL_FRAMEBUFFER_ATTACHMENT));
1000 }
1001
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001002 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1003 // drivers have a bug where an FBO won't be complete if it includes a
1004 // texture that is not mipmap complete (considering the filter in use).
1005 GrGLTexture::TexParams initialTexParams;
1006 // we only set a subset here so invalidate first
1007 initialTexParams.invalidate();
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00001008 initialTexParams.fMinFilter = GR_GL_NEAREST;
1009 initialTexParams.fMagFilter = GR_GL_NEAREST;
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001010 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
1011 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001012 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1013 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00001014 initialTexParams.fMagFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001015 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1016 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00001017 initialTexParams.fMinFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001018 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1019 GR_GL_TEXTURE_WRAP_S,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001020 initialTexParams.fWrapS));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001021 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1022 GR_GL_TEXTURE_WRAP_T,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001023 initialTexParams.fWrapT));
bsalomonb15b4c12014-10-29 12:41:57 -07001024 if (!this->uploadTexData(desc, true, 0, 0,
1025 desc.fWidth, desc.fHeight,
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001026 desc.fConfig, srcData, rowBytes)) {
bsalomonb15b4c12014-10-29 12:41:57 -07001027 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001028 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001029 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001030
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001031 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +00001032 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001033 // unbind the texture from the texture unit before binding it to the frame buffer
1034 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
bsalomon5236cf42015-01-14 10:42:08 -08001035 GrGLRenderTarget::IDDesc rtIDDesc;
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001036
egdanielb0e1be22015-04-22 13:27:39 -07001037 if (!this->createRenderTargetObjects(desc, lifeCycle, idDesc.fTextureID, &rtIDDesc)) {
bsalomonb15b4c12014-10-29 12:41:57 -07001038 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
reed@google.comac10a2d2010-12-22 21:39:39 +00001039 return return_null_texture();
1040 }
bsalomon37dd3312014-11-03 08:47:23 -08001041 tex = SkNEW_ARGS(GrGLTextureRenderTarget, (this, desc, idDesc, rtIDDesc));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001042 } else {
bsalomonb15b4c12014-10-29 12:41:57 -07001043 tex = SkNEW_ARGS(GrGLTexture, (this, desc, idDesc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001044 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001045 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +00001046#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001047 SkDebugf("--- new texture [%d] size=(%d %d) config=%d\n",
bsalomon@google.com64c4fe42011-11-05 14:51:01 +00001048 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +00001049#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001050 return tex;
1051}
1052
egdanielb0e1be22015-04-22 13:27:39 -07001053GrTexture* GrGLGpu::onCreateCompressedTexture(const GrSurfaceDesc& desc,
1054 GrGpuResource::LifeCycle lifeCycle,
bsalomon5236cf42015-01-14 10:42:08 -08001055 const void* srcData) {
krajcevski9c0e6292014-06-02 07:38:14 -07001056 // Make sure that we're not flipping Y.
egdanielb0e1be22015-04-22 13:27:39 -07001057 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
krajcevski9c0e6292014-06-02 07:38:14 -07001058 return return_null_texture();
1059 }
1060
bsalomonb15b4c12014-10-29 12:41:57 -07001061 GrGLTexture::IDDesc idDesc;
1062 GL_CALL(GenTextures(1, &idDesc.fTextureID));
egdanielb0e1be22015-04-22 13:27:39 -07001063 idDesc.fLifeCycle = lifeCycle;
krajcevski9c0e6292014-06-02 07:38:14 -07001064
bsalomonb15b4c12014-10-29 12:41:57 -07001065 if (!idDesc.fTextureID) {
krajcevski9c0e6292014-06-02 07:38:14 -07001066 return return_null_texture();
1067 }
1068
1069 this->setScratchTextureUnit();
bsalomonb15b4c12014-10-29 12:41:57 -07001070 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, idDesc.fTextureID));
krajcevski9c0e6292014-06-02 07:38:14 -07001071
1072 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1073 // drivers have a bug where an FBO won't be complete if it includes a
1074 // texture that is not mipmap complete (considering the filter in use).
1075 GrGLTexture::TexParams initialTexParams;
1076 // we only set a subset here so invalidate first
1077 initialTexParams.invalidate();
1078 initialTexParams.fMinFilter = GR_GL_NEAREST;
1079 initialTexParams.fMagFilter = GR_GL_NEAREST;
1080 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
1081 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
1082 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1083 GR_GL_TEXTURE_MAG_FILTER,
1084 initialTexParams.fMagFilter));
1085 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1086 GR_GL_TEXTURE_MIN_FILTER,
1087 initialTexParams.fMinFilter));
1088 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1089 GR_GL_TEXTURE_WRAP_S,
1090 initialTexParams.fWrapS));
1091 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1092 GR_GL_TEXTURE_WRAP_T,
1093 initialTexParams.fWrapT));
1094
bsalomonb15b4c12014-10-29 12:41:57 -07001095 if (!this->uploadCompressedTexData(desc, srcData)) {
1096 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
krajcevski9c0e6292014-06-02 07:38:14 -07001097 return return_null_texture();
1098 }
1099
1100 GrGLTexture* tex;
bsalomonb15b4c12014-10-29 12:41:57 -07001101 tex = SkNEW_ARGS(GrGLTexture, (this, desc, idDesc));
krajcevski9c0e6292014-06-02 07:38:14 -07001102 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
1103#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001104 SkDebugf("--- new compressed texture [%d] size=(%d %d) config=%d\n",
krajcevski9c0e6292014-06-02 07:38:14 -07001105 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
1106#endif
1107 return tex;
1108}
1109
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001110namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001111
egdaniel8dc7c3a2015-04-16 11:22:42 -07001112const GrGLuint kUnknownBitCount = GrGLStencilAttachment::kUnknownBitCount;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001113
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001114void inline get_stencil_rb_sizes(const GrGLInterface* gl,
egdaniel8dc7c3a2015-04-16 11:22:42 -07001115 GrGLStencilAttachment::Format* format) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001116
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001117 // we shouldn't ever know one size and not the other
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001118 SkASSERT((kUnknownBitCount == format->fStencilBits) ==
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001119 (kUnknownBitCount == format->fTotalBits));
1120 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001121 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001122 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1123 (GrGLint*)&format->fStencilBits);
1124 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001125 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001126 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1127 (GrGLint*)&format->fTotalBits);
1128 format->fTotalBits += format->fStencilBits;
1129 } else {
1130 format->fTotalBits = format->fStencilBits;
1131 }
1132 }
1133}
1134}
1135
egdaniel8dc7c3a2015-04-16 11:22:42 -07001136bool GrGLGpu::createStencilAttachmentForRenderTarget(GrRenderTarget* rt, int width, int height) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001137 // All internally created RTs are also textures. We don't create
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001138 // 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 +00001139 SkASSERT(rt->asTexture());
1140 SkASSERT(width >= rt->width());
1141 SkASSERT(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001142
1143 int samples = rt->numSamples();
egdaniel8dc7c3a2015-04-16 11:22:42 -07001144 GrGLStencilAttachment::IDDesc sbDesc;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001145
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001146 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001147 for (int i = 0; i < stencilFmtCnt; ++i) {
kkinnunen36c57df2015-01-27 00:30:18 -08001148 if (!sbDesc.fRenderbufferID) {
1149 GL_CALL(GenRenderbuffers(1, &sbDesc.fRenderbufferID));
bsalomon12299ab2014-11-14 13:33:09 -08001150 }
kkinnunen36c57df2015-01-27 00:30:18 -08001151 if (!sbDesc.fRenderbufferID) {
bsalomon12299ab2014-11-14 13:33:09 -08001152 return false;
1153 }
kkinnunen36c57df2015-01-27 00:30:18 -08001154 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001155 // we start with the last stencil format that succeeded in hopes
1156 // that we won't go through this loop more than once after the
1157 // first (painful) stencil creation.
1158 int sIdx = (i + fLastSuccessfulStencilFmtIdx) % stencilFmtCnt;
bsalomon12299ab2014-11-14 13:33:09 -08001159 const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[sIdx];
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001160 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001161 // we do this "if" so that we don't call the multisample
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001162 // version on a GL that doesn't have an MSAA extension.
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001163 bool created;
1164 if (samples > 0) {
robertphillips@google.com6177e692013-02-28 20:16:25 +00001165 created = renderbuffer_storage_msaa(fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001166 samples,
1167 sFmt.fInternalFormat,
1168 width, height);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001169 } else {
bsalomon12299ab2014-11-14 13:33:09 -08001170 GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER,
1171 sFmt.fInternalFormat,
1172 width, height));
1173 created = (GR_GL_NO_ERROR == check_alloc_error(rt->desc(), this->glInterface()));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001174 }
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001175 if (created) {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001176 fStats.incStencilAttachmentCreates();
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001177 // After sized formats we attempt an unsized format and take
1178 // whatever sizes GL gives us. In that case we query for the size.
egdaniel8dc7c3a2015-04-16 11:22:42 -07001179 GrGLStencilAttachment::Format format = sFmt;
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001180 get_stencil_rb_sizes(this->glInterface(), &format);
egdaniel8dc7c3a2015-04-16 11:22:42 -07001181 SkAutoTUnref<GrGLStencilAttachment> sb(SkNEW_ARGS(GrGLStencilAttachment,
kkinnunen36c57df2015-01-27 00:30:18 -08001182 (this, sbDesc, width, height, samples, format)));
egdaniel8dc7c3a2015-04-16 11:22:42 -07001183 if (this->attachStencilAttachmentToRenderTarget(sb, rt)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001184 fLastSuccessfulStencilFmtIdx = sIdx;
egdaniel8dc7c3a2015-04-16 11:22:42 -07001185 rt->renderTargetPriv().didAttachStencilAttachment(sb);
egdanieldf603552015-03-18 13:26:11 -07001186// This work around is currently breaking on windows 7 hd2000 bot when we bind a color buffer
1187#if 0
bsalomondd3143b2015-02-23 09:27:45 -08001188 // Clear the stencil buffer. We use a special purpose FBO for this so that the
1189 // entire stencil buffer is cleared, even if it is attached to an FBO with a
1190 // smaller color target.
egdanield803f272015-03-18 13:01:52 -07001191 if (0 == fStencilClearFBOID) {
1192 GL_CALL(GenFramebuffers(1, &fStencilClearFBOID));
bsalomondd3143b2015-02-23 09:27:45 -08001193 }
robertphillips73165bd2015-03-01 07:38:15 -08001194
egdanield803f272015-03-18 13:01:52 -07001195 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fStencilClearFBOID));
1196 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1197 fStats.incRenderTargetBinds();
1198 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001199 GR_GL_STENCIL_ATTACHMENT,
1200 GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
1201 if (sFmt.fPacked) {
egdanield803f272015-03-18 13:01:52 -07001202 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001203 GR_GL_DEPTH_ATTACHMENT,
1204 GR_GL_RENDERBUFFER, sbDesc.fRenderbufferID));
1205 }
1206
1207 GL_CALL(ClearStencil(0));
bsalomon9d2049d2015-03-17 12:06:19 -07001208 // Many GL implementations seem to have trouble with clearing an FBO with only
1209 // a stencil buffer.
1210 GrGLuint tempRB;
1211 GL_CALL(GenRenderbuffers(1, &tempRB));
1212 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, tempRB));
Brian Salomon9251d4e2015-03-17 16:03:19 -04001213 if (samples > 0) {
1214 renderbuffer_storage_msaa(fGLContext, samples, GR_GL_RGBA8, width, height);
1215 } else {
1216 GL_CALL(RenderbufferStorage(GR_GL_RENDERBUFFER, GR_GL_RGBA8, width, height));
1217 }
egdanield803f272015-03-18 13:01:52 -07001218 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon9d2049d2015-03-17 12:06:19 -07001219 GR_GL_COLOR_ATTACHMENT0,
1220 GR_GL_RENDERBUFFER, tempRB));
1221
bsalomondd3143b2015-02-23 09:27:45 -08001222 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
1223
egdanield803f272015-03-18 13:01:52 -07001224 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon9d2049d2015-03-17 12:06:19 -07001225 GR_GL_COLOR_ATTACHMENT0,
1226 GR_GL_RENDERBUFFER, 0));
1227 GL_CALL(DeleteRenderbuffers(1, &tempRB));
1228
bsalomondd3143b2015-02-23 09:27:45 -08001229 // Unbind the SB from the FBO so that we don't keep it alive.
egdanield803f272015-03-18 13:01:52 -07001230 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001231 GR_GL_STENCIL_ATTACHMENT,
1232 GR_GL_RENDERBUFFER, 0));
1233 if (sFmt.fPacked) {
egdanield803f272015-03-18 13:01:52 -07001234 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomondd3143b2015-02-23 09:27:45 -08001235 GR_GL_DEPTH_ATTACHMENT,
1236 GR_GL_RENDERBUFFER, 0));
1237 }
egdanieldf603552015-03-18 13:26:11 -07001238#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001239 return true;
bsalomon12299ab2014-11-14 13:33:09 -08001240 }
bsalomon10e23ca2014-11-25 05:52:06 -08001241 // Remove the scratch key from this resource so we don't grab it from the cache ever
1242 // again.
bsalomon3582d3e2015-02-13 14:20:05 -08001243 sb->resourcePriv().removeScratchKey();
bsalomon10e23ca2014-11-25 05:52:06 -08001244 // Set this to 0 since we handed the valid ID off to the failed stencil buffer resource.
kkinnunen36c57df2015-01-27 00:30:18 -08001245 sbDesc.fRenderbufferID = 0;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001246 }
1247 }
kkinnunen36c57df2015-01-27 00:30:18 -08001248 GL_CALL(DeleteRenderbuffers(1, &sbDesc.fRenderbufferID));
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001249 return false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001250}
1251
egdaniel8dc7c3a2015-04-16 11:22:42 -07001252bool GrGLGpu::attachStencilAttachmentToRenderTarget(GrStencilAttachment* sb, GrRenderTarget* rt) {
bsalomon37dd3312014-11-03 08:47:23 -08001253 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt);
egdanield803f272015-03-18 13:01:52 -07001254
1255 GrGLuint fbo = glrt->renderFBOID();
1256
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001257 if (NULL == sb) {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001258 if (rt->renderTargetPriv().getStencilAttachment()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001259 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001260 GR_GL_STENCIL_ATTACHMENT,
1261 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001262 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001263 GR_GL_DEPTH_ATTACHMENT,
1264 GR_GL_RENDERBUFFER, 0));
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001265#ifdef SK_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001266 GrGLenum status;
1267 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001268 SkASSERT(GR_GL_FRAMEBUFFER_COMPLETE == status);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001269#endif
1270 }
1271 return true;
1272 } else {
egdaniel8dc7c3a2015-04-16 11:22:42 -07001273 GrGLStencilAttachment* glsb = static_cast<GrGLStencilAttachment*>(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001274 GrGLuint rb = glsb->renderbufferID();
1275
egdanield803f272015-03-18 13:01:52 -07001276 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1277 fStats.incRenderTargetBinds();
1278 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fbo));
1279 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001280 GR_GL_STENCIL_ATTACHMENT,
1281 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001282 if (glsb->format().fPacked) {
egdanield803f272015-03-18 13:01:52 -07001283 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001284 GR_GL_DEPTH_ATTACHMENT,
1285 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001286 } else {
egdanield803f272015-03-18 13:01:52 -07001287 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001288 GR_GL_DEPTH_ATTACHMENT,
1289 GR_GL_RENDERBUFFER, 0));
reed@google.comac10a2d2010-12-22 21:39:39 +00001290 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001291
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001292 GrGLenum status;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001293 if (!this->glCaps().isColorConfigAndStencilFormatVerified(rt->config(), glsb->format())) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001294 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1295 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
egdanield803f272015-03-18 13:01:52 -07001296 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1297 GR_GL_STENCIL_ATTACHMENT,
1298 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001299 if (glsb->format().fPacked) {
egdanield803f272015-03-18 13:01:52 -07001300 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1301 GR_GL_DEPTH_ATTACHMENT,
1302 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001303 }
1304 return false;
1305 } else {
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +00001306 fGLContext.caps()->markColorConfigAndStencilFormatAsVerified(
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001307 rt->config(),
1308 glsb->format());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001309 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001310 }
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001311 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001312 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001313}
1314
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001315////////////////////////////////////////////////////////////////////////////////
1316
bsalomon861e1032014-12-16 07:33:49 -08001317GrVertexBuffer* GrGLGpu::onCreateVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001318 GrGLVertexBuffer::Desc desc;
1319 desc.fDynamic = dynamic;
1320 desc.fSizeInBytes = size;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001321
bsalomon@google.com96966a52013-02-21 16:34:21 +00001322 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001323 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001324 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001325 return vertexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001326 } else {
1327 GL_CALL(GenBuffers(1, &desc.fID));
1328 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001329 fHWGeometryState.setVertexBufferID(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001330 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1331 // make sure driver can allocate memory for this buffer
1332 GL_ALLOC_CALL(this->glInterface(),
1333 BufferData(GR_GL_ARRAY_BUFFER,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001334 (GrGLsizeiptr) desc.fSizeInBytes,
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001335 NULL, // data ptr
1336 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1337 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1338 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001339 this->notifyVertexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001340 return NULL;
1341 }
1342 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
1343 return vertexBuffer;
1344 }
1345 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001346 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001347}
1348
bsalomon861e1032014-12-16 07:33:49 -08001349GrIndexBuffer* GrGLGpu::onCreateIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001350 GrGLIndexBuffer::Desc desc;
1351 desc.fDynamic = dynamic;
1352 desc.fSizeInBytes = size;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001353
bsalomon@google.com96966a52013-02-21 16:34:21 +00001354 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001355 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001356 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001357 return indexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001358 } else {
1359 GL_CALL(GenBuffers(1, &desc.fID));
1360 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001361 fHWGeometryState.setIndexBufferIDOnDefaultVertexArray(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001362 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1363 // make sure driver can allocate memory for this buffer
1364 GL_ALLOC_CALL(this->glInterface(),
1365 BufferData(GR_GL_ELEMENT_ARRAY_BUFFER,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001366 (GrGLsizeiptr) desc.fSizeInBytes,
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001367 NULL, // data ptr
1368 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1369 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1370 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001371 this->notifyIndexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001372 return NULL;
1373 }
1374 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
1375 return indexBuffer;
1376 }
1377 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001378 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001379}
1380
bsalomon3e791242014-12-17 13:43:13 -08001381void GrGLGpu::flushScissor(const GrScissorState& scissorState,
joshualitt77b13072014-10-27 14:51:01 -07001382 const GrGLIRect& rtViewport,
1383 GrSurfaceOrigin rtOrigin) {
robertphillipse85a32d2015-02-10 08:16:55 -08001384 if (scissorState.enabled()) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001385 GrGLIRect scissor;
bsalomonb0bd4f62014-09-03 07:19:50 -07001386 scissor.setRelativeTo(rtViewport,
robertphillipse85a32d2015-02-10 08:16:55 -08001387 scissorState.rect().fLeft,
1388 scissorState.rect().fTop,
1389 scissorState.rect().width(),
1390 scissorState.rect().height(),
bsalomonb0bd4f62014-09-03 07:19:50 -07001391 rtOrigin);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001392 // if the scissor fully contains the viewport then we fall through and
1393 // disable the scissor test.
bsalomonb0bd4f62014-09-03 07:19:50 -07001394 if (!scissor.contains(rtViewport)) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001395 if (fHWScissorSettings.fRect != scissor) {
1396 scissor.pushToGLScissor(this->glInterface());
1397 fHWScissorSettings.fRect = scissor;
1398 }
1399 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1400 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1401 fHWScissorSettings.fEnabled = kYes_TriState;
1402 }
1403 return;
1404 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001405 }
joshualitt77b13072014-10-27 14:51:01 -07001406
1407 // See fall through note above
1408 this->disableScissor();
1409}
1410
cdaltond0a840d2015-03-16 17:19:58 -07001411bool GrGLGpu::flushGLState(const DrawArgs& args) {
egdaniel080e6732014-12-22 07:35:52 -08001412 GrXferProcessor::BlendInfo blendInfo;
egdaniel8dd688b2015-01-22 10:16:09 -08001413 const GrPipeline& pipeline = *args.fPipeline;
1414 args.fPipeline->getXferProcessor()->getBlendInfo(&blendInfo);
egdaniel080e6732014-12-22 07:35:52 -08001415
egdaniel8dd688b2015-01-22 10:16:09 -08001416 this->flushDither(pipeline.isDitherState());
egdaniel080e6732014-12-22 07:35:52 -08001417 this->flushColorWrite(blendInfo.fWriteColor);
egdaniel8dd688b2015-01-22 10:16:09 -08001418 this->flushDrawFace(pipeline.getDrawFace());
bsalomonbc3d0de2014-12-15 13:45:03 -08001419
mtklein404b3b22015-05-18 09:29:10 -07001420 fCurrentProgram.reset(fProgramCache->getProgram(args));
1421 if (NULL == fCurrentProgram.get()) {
joshualitt6c891102015-05-13 08:51:49 -07001422 GrContextDebugf(this->getContext(), "Failed to create program!\n");
bsalomon1f78c0a2014-12-17 09:43:13 -08001423 return false;
bsalomonbc3d0de2014-12-15 13:45:03 -08001424 }
1425
mtklein404b3b22015-05-18 09:29:10 -07001426 fCurrentProgram.get()->ref();
1427
1428 GrGLuint programID = fCurrentProgram->programID();
bsalomon1f78c0a2014-12-17 09:43:13 -08001429 if (fHWProgramID != programID) {
1430 GL_CALL(UseProgram(programID));
1431 fHWProgramID = programID;
1432 }
1433
egdanield803f272015-03-18 13:01:52 -07001434 if (blendInfo.fWriteColor) {
1435 this->flushBlend(blendInfo);
1436 }
bsalomon1f78c0a2014-12-17 09:43:13 -08001437
mtklein404b3b22015-05-18 09:29:10 -07001438 fCurrentProgram->setData(*args.fPrimitiveProcessor, pipeline, *args.fBatchTracker);
bsalomon1f78c0a2014-12-17 09:43:13 -08001439
egdaniel8dd688b2015-01-22 10:16:09 -08001440 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(pipeline.getRenderTarget());
1441 this->flushStencil(pipeline.getStencil());
1442 this->flushScissor(pipeline.getScissorState(), glRT->getViewport(), glRT->origin());
cdaltond0a840d2015-03-16 17:19:58 -07001443 this->flushHWAAState(glRT, pipeline.isHWAntialiasState());
bsalomonbc3d0de2014-12-15 13:45:03 -08001444
1445 // This must come after textures are flushed because a texture may need
egdanield803f272015-03-18 13:01:52 -07001446 // to be msaa-resolved (which will modify bound FBO state).
1447 this->flushRenderTarget(glRT, NULL);
bsalomonbc3d0de2014-12-15 13:45:03 -08001448
1449 return true;
1450}
1451
joshualitt873ad0e2015-01-20 09:08:51 -08001452void GrGLGpu::setupGeometry(const GrPrimitiveProcessor& primProc,
bsalomone64eb572015-05-07 11:35:55 -07001453 const GrNonInstancedVertices& vertices,
bsalomonbc3d0de2014-12-15 13:45:03 -08001454 size_t* indexOffsetInBytes) {
1455 GrGLVertexBuffer* vbuf;
bsalomone64eb572015-05-07 11:35:55 -07001456 vbuf = (GrGLVertexBuffer*) vertices.vertexBuffer();
bsalomonbc3d0de2014-12-15 13:45:03 -08001457
1458 SkASSERT(vbuf);
1459 SkASSERT(!vbuf->isMapped());
1460
1461 GrGLIndexBuffer* ibuf = NULL;
bsalomone64eb572015-05-07 11:35:55 -07001462 if (vertices.isIndexed()) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001463 SkASSERT(indexOffsetInBytes);
1464
1465 *indexOffsetInBytes = 0;
bsalomone64eb572015-05-07 11:35:55 -07001466 ibuf = (GrGLIndexBuffer*)vertices.indexBuffer();
bsalomonbc3d0de2014-12-15 13:45:03 -08001467
1468 SkASSERT(ibuf);
1469 SkASSERT(!ibuf->isMapped());
1470 *indexOffsetInBytes += ibuf->baseOffset();
1471 }
1472 GrGLAttribArrayState* attribState =
1473 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
1474
joshualitt873ad0e2015-01-20 09:08:51 -08001475 int vaCount = primProc.numAttribs();
joshualitt71c92602015-01-14 08:12:47 -08001476 if (vaCount > 0) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001477
joshualitt873ad0e2015-01-20 09:08:51 -08001478 GrGLsizei stride = static_cast<GrGLsizei>(primProc.getVertexStride());
bsalomonbc3d0de2014-12-15 13:45:03 -08001479
bsalomone64eb572015-05-07 11:35:55 -07001480 size_t vertexOffsetInBytes = stride * vertices.startVertex();
bsalomonbc3d0de2014-12-15 13:45:03 -08001481
1482 vertexOffsetInBytes += vbuf->baseOffset();
1483
bsalomonbc3d0de2014-12-15 13:45:03 -08001484 uint32_t usedAttribArraysMask = 0;
1485 size_t offset = 0;
1486
1487 for (int attribIndex = 0; attribIndex < vaCount; attribIndex++) {
joshualitt873ad0e2015-01-20 09:08:51 -08001488 const GrGeometryProcessor::Attribute& attrib = primProc.getAttrib(attribIndex);
bsalomonbc3d0de2014-12-15 13:45:03 -08001489 usedAttribArraysMask |= (1 << attribIndex);
joshualitt71c92602015-01-14 08:12:47 -08001490 GrVertexAttribType attribType = attrib.fType;
bsalomonbc3d0de2014-12-15 13:45:03 -08001491 attribState->set(this,
1492 attribIndex,
mtklein404b3b22015-05-18 09:29:10 -07001493 vbuf,
bsalomonbc3d0de2014-12-15 13:45:03 -08001494 GrGLAttribTypeToLayout(attribType).fCount,
1495 GrGLAttribTypeToLayout(attribType).fType,
1496 GrGLAttribTypeToLayout(attribType).fNormalized,
1497 stride,
1498 reinterpret_cast<GrGLvoid*>(vertexOffsetInBytes + offset));
joshualitt71c92602015-01-14 08:12:47 -08001499 offset += attrib.fOffset;
bsalomonbc3d0de2014-12-15 13:45:03 -08001500 }
1501 attribState->disableUnusedArrays(this, usedAttribArraysMask);
1502 }
1503}
1504
joshualitt873ad0e2015-01-20 09:08:51 -08001505void GrGLGpu::buildProgramDesc(GrProgramDesc* desc,
1506 const GrPrimitiveProcessor& primProc,
egdaniel8dd688b2015-01-22 10:16:09 -08001507 const GrPipeline& pipeline,
joshualitt873ad0e2015-01-20 09:08:51 -08001508 const GrBatchTracker& batchTracker) const {
bsalomon50785a32015-02-06 07:02:37 -08001509 if (!GrGLProgramDescBuilder::Build(desc, primProc, pipeline, this, batchTracker)) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001510 SkDEBUGFAIL("Failed to generate GL program descriptor");
1511 }
1512}
1513
bsalomon861e1032014-12-16 07:33:49 -08001514void GrGLGpu::disableScissor() {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001515 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001516 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001517 fHWScissorSettings.fEnabled = kNo_TriState;
1518 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001519 }
1520}
1521
bsalomon861e1032014-12-16 07:33:49 -08001522void GrGLGpu::onClear(GrRenderTarget* target, const SkIRect* rect, GrColor color,
joshualitt4b68ec02014-11-07 14:11:45 -08001523 bool canIgnoreRect) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001524 // parent class should never let us get here with no RT
bsalomon49f085d2014-09-05 13:34:00 -07001525 SkASSERT(target);
bsalomonb0bd4f62014-09-03 07:19:50 -07001526 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001527
robertphillips@google.com56ce48a2013-10-31 21:44:25 +00001528 if (canIgnoreRect && this->glCaps().fullClearIsFree()) {
1529 rect = NULL;
1530 }
1531
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001532 SkIRect clippedRect;
bsalomon49f085d2014-09-05 13:34:00 -07001533 if (rect) {
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001534 // flushScissor expects rect to be clipped to the target.
bsalomon@google.com74b98712011-11-11 19:46:16 +00001535 clippedRect = *rect;
bsalomonb0bd4f62014-09-03 07:19:50 -07001536 SkIRect rtRect = SkIRect::MakeWH(target->width(), target->height());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001537 if (clippedRect.intersect(rtRect)) {
1538 rect = &clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001539 } else {
1540 return;
1541 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001542 }
rmistry@google.comd6bab022013-12-02 13:50:38 +00001543
egdanield803f272015-03-18 13:01:52 -07001544 this->flushRenderTarget(glRT, rect);
bsalomon3e791242014-12-17 13:43:13 -08001545 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08001546 if (rect) {
1547 scissorState.set(*rect);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001548 }
joshualitt77b13072014-10-27 14:51:01 -07001549 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001550
1551 GrGLfloat r, g, b, a;
1552 static const GrGLfloat scale255 = 1.f / 255.f;
1553 a = GrColorUnpackA(color) * scale255;
1554 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001555 r = GrColorUnpackR(color) * scaleRGB;
1556 g = GrColorUnpackG(color) * scaleRGB;
1557 b = GrColorUnpackB(color) * scaleRGB;
1558
1559 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00001560 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001561 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001562 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00001563}
1564
bsalomon861e1032014-12-16 07:33:49 -08001565void GrGLGpu::discard(GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -08001566 SkASSERT(renderTarget);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001567 if (!this->caps()->discardRenderTargetSupport()) {
1568 return;
1569 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001570
1571 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(renderTarget);
egdanield803f272015-03-18 13:01:52 -07001572 if (renderTarget->getUniqueID() != fHWBoundRenderTargetUniqueID) {
1573 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
1574 fStats.incRenderTargetBinds();
1575 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, glRT->renderFBOID()));
1576 }
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001577 switch (this->glCaps().invalidateFBType()) {
joshualitt58162332014-08-01 06:44:53 -07001578 case GrGLCaps::kNone_InvalidateFBType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00001579 SkFAIL("Should never get here.");
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001580 break;
1581 case GrGLCaps::kInvalidate_InvalidateFBType:
egdanield803f272015-03-18 13:01:52 -07001582 if (0 == glRT->renderFBOID()) {
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001583 // When rendering to the default framebuffer the legal values for attachments
1584 // are GL_COLOR, GL_DEPTH, GL_STENCIL, ... rather than the various FBO attachment
1585 // types.
1586 static const GrGLenum attachments[] = { GR_GL_COLOR };
egdanield803f272015-03-18 13:01:52 -07001587 GL_CALL(InvalidateFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001588 attachments));
1589 } else {
1590 static const GrGLenum attachments[] = { GR_GL_COLOR_ATTACHMENT0 };
egdanield803f272015-03-18 13:01:52 -07001591 GL_CALL(InvalidateFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001592 attachments));
1593 }
1594 break;
1595 case GrGLCaps::kDiscard_InvalidateFBType: {
egdanield803f272015-03-18 13:01:52 -07001596 if (0 == glRT->renderFBOID()) {
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001597 // When rendering to the default framebuffer the legal values for attachments
1598 // are GL_COLOR, GL_DEPTH, GL_STENCIL, ... rather than the various FBO attachment
1599 // types. See glDiscardFramebuffer() spec.
1600 static const GrGLenum attachments[] = { GR_GL_COLOR };
egdanield803f272015-03-18 13:01:52 -07001601 GL_CALL(DiscardFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001602 attachments));
1603 } else {
1604 static const GrGLenum attachments[] = { GR_GL_COLOR_ATTACHMENT0 };
egdanield803f272015-03-18 13:01:52 -07001605 GL_CALL(DiscardFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001606 attachments));
1607 }
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001608 break;
1609 }
1610 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001611 renderTarget->flagAsResolved();
1612}
1613
1614
bsalomon861e1032014-12-16 07:33:49 -08001615void GrGLGpu::clearStencil(GrRenderTarget* target) {
bsalomonb0bd4f62014-09-03 07:19:50 -07001616 if (NULL == target) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00001617 return;
1618 }
bsalomonb0bd4f62014-09-03 07:19:50 -07001619 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07001620 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001621
joshualitt77b13072014-10-27 14:51:01 -07001622 this->disableScissor();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001623
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001624 GL_CALL(StencilMask(0xffffffff));
1625 GL_CALL(ClearStencil(0));
1626 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001627 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001628}
1629
bsalomon861e1032014-12-16 07:33:49 -08001630void GrGLGpu::onClearStencilClip(GrRenderTarget* target, const SkIRect& rect, bool insideClip) {
bsalomon49f085d2014-09-05 13:34:00 -07001631 SkASSERT(target);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001632
egdaniel8dc7c3a2015-04-16 11:22:42 -07001633 GrStencilAttachment* sb = target->renderTargetPriv().getStencilAttachment();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001634 // this should only be called internally when we know we have a
1635 // stencil buffer.
bsalomon6bc1b5f2015-02-23 09:06:38 -08001636 SkASSERT(sb);
1637 GrGLint stencilBitCount = sb->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001638#if 0
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001639 SkASSERT(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00001640 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001641#else
1642 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001643 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001644 // turned into draws. Our contract on GrDrawTarget says that
1645 // changing the clip between stencil passes may or may not
1646 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00001647 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001648#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001649 GrGLint value;
1650 if (insideClip) {
1651 value = (1 << (stencilBitCount - 1));
1652 } else {
1653 value = 0;
1654 }
bsalomonb0bd4f62014-09-03 07:19:50 -07001655 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07001656 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001657
bsalomon3e791242014-12-17 13:43:13 -08001658 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08001659 scissorState.set(rect);
joshualitt77b13072014-10-27 14:51:01 -07001660 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001661
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001662 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001663 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001664 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001665 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001666}
1667
bsalomon861e1032014-12-16 07:33:49 -08001668bool GrGLGpu::readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001669 int left, int top,
1670 int width, int height,
1671 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001672 size_t rowBytes) const {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001673 // If this rendertarget is aready TopLeft, we don't need to flip.
1674 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
1675 return false;
1676 }
1677
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001678 // if GL can do the flip then we'll never pay for it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001679 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001680 return false;
1681 }
1682
1683 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00001684 // get the flip for free. Otherwise it costs.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001685 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001686 return true;
1687 }
1688 // If we have to do memcpys to handle rowBytes then y-flip is free
1689 // Note the rowBytes might be tight to the passed in data, but if data
1690 // gets clipped in x to the target the rowBytes will no longer be tight.
1691 if (left >= 0 && (left + width) < renderTarget->width()) {
1692 return 0 == rowBytes ||
1693 GrBytesPerPixel(config) * width == rowBytes;
1694 } else {
1695 return false;
1696 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001697}
1698
bsalomon861e1032014-12-16 07:33:49 -08001699bool GrGLGpu::onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001700 int left, int top,
1701 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001702 GrPixelConfig config,
1703 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001704 size_t rowBytes) {
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001705 // We cannot read pixels into a compressed buffer
1706 if (GrPixelConfigIsCompressed(config)) {
1707 return false;
1708 }
1709
1710 GrGLenum format = 0;
1711 GrGLenum type = 0;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001712 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin();
bsalomon@google.com280e99f2012-01-05 16:17:38 +00001713 if (!this->configToGLFormats(config, false, NULL, &format, &type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001714 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001715 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001716 size_t bpp = GrBytesPerPixel(config);
1717 if (!adjust_pixel_ops_params(target->width(), target->height(), bpp,
1718 &left, &top, &width, &height,
1719 const_cast<const void**>(&buffer),
1720 &rowBytes)) {
1721 return false;
1722 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001723
bsalomon@google.comc6980972011-11-02 19:57:21 +00001724 // resolve the render target if necessary
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001725 GrGLRenderTarget* tgt = static_cast<GrGLRenderTarget*>(target);
egdanield803f272015-03-18 13:01:52 -07001726 switch (tgt->getResolveType()) {
1727 case GrGLRenderTarget::kCantResolve_ResolveType:
1728 return false;
1729 case GrGLRenderTarget::kAutoResolves_ResolveType:
1730 this->flushRenderTarget(static_cast<GrGLRenderTarget*>(target), &SkIRect::EmptyIRect());
1731 break;
1732 case GrGLRenderTarget::kCanResolve_ResolveType:
1733 this->onResolveRenderTarget(tgt);
1734 // we don't track the state of the READ FBO ID.
1735 fStats.incRenderTargetBinds();
1736 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1737 tgt->textureFBOID()));
1738 break;
1739 default:
1740 SkFAIL("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00001741 }
1742
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001743 const GrGLIRect& glvp = tgt->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00001744
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00001745 // the read rect is viewport-relative
1746 GrGLIRect readRect;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001747 readRect.setRelativeTo(glvp, left, top, width, height, target->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001748
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001749 size_t tightRowBytes = bpp * width;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001750 if (0 == rowBytes) {
1751 rowBytes = tightRowBytes;
1752 }
1753 size_t readDstRowBytes = tightRowBytes;
1754 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001755
bsalomon@google.comc6980972011-11-02 19:57:21 +00001756 // determine if GL can read using the passed rowBytes or if we need
1757 // a scratch buffer.
georgeb62508b2014-08-12 18:00:47 -07001758 GrAutoMalloc<32 * sizeof(GrColor)> scratch;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001759 if (rowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001760 if (this->glCaps().packRowLengthSupport()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001761 SkASSERT(!(rowBytes % sizeof(GrColor)));
skia.committer@gmail.com4677acc2013-10-17 07:02:33 +00001762 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001763 static_cast<GrGLint>(rowBytes / sizeof(GrColor))));
bsalomon@google.comc6980972011-11-02 19:57:21 +00001764 readDstRowBytes = rowBytes;
1765 } else {
1766 scratch.reset(tightRowBytes * height);
1767 readDst = scratch.get();
1768 }
1769 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001770 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001771 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
1772 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001773 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
1774 readRect.fWidth, readRect.fHeight,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001775 format, type, readDst));
1776 if (readDstRowBytes != tightRowBytes) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001777 SkASSERT(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00001778 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
1779 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001780 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001781 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001782 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001783 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001784
1785 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00001786 // API presents top-to-bottom. We must preserve the padding contents. Note
1787 // that the above readPixels did not overwrite the padding.
1788 if (readDst == buffer) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001789 SkASSERT(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001790 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001791 scratch.reset(tightRowBytes);
1792 void* tmpRow = scratch.get();
1793 // flip y in-place by rows
1794 const int halfY = height >> 1;
1795 char* top = reinterpret_cast<char*>(buffer);
1796 char* bottom = top + (height - 1) * rowBytes;
1797 for (int y = 0; y < halfY; y++) {
1798 memcpy(tmpRow, top, tightRowBytes);
1799 memcpy(top, bottom, tightRowBytes);
1800 memcpy(bottom, tmpRow, tightRowBytes);
1801 top += rowBytes;
1802 bottom -= rowBytes;
1803 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001804 }
1805 } else {
egdanield803f272015-03-18 13:01:52 -07001806 SkASSERT(readDst != buffer); SkASSERT(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00001807 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001808 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001809 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001810 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001811 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001812 dst += (height-1) * rowBytes;
1813 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001814 for (int y = 0; y < height; y++) {
1815 memcpy(dst, src, tightRowBytes);
1816 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001817 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001818 dst += rowBytes;
1819 } else {
1820 dst -= rowBytes;
1821 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001822 }
1823 }
1824 return true;
1825}
1826
egdanield803f272015-03-18 13:01:52 -07001827void GrGLGpu::flushRenderTarget(GrGLRenderTarget* target, const SkIRect* bound) {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001828
egdanield803f272015-03-18 13:01:52 -07001829 SkASSERT(target);
bsalomon6ba6fa12015-03-04 11:57:37 -08001830
egdanield803f272015-03-18 13:01:52 -07001831 uint32_t rtID = target->getUniqueID();
1832 if (fHWBoundRenderTargetUniqueID != rtID) {
bsalomon1e0bf7e2015-03-14 12:08:51 -07001833 fStats.incRenderTargetBinds();
egdanield803f272015-03-18 13:01:52 -07001834 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, target->renderFBOID()));
1835#ifdef SK_DEBUG
1836 // don't do this check in Chromium -- this is causing
1837 // lots of repeated command buffer flushes when the compositor is
1838 // rendering with Ganesh, which is really slow; even too slow for
1839 // Debug mode.
1840 if (!this->glContext().isChromium()) {
1841 GrGLenum status;
1842 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1843 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
1844 SkDebugf("GrGLGpu::flushRenderTarget glCheckFramebufferStatus %x\n", status);
1845 }
bsalomon160f24c2015-03-17 15:55:42 -07001846 }
egdanield803f272015-03-18 13:01:52 -07001847#endif
1848 fHWBoundRenderTargetUniqueID = rtID;
1849 const GrGLIRect& vp = target->getViewport();
1850 if (fHWViewport != vp) {
1851 vp.pushToGLViewport(this->glInterface());
1852 fHWViewport = vp;
bsalomon160f24c2015-03-17 15:55:42 -07001853 }
bsalomon5cd020f2015-03-17 12:46:56 -07001854 }
egdanield803f272015-03-18 13:01:52 -07001855 if (NULL == bound || !bound->isEmpty()) {
1856 target->flagAsNeedingResolve(bound);
1857 }
1858
1859 GrTexture *texture = target->asTexture();
1860 if (texture) {
1861 texture->texturePriv().dirtyMipMaps(true);
1862 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001863}
1864
twiz@google.com0f31ca72011-03-18 17:38:11 +00001865GrGLenum gPrimitiveType2GLMode[] = {
1866 GR_GL_TRIANGLES,
1867 GR_GL_TRIANGLE_STRIP,
1868 GR_GL_TRIANGLE_FAN,
1869 GR_GL_POINTS,
1870 GR_GL_LINES,
1871 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00001872};
1873
bsalomon@google.comd302f142011-03-03 13:54:13 +00001874#define SWAP_PER_DRAW 0
1875
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001876#if SWAP_PER_DRAW
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001877 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001878 #include <AGL/agl.h>
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001879 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comce7357d2012-06-25 17:49:25 +00001880 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00001881 void SwapBuf() {
1882 DWORD procID = GetCurrentProcessId();
1883 HWND hwnd = GetTopWindow(GetDesktopWindow());
1884 while(hwnd) {
1885 DWORD wndProcID = 0;
1886 GetWindowThreadProcessId(hwnd, &wndProcID);
1887 if(wndProcID == procID) {
1888 SwapBuffers(GetDC(hwnd));
1889 }
1890 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
1891 }
1892 }
1893 #endif
1894#endif
1895
bsalomone64eb572015-05-07 11:35:55 -07001896void GrGLGpu::onDraw(const DrawArgs& args, const GrNonInstancedVertices& vertices) {
cdaltond0a840d2015-03-16 17:19:58 -07001897 if (!this->flushGLState(args)) {
bsalomond95263c2014-12-16 13:05:12 -08001898 return;
1899 }
1900
joshualitt873ad0e2015-01-20 09:08:51 -08001901 size_t indexOffsetInBytes = 0;
bsalomoncb8979d2015-05-05 09:51:38 -07001902 this->setupGeometry(*args.fPrimitiveProcessor, vertices, &indexOffsetInBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +00001903
bsalomoncb8979d2015-05-05 09:51:38 -07001904 SkASSERT((size_t)vertices.primitiveType() < SK_ARRAY_COUNT(gPrimitiveType2GLMode));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00001905
bsalomoncb8979d2015-05-05 09:51:38 -07001906 if (vertices.isIndexed()) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001907 GrGLvoid* indices =
bsalomoncb8979d2015-05-05 09:51:38 -07001908 reinterpret_cast<GrGLvoid*>(indexOffsetInBytes + sizeof(uint16_t) *
1909 vertices.startIndex());
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001910 // info.startVertex() was accounted for by setupGeometry.
bsalomoncb8979d2015-05-05 09:51:38 -07001911 GL_CALL(DrawElements(gPrimitiveType2GLMode[vertices.primitiveType()],
1912 vertices.indexCount(),
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001913 GR_GL_UNSIGNED_SHORT,
1914 indices));
1915 } else {
1916 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account for
1917 // startVertex in the DrawElements case. So we always rely on setupGeometry to have
1918 // accounted for startVertex.
bsalomoncb8979d2015-05-05 09:51:38 -07001919 GL_CALL(DrawArrays(gPrimitiveType2GLMode[vertices.primitiveType()], 0,
1920 vertices.vertexCount()));
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001921 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00001922#if SWAP_PER_DRAW
1923 glFlush();
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001924 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001925 aglSwapBuffers(aglGetCurrentContext());
1926 int set_a_break_pt_here = 9;
1927 aglSwapBuffers(aglGetCurrentContext());
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001928 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001929 SwapBuf();
1930 int set_a_break_pt_here = 9;
1931 SwapBuf();
1932 #endif
1933#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00001934}
1935
bsalomon3e791242014-12-17 13:43:13 -08001936void GrGLGpu::onStencilPath(const GrPath* path, const StencilPathState& state) {
egdaniel080e6732014-12-22 07:35:52 -08001937 this->flushColorWrite(false);
egdaniel8dd688b2015-01-22 10:16:09 -08001938 this->flushDrawFace(GrPipelineBuilder::kBoth_DrawFace);
bsalomon3e791242014-12-17 13:43:13 -08001939
1940 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(state.fRenderTarget);
bsalomon1f78c0a2014-12-17 09:43:13 -08001941 SkISize size = SkISize::Make(rt->width(), rt->height());
bsalomon3e791242014-12-17 13:43:13 -08001942 this->glPathRendering()->setProjectionMatrix(*state.fViewMatrix, size, rt->origin());
1943 this->flushScissor(*state.fScissor, rt->getViewport(), rt->origin());
cdaltond0a840d2015-03-16 17:19:58 -07001944 this->flushHWAAState(rt, state.fUseHWAA);
egdanield803f272015-03-18 13:01:52 -07001945 this->flushRenderTarget(rt, NULL);
1946
bsalomon3e791242014-12-17 13:43:13 -08001947 fPathRendering->stencilPath(path, *state.fStencil);
bsalomond95263c2014-12-16 13:05:12 -08001948}
1949
joshualitt873ad0e2015-01-20 09:08:51 -08001950void GrGLGpu::onDrawPath(const DrawArgs& args, const GrPath* path,
bsalomond95263c2014-12-16 13:05:12 -08001951 const GrStencilSettings& stencil) {
cdaltond0a840d2015-03-16 17:19:58 -07001952 if (!this->flushGLState(args)) {
bsalomond95263c2014-12-16 13:05:12 -08001953 return;
1954 }
1955 fPathRendering->drawPath(path, stencil);
1956}
1957
joshualitt873ad0e2015-01-20 09:08:51 -08001958void GrGLGpu::onDrawPaths(const DrawArgs& args,
bsalomond95263c2014-12-16 13:05:12 -08001959 const GrPathRange* pathRange,
1960 const void* indices,
1961 GrDrawTarget::PathIndexType indexType,
1962 const float transformValues[],
1963 GrDrawTarget::PathTransformType transformType,
1964 int count,
1965 const GrStencilSettings& stencil) {
cdaltond0a840d2015-03-16 17:19:58 -07001966 if (!this->flushGLState(args)) {
bsalomond95263c2014-12-16 13:05:12 -08001967 return;
1968 }
1969 fPathRendering->drawPaths(pathRange, indices, indexType, transformValues,
1970 transformType, count, stencil);
1971}
1972
bsalomon861e1032014-12-16 07:33:49 -08001973void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target) {
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001974 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001975 if (rt->needsResolve()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001976 // Some extensions automatically resolves the texture when it is read.
1977 if (this->glCaps().usesMSAARenderBuffers()) {
egdanield803f272015-03-18 13:01:52 -07001978 SkASSERT(rt->textureFBOID() != rt->renderFBOID());
1979 fStats.incRenderTargetBinds();
1980 fStats.incRenderTargetBinds();
1981 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()));
1982 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()));
1983 // make sure we go through flushRenderTarget() since we've modified
1984 // the bound DRAW FBO ID.
1985 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001986 const GrGLIRect& vp = rt->getViewport();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001987 const SkIRect dirtyRect = rt->getResolveRect();
reed@google.comac10a2d2010-12-22 21:39:39 +00001988
bsalomon@google.com347c3822013-05-01 20:10:01 +00001989 if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001990 // Apple's extension uses the scissor as the blit bounds.
bsalomon3e791242014-12-17 13:43:13 -08001991 GrScissorState scissorState;
robertphillipse85a32d2015-02-10 08:16:55 -08001992 scissorState.set(dirtyRect);
1993 this->flushScissor(scissorState, vp, rt->origin());
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001994 GL_CALL(ResolveMultisampleFramebuffer());
1995 } else {
robertphillipse85a32d2015-02-10 08:16:55 -08001996 GrGLIRect r;
1997 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
1998 dirtyRect.width(), dirtyRect.height(), target->origin());
1999
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002000 int right = r.fLeft + r.fWidth;
2001 int top = r.fBottom + r.fHeight;
derekf8c8f71a2014-09-16 06:24:57 -07002002
2003 // BlitFrameBuffer respects the scissor, so disable it.
joshualitt77b13072014-10-27 14:51:01 -07002004 this->disableScissor();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00002005 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
2006 r.fLeft, r.fBottom, right, top,
2007 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00002008 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002009 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00002010 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00002011 }
2012}
2013
bsalomon@google.com411dad02012-06-05 20:24:20 +00002014namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00002015
bsalomon@google.com411dad02012-06-05 20:24:20 +00002016
2017GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
2018 static const GrGLenum gTable[] = {
2019 GR_GL_KEEP, // kKeep_StencilOp
2020 GR_GL_REPLACE, // kReplace_StencilOp
2021 GR_GL_INCR_WRAP, // kIncWrap_StencilOp
2022 GR_GL_INCR, // kIncClamp_StencilOp
2023 GR_GL_DECR_WRAP, // kDecWrap_StencilOp
2024 GR_GL_DECR, // kDecClamp_StencilOp
2025 GR_GL_ZERO, // kZero_StencilOp
2026 GR_GL_INVERT, // kInvert_StencilOp
2027 };
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00002028 GR_STATIC_ASSERT(SK_ARRAY_COUNT(gTable) == kStencilOpCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002029 GR_STATIC_ASSERT(0 == kKeep_StencilOp);
2030 GR_STATIC_ASSERT(1 == kReplace_StencilOp);
2031 GR_STATIC_ASSERT(2 == kIncWrap_StencilOp);
2032 GR_STATIC_ASSERT(3 == kIncClamp_StencilOp);
2033 GR_STATIC_ASSERT(4 == kDecWrap_StencilOp);
2034 GR_STATIC_ASSERT(5 == kDecClamp_StencilOp);
2035 GR_STATIC_ASSERT(6 == kZero_StencilOp);
2036 GR_STATIC_ASSERT(7 == kInvert_StencilOp);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00002037 SkASSERT((unsigned) op < kStencilOpCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002038 return gTable[op];
2039}
2040
2041void set_gl_stencil(const GrGLInterface* gl,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002042 const GrStencilSettings& settings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002043 GrGLenum glFace,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002044 GrStencilSettings::Face grFace) {
kkinnunenccdaa042014-08-20 01:36:23 -07002045 GrGLenum glFunc = GrToGLStencilFunc(settings.func(grFace));
bsalomon@google.coma3201942012-06-21 19:58:20 +00002046 GrGLenum glFailOp = gr_to_gl_stencil_op(settings.failOp(grFace));
2047 GrGLenum glPassOp = gr_to_gl_stencil_op(settings.passOp(grFace));
2048
2049 GrGLint ref = settings.funcRef(grFace);
2050 GrGLint mask = settings.funcMask(grFace);
2051 GrGLint writeMask = settings.writeMask(grFace);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002052
2053 if (GR_GL_FRONT_AND_BACK == glFace) {
2054 // we call the combined func just in case separate stencil is not
2055 // supported.
2056 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
2057 GR_GL_CALL(gl, StencilMask(writeMask));
2058 GR_GL_CALL(gl, StencilOp(glFailOp, glPassOp, glPassOp));
2059 } else {
2060 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
2061 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
2062 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, glPassOp, glPassOp));
2063 }
2064}
2065}
bsalomon@google.comd302f142011-03-03 13:54:13 +00002066
bsalomon3e791242014-12-17 13:43:13 -08002067void GrGLGpu::flushStencil(const GrStencilSettings& stencilSettings) {
2068 if (fHWStencilSettings != stencilSettings) {
joshualitta58fe352014-10-27 08:39:00 -07002069 if (stencilSettings.isDisabled()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00002070 if (kNo_TriState != fHWStencilTestEnabled) {
2071 GL_CALL(Disable(GR_GL_STENCIL_TEST));
2072 fHWStencilTestEnabled = kNo_TriState;
2073 }
2074 } else {
2075 if (kYes_TriState != fHWStencilTestEnabled) {
2076 GL_CALL(Enable(GR_GL_STENCIL_TEST));
2077 fHWStencilTestEnabled = kYes_TriState;
2078 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00002079 }
joshualitta58fe352014-10-27 08:39:00 -07002080 if (!stencilSettings.isDisabled()) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00002081 if (this->caps()->twoSidedStencilSupport()) {
bsalomon@google.com411dad02012-06-05 20:24:20 +00002082 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002083 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002084 GR_GL_FRONT,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002085 GrStencilSettings::kFront_Face);
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_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002089 GrStencilSettings::kBack_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00002090 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00002091 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002092 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002093 GR_GL_FRONT_AND_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002094 GrStencilSettings::kFront_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00002095 }
2096 }
joshualitta58fe352014-10-27 08:39:00 -07002097 fHWStencilSettings = stencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00002098 }
2099}
2100
cdaltond0a840d2015-03-16 17:19:58 -07002101void GrGLGpu::flushHWAAState(GrRenderTarget* rt, bool useHWAA) {
2102 SkASSERT(!useHWAA || rt->isMultisampled());
bsalomon@google.com202d1392013-03-19 18:58:08 +00002103
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002104 if (kGL_GrGLStandard == this->glStandard()) {
cdaltond0a840d2015-03-16 17:19:58 -07002105 if (useHWAA) {
2106 if (kYes_TriState != fMSAAEnabled) {
2107 GL_CALL(Enable(GR_GL_MULTISAMPLE));
2108 fMSAAEnabled = kYes_TriState;
2109 }
2110 } else {
2111 if (kNo_TriState != fMSAAEnabled) {
2112 GL_CALL(Disable(GR_GL_MULTISAMPLE));
2113 fMSAAEnabled = kNo_TriState;
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00002114 }
2115 }
2116 }
2117}
2118
egdaniel080e6732014-12-22 07:35:52 -08002119void GrGLGpu::flushBlend(const GrXferProcessor::BlendInfo& blendInfo) {
egdanielb414f252014-07-29 13:15:47 -07002120 // Any optimization to disable blending should have already been applied and
cdalton8917d622015-05-06 13:40:21 -07002121 // tweaked the equation to "add" or "subtract", and the coeffs to (1, 0).
bsalomonf7cc8772015-05-11 11:21:14 -07002122
cdalton8917d622015-05-06 13:40:21 -07002123 GrBlendEquation equation = blendInfo.fEquation;
egdanielc2304142014-12-11 13:15:13 -08002124 GrBlendCoeff srcCoeff = blendInfo.fSrcBlend;
2125 GrBlendCoeff dstCoeff = blendInfo.fDstBlend;
cdalton8917d622015-05-06 13:40:21 -07002126 bool blendOff = (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
2127 kOne_GrBlendCoeff == srcCoeff && kZero_GrBlendCoeff == dstCoeff;
egdanielb414f252014-07-29 13:15:47 -07002128 if (blendOff) {
2129 if (kNo_TriState != fHWBlendState.fEnabled) {
2130 GL_CALL(Disable(GR_GL_BLEND));
2131 fHWBlendState.fEnabled = kNo_TriState;
2132 }
cdalton8917d622015-05-06 13:40:21 -07002133 return;
2134 }
2135
2136 if (kYes_TriState != fHWBlendState.fEnabled) {
2137 GL_CALL(Enable(GR_GL_BLEND));
2138 fHWBlendState.fEnabled = kYes_TriState;
2139 }
2140
2141 if (fHWBlendState.fEquation != equation) {
2142 GL_CALL(BlendEquation(gXfermodeEquation2Blend[equation]));
2143 fHWBlendState.fEquation = equation;
2144 }
2145
2146 if (GrBlendEquationIsAdvanced(equation)) {
2147 SkASSERT(this->caps()->advancedBlendEquationSupport());
2148 // Advanced equations have no other blend state.
2149 return;
2150 }
2151
2152 if (fHWBlendState.fSrcCoeff != srcCoeff ||
2153 fHWBlendState.fDstCoeff != dstCoeff) {
2154 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
2155 gXfermodeCoeff2Blend[dstCoeff]));
2156 fHWBlendState.fSrcCoeff = srcCoeff;
2157 fHWBlendState.fDstCoeff = dstCoeff;
2158 }
2159
2160 GrColor blendConst = blendInfo.fBlendConstant;
2161 if ((BlendCoeffReferencesConstant(srcCoeff) ||
2162 BlendCoeffReferencesConstant(dstCoeff)) &&
2163 (!fHWBlendState.fConstColorValid ||
2164 fHWBlendState.fConstColor != blendConst)) {
2165 GrGLfloat c[4];
2166 GrColorToRGBAFloat(blendConst, c);
2167 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
2168 fHWBlendState.fConstColor = blendConst;
2169 fHWBlendState.fConstColorValid = true;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002170 }
2171}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00002172
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00002173static inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00002174 static const GrGLenum gWrapModes[] = {
2175 GR_GL_CLAMP_TO_EDGE,
2176 GR_GL_REPEAT,
2177 GR_GL_MIRRORED_REPEAT
2178 };
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +00002179 GR_STATIC_ASSERT(SkShader::kTileModeCount == SK_ARRAY_COUNT(gWrapModes));
bsalomon@google.comb8670992012-07-25 21:27:09 +00002180 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
2181 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
2182 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
2183 return gWrapModes[tm];
2184}
2185
bsalomon861e1032014-12-16 07:33:49 -08002186void GrGLGpu::bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture) {
bsalomon49f085d2014-09-05 13:34:00 -07002187 SkASSERT(texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00002188
bsalomon@google.comb8670992012-07-25 21:27:09 +00002189 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
2190 // 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 +00002191 // out of the "last != next" check.
bsalomon37dd3312014-11-03 08:47:23 -08002192 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon49f085d2014-09-05 13:34:00 -07002193 if (texRT) {
bsalomon@google.com4c883782012-06-04 19:05:11 +00002194 this->onResolveRenderTarget(texRT);
2195 }
2196
bsalomon1c63bf62014-07-22 13:09:46 -07002197 uint32_t textureID = texture->getUniqueID();
2198 if (fHWBoundTextureUniqueIDs[unitIdx] != textureID) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002199 this->setTextureUnit(unitIdx);
2200 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texture->textureID()));
bsalomon1c63bf62014-07-22 13:09:46 -07002201 fHWBoundTextureUniqueIDs[unitIdx] = textureID;
bsalomon@google.com4c883782012-06-04 19:05:11 +00002202 }
2203
bsalomon@google.com4c883782012-06-04 19:05:11 +00002204 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002205 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002206 bool setAll = timestamp < this->getResetTimestamp();
2207 GrGLTexture::TexParams newTexParams;
2208
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002209 static GrGLenum glMinFilterModes[] = {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002210 GR_GL_NEAREST,
2211 GR_GL_LINEAR,
2212 GR_GL_LINEAR_MIPMAP_LINEAR
2213 };
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002214 static GrGLenum glMagFilterModes[] = {
2215 GR_GL_NEAREST,
2216 GR_GL_LINEAR,
2217 GR_GL_LINEAR
2218 };
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002219 GrTextureParams::FilterMode filterMode = params.filterMode();
bsalomonefd7d452014-10-23 14:17:46 -07002220
2221 if (GrTextureParams::kMipMap_FilterMode == filterMode) {
2222 if (!this->caps()->mipMapSupport() || GrPixelConfigIsCompressed(texture->config())) {
2223 filterMode = GrTextureParams::kBilerp_FilterMode;
2224 }
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002225 }
bsalomonefd7d452014-10-23 14:17:46 -07002226
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002227 newTexParams.fMinFilter = glMinFilterModes[filterMode];
2228 newTexParams.fMagFilter = glMagFilterModes[filterMode];
skia.committer@gmail.comaeefb2a2013-07-27 07:01:06 +00002229
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002230 if (GrTextureParams::kMipMap_FilterMode == filterMode &&
bsalomonefd7d452014-10-23 14:17:46 -07002231 texture->texturePriv().mipMapsAreDirty()) {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002232 GL_CALL(GenerateMipmap(GR_GL_TEXTURE_2D));
bsalomonafbf2d62014-09-30 12:18:44 -07002233 texture->texturePriv().dirtyMipMaps(false);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002234 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00002235
bsalomon@google.comb8670992012-07-25 21:27:09 +00002236 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
2237 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002238 memcpy(newTexParams.fSwizzleRGBA,
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002239 GrGLShaderBuilder::GetTexParamSwizzle(texture->config(), this->glCaps()),
bsalomon@google.com4c883782012-06-04 19:05:11 +00002240 sizeof(newTexParams.fSwizzleRGBA));
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002241 if (setAll || newTexParams.fMagFilter != oldTexParams.fMagFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002242 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002243 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2244 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002245 newTexParams.fMagFilter));
2246 }
2247 if (setAll || newTexParams.fMinFilter != oldTexParams.fMinFilter) {
2248 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002249 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2250 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002251 newTexParams.fMinFilter));
bsalomon@google.com4c883782012-06-04 19:05:11 +00002252 }
2253 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002254 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002255 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2256 GR_GL_TEXTURE_WRAP_S,
2257 newTexParams.fWrapS));
2258 }
2259 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002260 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002261 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2262 GR_GL_TEXTURE_WRAP_T,
2263 newTexParams.fWrapT));
2264 }
2265 if (this->glCaps().textureSwizzleSupport() &&
2266 (setAll || memcmp(newTexParams.fSwizzleRGBA,
2267 oldTexParams.fSwizzleRGBA,
2268 sizeof(newTexParams.fSwizzleRGBA)))) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002269 this->setTextureUnit(unitIdx);
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002270 if (this->glStandard() == kGLES_GrGLStandard) {
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00002271 // ES3 added swizzle support but not GL_TEXTURE_SWIZZLE_RGBA.
2272 const GrGLenum* swizzle = newTexParams.fSwizzleRGBA;
2273 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_R, swizzle[0]));
2274 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_G, swizzle[1]));
2275 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_B, swizzle[2]));
2276 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_A, swizzle[3]));
2277 } else {
2278 GR_STATIC_ASSERT(sizeof(newTexParams.fSwizzleRGBA[0]) == sizeof(GrGLint));
2279 const GrGLint* swizzle = reinterpret_cast<const GrGLint*>(newTexParams.fSwizzleRGBA);
2280 GL_CALL(TexParameteriv(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_RGBA, swizzle));
2281 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00002282 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002283 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002284}
2285
bsalomon3e791242014-12-17 13:43:13 -08002286void GrGLGpu::flushDither(bool dither) {
2287 if (dither) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002288 if (kYes_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002289 GL_CALL(Enable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002290 fHWDitherEnabled = kYes_TriState;
2291 }
2292 } else {
2293 if (kNo_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002294 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002295 fHWDitherEnabled = kNo_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +00002296 }
2297 }
bsalomon3e791242014-12-17 13:43:13 -08002298}
reed@google.comac10a2d2010-12-22 21:39:39 +00002299
egdaniel080e6732014-12-22 07:35:52 -08002300void GrGLGpu::flushColorWrite(bool writeColor) {
2301 if (!writeColor) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002302 if (kNo_TriState != fHWWriteToColor) {
2303 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
2304 GR_GL_FALSE, GR_GL_FALSE));
2305 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002306 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002307 } else {
2308 if (kYes_TriState != fHWWriteToColor) {
2309 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
2310 fHWWriteToColor = kYes_TriState;
2311 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00002312 }
bsalomon3e791242014-12-17 13:43:13 -08002313}
bsalomon@google.comd302f142011-03-03 13:54:13 +00002314
egdaniel8dd688b2015-01-22 10:16:09 -08002315void GrGLGpu::flushDrawFace(GrPipelineBuilder::DrawFace face) {
bsalomon3e791242014-12-17 13:43:13 -08002316 if (fHWDrawFace != face) {
2317 switch (face) {
egdaniel8dd688b2015-01-22 10:16:09 -08002318 case GrPipelineBuilder::kCCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002319 GL_CALL(Enable(GR_GL_CULL_FACE));
2320 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002321 break;
egdaniel8dd688b2015-01-22 10:16:09 -08002322 case GrPipelineBuilder::kCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002323 GL_CALL(Enable(GR_GL_CULL_FACE));
2324 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002325 break;
egdaniel8dd688b2015-01-22 10:16:09 -08002326 case GrPipelineBuilder::kBoth_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002327 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002328 break;
2329 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00002330 SkFAIL("Unknown draw face.");
bsalomon@google.comd302f142011-03-03 13:54:13 +00002331 }
bsalomon3e791242014-12-17 13:43:13 -08002332 fHWDrawFace = face;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002333 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002334}
2335
bsalomon861e1032014-12-16 07:33:49 -08002336bool GrGLGpu::configToGLFormats(GrPixelConfig config,
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002337 bool getSizedInternalFormat,
2338 GrGLenum* internalFormat,
2339 GrGLenum* externalFormat,
2340 GrGLenum* externalType) {
2341 GrGLenum dontCare;
2342 if (NULL == internalFormat) {
2343 internalFormat = &dontCare;
2344 }
2345 if (NULL == externalFormat) {
2346 externalFormat = &dontCare;
2347 }
2348 if (NULL == externalType) {
2349 externalType = &dontCare;
2350 }
2351
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002352 if(!this->glCaps().isConfigTexturable(config)) {
2353 return false;
2354 }
2355
reed@google.comac10a2d2010-12-22 21:39:39 +00002356 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00002357 case kRGBA_8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +00002358 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002359 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002360 if (getSizedInternalFormat) {
2361 *internalFormat = GR_GL_RGBA8;
2362 } else {
2363 *internalFormat = GR_GL_RGBA;
2364 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002365 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002366 break;
bsalomon@google.com0342a852012-08-20 19:22:38 +00002367 case kBGRA_8888_GrPixelConfig:
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002368 if (this->glCaps().bgraIsInternalFormat()) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002369 if (getSizedInternalFormat) {
2370 *internalFormat = GR_GL_BGRA8;
2371 } else {
2372 *internalFormat = GR_GL_BGRA;
2373 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002374 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002375 if (getSizedInternalFormat) {
2376 *internalFormat = GR_GL_RGBA8;
2377 } else {
2378 *internalFormat = GR_GL_RGBA;
2379 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002380 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002381 *externalFormat = GR_GL_BGRA;
bsalomon@google.com6f379512011-11-16 20:36:03 +00002382 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002383 break;
jvanverthfa1e8a72014-12-22 08:31:49 -08002384 case kSRGBA_8888_GrPixelConfig:
2385 *internalFormat = GR_GL_SRGB_ALPHA;
2386 *externalFormat = GR_GL_SRGB_ALPHA;
2387 if (getSizedInternalFormat) {
2388 *internalFormat = GR_GL_SRGB8_ALPHA8;
2389 } else {
2390 *internalFormat = GR_GL_SRGB_ALPHA;
2391 }
2392 *externalType = GR_GL_UNSIGNED_BYTE;
2393 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002394 case kRGB_565_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002395 *internalFormat = GR_GL_RGB;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002396 *externalFormat = GR_GL_RGB;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002397 if (getSizedInternalFormat) {
jvanverth3f801cb2014-12-16 09:49:38 -08002398 if (!this->glCaps().ES2CompatibilitySupport()) {
2399 *internalFormat = GR_GL_RGB5;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002400 } else {
2401 *internalFormat = GR_GL_RGB565;
2402 }
2403 } else {
2404 *internalFormat = GR_GL_RGB;
2405 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002406 *externalType = GR_GL_UNSIGNED_SHORT_5_6_5;
reed@google.comac10a2d2010-12-22 21:39:39 +00002407 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002408 case kRGBA_4444_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002409 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002410 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002411 if (getSizedInternalFormat) {
2412 *internalFormat = GR_GL_RGBA4;
2413 } else {
2414 *internalFormat = GR_GL_RGBA;
2415 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002416 *externalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
reed@google.comac10a2d2010-12-22 21:39:39 +00002417 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002418 case kIndex_8_GrPixelConfig:
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002419 // no sized/unsized internal format distinction here
2420 *internalFormat = GR_GL_PALETTE8_RGBA8;
reed@google.comac10a2d2010-12-22 21:39:39 +00002421 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002422 case kAlpha_8_GrPixelConfig:
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002423 if (this->glCaps().textureRedSupport()) {
2424 *internalFormat = GR_GL_RED;
2425 *externalFormat = GR_GL_RED;
2426 if (getSizedInternalFormat) {
2427 *internalFormat = GR_GL_R8;
2428 } else {
2429 *internalFormat = GR_GL_RED;
2430 }
2431 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002432 } else {
2433 *internalFormat = GR_GL_ALPHA;
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002434 *externalFormat = GR_GL_ALPHA;
2435 if (getSizedInternalFormat) {
2436 *internalFormat = GR_GL_ALPHA8;
2437 } else {
2438 *internalFormat = GR_GL_ALPHA;
2439 }
2440 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002441 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002442 break;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002443 case kETC1_GrPixelConfig:
egdanield588c012015-03-27 12:22:10 -07002444 *internalFormat = GR_GL_COMPRESSED_ETC1_RGB8;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002445 break;
2446 case kLATC_GrPixelConfig:
2447 switch(this->glCaps().latcAlias()) {
2448 case GrGLCaps::kLATC_LATCAlias:
2449 *internalFormat = GR_GL_COMPRESSED_LUMINANCE_LATC1;
2450 break;
2451 case GrGLCaps::kRGTC_LATCAlias:
2452 *internalFormat = GR_GL_COMPRESSED_RED_RGTC1;
2453 break;
2454 case GrGLCaps::k3DC_LATCAlias:
2455 *internalFormat = GR_GL_COMPRESSED_3DC_X;
2456 break;
2457 }
2458 break;
krajcevski238b4562014-06-30 09:09:22 -07002459 case kR11_EAC_GrPixelConfig:
egdanield588c012015-03-27 12:22:10 -07002460 *internalFormat = GR_GL_COMPRESSED_R11_EAC;
krajcevski238b4562014-06-30 09:09:22 -07002461 break;
krajcevski7ef21622014-07-16 15:21:13 -07002462
2463 case kASTC_12x12_GrPixelConfig:
egdanield588c012015-03-27 12:22:10 -07002464 *internalFormat = GR_GL_COMPRESSED_RGBA_ASTC_12x12_KHR;
krajcevski7ef21622014-07-16 15:21:13 -07002465 break;
2466
joshualittee5da552014-07-16 13:32:56 -07002467 case kRGBA_float_GrPixelConfig:
2468 *internalFormat = GR_GL_RGBA32F;
2469 *externalFormat = GR_GL_RGBA;
2470 *externalType = GR_GL_FLOAT;
2471 break;
krajcevski7ef21622014-07-16 15:21:13 -07002472
jvanverth28f9c602014-12-05 13:06:35 -08002473 case kAlpha_half_GrPixelConfig:
jvanverth1334c212014-12-18 05:44:55 -08002474 if (this->glCaps().textureRedSupport()) {
2475 if (getSizedInternalFormat) {
2476 *internalFormat = GR_GL_R16F;
2477 } else {
2478 *internalFormat = GR_GL_RED;
2479 }
jvanverth28f9c602014-12-05 13:06:35 -08002480 *externalFormat = GR_GL_RED;
jvanverth1334c212014-12-18 05:44:55 -08002481 } else {
2482 if (getSizedInternalFormat) {
2483 *internalFormat = GR_GL_ALPHA16F;
2484 } else {
2485 *internalFormat = GR_GL_ALPHA;
2486 }
2487 *externalFormat = GR_GL_ALPHA;
2488 }
2489 if (kGL_GrGLStandard == this->glStandard() || this->glVersion() >= GR_GL_VER(3, 0)) {
jvanvertha60b2ea2014-12-12 05:58:06 -08002490 *externalType = GR_GL_HALF_FLOAT;
jvanverth28f9c602014-12-05 13:06:35 -08002491 } else {
jvanverth1334c212014-12-18 05:44:55 -08002492 *externalType = GR_GL_HALF_FLOAT_OES;
jvanverth28f9c602014-12-05 13:06:35 -08002493 }
2494 break;
2495
reed@google.comac10a2d2010-12-22 21:39:39 +00002496 default:
2497 return false;
2498 }
2499 return true;
2500}
2501
bsalomon861e1032014-12-16 07:33:49 -08002502void GrGLGpu::setTextureUnit(int unit) {
bsalomon1c63bf62014-07-22 13:09:46 -07002503 SkASSERT(unit >= 0 && unit < fHWBoundTextureUniqueIDs.count());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002504 if (unit != fHWActiveTextureUnitIdx) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002505 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00002506 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002507 }
2508}
bsalomon@google.com316f99232011-01-13 21:28:12 +00002509
bsalomon861e1032014-12-16 07:33:49 -08002510void GrGLGpu::setScratchTextureUnit() {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002511 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
bsalomon1c63bf62014-07-22 13:09:46 -07002512 int lastUnitIdx = fHWBoundTextureUniqueIDs.count() - 1;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002513 if (lastUnitIdx != fHWActiveTextureUnitIdx) {
2514 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx));
2515 fHWActiveTextureUnitIdx = lastUnitIdx;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002516 }
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002517 // clear out the this field so that if a program does use this unit it will rebind the correct
2518 // texture.
bsalomon1c63bf62014-07-22 13:09:46 -07002519 fHWBoundTextureUniqueIDs[lastUnitIdx] = SK_InvalidUniqueID;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002520}
2521
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002522namespace {
2523// Determines whether glBlitFramebuffer could be used between src and dst.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002524inline bool can_blit_framebuffer(const GrSurface* dst,
2525 const GrSurface* src,
egdaniel0f5f9672015-02-03 11:10:51 -08002526 const GrGLGpu* gpu) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002527 if (gpu->glCaps().isConfigRenderable(dst->config(), dst->desc().fSampleCnt > 0) &&
2528 gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon@google.com347c3822013-05-01 20:10:01 +00002529 gpu->glCaps().usesMSAARenderBuffers()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00002530 // ES3 doesn't allow framebuffer blits when the src has MSAA and the configs don't match
2531 // or the rects are not the same (not just the same size but have the same edges).
2532 if (GrGLCaps::kES_3_0_MSFBOType == gpu->glCaps().msFBOType() &&
2533 (src->desc().fSampleCnt > 0 || src->config() != dst->config())) {
2534 return false;
2535 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002536 return true;
2537 } else {
2538 return false;
2539 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002540}
bsalomon@google.comeb851172013-04-15 13:51:00 +00002541
2542inline bool can_copy_texsubimage(const GrSurface* dst,
2543 const GrSurface* src,
egdaniel0f5f9672015-02-03 11:10:51 -08002544 const GrGLGpu* gpu) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002545 // Table 3.9 of the ES2 spec indicates the supported formats with CopyTexSubImage
2546 // and BGRA isn't in the spec. There doesn't appear to be any extension that adds it. Perhaps
2547 // many drivers would allow it to work, but ANGLE does not.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002548 if (kGLES_GrGLStandard == gpu->glStandard() && gpu->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00002549 (kBGRA_8888_GrPixelConfig == dst->config() || kBGRA_8888_GrPixelConfig == src->config())) {
2550 return false;
2551 }
2552 const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget());
2553 // If dst is multisampled (and uses an extension where there is a separate MSAA renderbuffer)
2554 // then we don't want to copy to the texture but to the MSAA buffer.
egdanield803f272015-03-18 13:01:52 -07002555 if (dstRT && dstRT->renderFBOID() != dstRT->textureFBOID()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002556 return false;
2557 }
bsalomon@google.coma2719852013-04-17 14:25:27 +00002558 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2559 // If the src is multisampled (and uses an extension where there is a separate MSAA
2560 // renderbuffer) then it is an invalid operation to call CopyTexSubImage
egdanield803f272015-03-18 13:01:52 -07002561 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomon@google.coma2719852013-04-17 14:25:27 +00002562 return false;
2563 }
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002564 if (gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon49f085d2014-09-05 13:34:00 -07002565 dst->asTexture() &&
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002566 dst->origin() == src->origin() &&
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002567 !GrPixelConfigIsCompressed(src->config())) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002568 return true;
2569 } else {
2570 return false;
2571 }
2572}
2573
robertphillips754f4e92014-09-18 13:52:08 -07002574}
2575
bsalomon@google.comeb851172013-04-15 13:51:00 +00002576// If a temporary FBO was created, its non-zero ID is returned. The viewport that the copy rect is
2577// relative to is output.
egdanield803f272015-03-18 13:01:52 -07002578GrGLuint GrGLGpu::bindSurfaceAsFBO(GrSurface* surface, GrGLenum fboTarget, GrGLIRect* viewport,
2579 TempFBOTarget tempFBOTarget) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002580 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
bsalomon@google.comeb851172013-04-15 13:51:00 +00002581 if (NULL == rt) {
bsalomon49f085d2014-09-05 13:34:00 -07002582 SkASSERT(surface->asTexture());
bsalomon@google.comeb851172013-04-15 13:51:00 +00002583 GrGLuint texID = static_cast<GrGLTexture*>(surface->asTexture())->textureID();
egdanield803f272015-03-18 13:01:52 -07002584 GrGLuint* tempFBOID;
2585 tempFBOID = kSrc_TempFBOTarget == tempFBOTarget ? &fTempSrcFBOID : &fTempDstFBOID;
egdaniel0f5f9672015-02-03 11:10:51 -08002586
egdanield803f272015-03-18 13:01:52 -07002587 if (0 == *tempFBOID) {
2588 GR_GL_CALL(this->glInterface(), GenFramebuffers(1, tempFBOID));
egdaniel0f5f9672015-02-03 11:10:51 -08002589 }
2590
egdanield803f272015-03-18 13:01:52 -07002591 fStats.incRenderTargetBinds();
2592 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, *tempFBOID));
2593 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
robertphillips754f4e92014-09-18 13:52:08 -07002594 GR_GL_COLOR_ATTACHMENT0,
2595 GR_GL_TEXTURE_2D,
2596 texID,
2597 0));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002598 viewport->fLeft = 0;
2599 viewport->fBottom = 0;
2600 viewport->fWidth = surface->width();
2601 viewport->fHeight = surface->height();
egdanield803f272015-03-18 13:01:52 -07002602 return *tempFBOID;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002603 } else {
egdanield803f272015-03-18 13:01:52 -07002604 GrGLuint tempFBOID = 0;
2605 fStats.incRenderTargetBinds();
2606 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, rt->renderFBOID()));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002607 *viewport = rt->getViewport();
egdanield803f272015-03-18 13:01:52 -07002608 return tempFBOID;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002609 }
egdaniel0f5f9672015-02-03 11:10:51 -08002610}
2611
egdanield803f272015-03-18 13:01:52 -07002612void GrGLGpu::unbindTextureFromFBO(GrGLenum fboTarget) {
2613 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
egdaniel0f5f9672015-02-03 11:10:51 -08002614 GR_GL_COLOR_ATTACHMENT0,
2615 GR_GL_TEXTURE_2D,
2616 0,
2617 0));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002618}
2619
bsalomon861e1032014-12-16 07:33:49 -08002620bool GrGLGpu::initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) {
mtklein404b3b22015-05-18 09:29:10 -07002621 // In here we look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
bsalomonf90a02b2014-11-26 12:28:00 -08002622 // possible and we return false to fallback to creating a render target dst for render-to-
2623 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2624 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2625
bsalomon@google.comeb851172013-04-15 13:51:00 +00002626 // Check for format issues with glCopyTexSubImage2D
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002627 if (kGLES_GrGLStandard == this->glStandard() && this->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00002628 kBGRA_8888_GrPixelConfig == src->config()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002629 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2630 // then we set up for that, otherwise fail.
2631 if (this->caps()->isConfigRenderable(kBGRA_8888_GrPixelConfig, false)) {
2632 desc->fOrigin = kDefault_GrSurfaceOrigin;
bsalomon6bc1b5f2015-02-23 09:06:38 -08002633 desc->fFlags = kRenderTarget_GrSurfaceFlag;
bsalomonf90a02b2014-11-26 12:28:00 -08002634 desc->fConfig = kBGRA_8888_GrPixelConfig;
2635 return true;
2636 }
2637 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002638 } else if (NULL == src->asRenderTarget()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002639 // CopyTexSubImage2D or fbo blit would require creating a temp fbo for the src.
2640 return false;
bsalomon@google.coma2719852013-04-17 14:25:27 +00002641 }
2642
2643 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
egdanield803f272015-03-18 13:01:52 -07002644 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002645 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO blit or
2646 // fail.
2647 if (this->caps()->isConfigRenderable(src->config(), false)) {
2648 desc->fOrigin = kDefault_GrSurfaceOrigin;
bsalomon6bc1b5f2015-02-23 09:06:38 -08002649 desc->fFlags = kRenderTarget_GrSurfaceFlag;
bsalomonf90a02b2014-11-26 12:28:00 -08002650 desc->fConfig = src->config();
2651 return true;
2652 }
2653 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002654 }
bsalomonf90a02b2014-11-26 12:28:00 -08002655
2656 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2657 desc->fConfig = src->config();
2658 desc->fOrigin = src->origin();
2659 desc->fFlags = kNone_GrSurfaceFlags;
2660 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002661}
2662
bsalomon861e1032014-12-16 07:33:49 -08002663bool GrGLGpu::copySurface(GrSurface* dst,
joshualitta7024152014-11-03 14:16:35 -08002664 GrSurface* src,
2665 const SkIRect& srcRect,
2666 const SkIPoint& dstPoint) {
mtklein404b3b22015-05-18 09:29:10 -07002667 bool copied = false;
bsalomon5df6fee2015-05-18 06:26:15 -07002668 if (can_copy_texsubimage(dst, src, this)) {
mtklein404b3b22015-05-18 09:29:10 -07002669 GrGLuint srcFBO;
2670 GrGLIRect srcVP;
2671 srcFBO = this->bindSurfaceAsFBO(src, GR_GL_FRAMEBUFFER, &srcVP, kSrc_TempFBOTarget);
2672 GrGLTexture* dstTex = static_cast<GrGLTexture*>(dst->asTexture());
2673 SkASSERT(dstTex);
2674 // We modified the bound FBO
2675 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
2676 GrGLIRect srcGLRect;
2677 srcGLRect.setRelativeTo(srcVP,
2678 srcRect.fLeft,
2679 srcRect.fTop,
2680 srcRect.width(),
2681 srcRect.height(),
2682 src->origin());
bsalomon5df6fee2015-05-18 06:26:15 -07002683
mtklein404b3b22015-05-18 09:29:10 -07002684 this->setScratchTextureUnit();
2685 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, dstTex->textureID()));
2686 GrGLint dstY;
2687 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
2688 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
2689 } else {
2690 dstY = dstPoint.fY;
2691 }
2692 GL_CALL(CopyTexSubImage2D(GR_GL_TEXTURE_2D, 0,
2693 dstPoint.fX, dstY,
2694 srcGLRect.fLeft, srcGLRect.fBottom,
2695 srcGLRect.fWidth, srcGLRect.fHeight));
2696 copied = true;
2697 if (srcFBO) {
2698 this->unbindTextureFromFBO(GR_GL_FRAMEBUFFER);
2699 }
2700 } else if (can_blit_framebuffer(dst, src, this)) {
2701 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2702 srcRect.width(), srcRect.height());
2703 bool selfOverlap = false;
2704 if (dst == src) {
2705 selfOverlap = SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect);
2706 }
bsalomon5df6fee2015-05-18 06:26:15 -07002707
mtklein404b3b22015-05-18 09:29:10 -07002708 if (!selfOverlap) {
2709 GrGLuint dstFBO;
2710 GrGLuint srcFBO;
2711 GrGLIRect dstVP;
2712 GrGLIRect srcVP;
2713 dstFBO = this->bindSurfaceAsFBO(dst, GR_GL_DRAW_FRAMEBUFFER, &dstVP,
2714 kDst_TempFBOTarget);
2715 srcFBO = this->bindSurfaceAsFBO(src, GR_GL_READ_FRAMEBUFFER, &srcVP,
2716 kSrc_TempFBOTarget);
2717 // We modified the bound FBO
2718 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
2719 GrGLIRect srcGLRect;
2720 GrGLIRect dstGLRect;
2721 srcGLRect.setRelativeTo(srcVP,
2722 srcRect.fLeft,
2723 srcRect.fTop,
2724 srcRect.width(),
2725 srcRect.height(),
2726 src->origin());
2727 dstGLRect.setRelativeTo(dstVP,
2728 dstRect.fLeft,
2729 dstRect.fTop,
2730 dstRect.width(),
2731 dstRect.height(),
2732 dst->origin());
bsalomon5df6fee2015-05-18 06:26:15 -07002733
mtklein404b3b22015-05-18 09:29:10 -07002734 // BlitFrameBuffer respects the scissor, so disable it.
2735 this->disableScissor();
bsalomon5df6fee2015-05-18 06:26:15 -07002736
mtklein404b3b22015-05-18 09:29:10 -07002737 GrGLint srcY0;
2738 GrGLint srcY1;
2739 // Does the blit need to y-mirror or not?
2740 if (src->origin() == dst->origin()) {
2741 srcY0 = srcGLRect.fBottom;
2742 srcY1 = srcGLRect.fBottom + srcGLRect.fHeight;
2743 } else {
2744 srcY0 = srcGLRect.fBottom + srcGLRect.fHeight;
2745 srcY1 = srcGLRect.fBottom;
2746 }
2747 GL_CALL(BlitFramebuffer(srcGLRect.fLeft,
2748 srcY0,
2749 srcGLRect.fLeft + srcGLRect.fWidth,
2750 srcY1,
2751 dstGLRect.fLeft,
2752 dstGLRect.fBottom,
2753 dstGLRect.fLeft + dstGLRect.fWidth,
2754 dstGLRect.fBottom + dstGLRect.fHeight,
2755 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
2756 if (dstFBO) {
2757 this->unbindTextureFromFBO(GR_GL_DRAW_FRAMEBUFFER);
2758 }
2759 if (srcFBO) {
2760 this->unbindTextureFromFBO(GR_GL_READ_FRAMEBUFFER);
2761 }
2762 copied = true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002763 }
2764 }
mtklein404b3b22015-05-18 09:29:10 -07002765 return copied;
2766}
bsalomon5df6fee2015-05-18 06:26:15 -07002767
mtklein404b3b22015-05-18 09:29:10 -07002768bool GrGLGpu::canCopySurface(const GrSurface* dst,
2769 const GrSurface* src,
2770 const SkIRect& srcRect,
2771 const SkIPoint& dstPoint) {
2772 // This mirrors the logic in onCopySurface.
2773 if (can_copy_texsubimage(dst, src, this)) {
2774 return true;
bsalomon5df6fee2015-05-18 06:26:15 -07002775 }
mtklein404b3b22015-05-18 09:29:10 -07002776 if (can_blit_framebuffer(dst, src, this)) {
2777 if (dst == src) {
2778 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2779 srcRect.width(), srcRect.height());
2780 if(!SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) {
2781 return true;
2782 }
2783 } else {
2784 return true;
2785 }
bsalomon5df6fee2015-05-18 06:26:15 -07002786 }
mtklein404b3b22015-05-18 09:29:10 -07002787 return false;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002788}
2789
cdalton231c5fd2015-05-13 12:35:36 -07002790void GrGLGpu::xferBarrier(GrRenderTarget* rt, GrXferBarrierType type) {
cdalton9954bc32015-04-29 14:17:00 -07002791 switch (type) {
cdalton231c5fd2015-05-13 12:35:36 -07002792 case kTexture_GrXferBarrierType: {
2793 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt);
2794 if (glrt->textureFBOID() != glrt->renderFBOID()) {
2795 // The render target uses separate storage so no need for glTextureBarrier.
2796 // FIXME: The render target will resolve automatically when its texture is bound,
2797 // but we could resolve only the bounds that will be read if we do it here instead.
2798 return;
2799 }
cdalton9954bc32015-04-29 14:17:00 -07002800 SkASSERT(this->caps()->textureBarrierSupport());
2801 GL_CALL(TextureBarrier());
2802 return;
cdalton231c5fd2015-05-13 12:35:36 -07002803 }
cdalton8917d622015-05-06 13:40:21 -07002804 case kBlend_GrXferBarrierType:
2805 SkASSERT(GrDrawTargetCaps::kAdvanced_BlendEquationSupport ==
2806 this->caps()->blendEquationSupport());
2807 GL_CALL(BlendBarrier());
2808 return;
cdalton9954bc32015-04-29 14:17:00 -07002809 }
2810}
2811
bsalomon861e1032014-12-16 07:33:49 -08002812void GrGLGpu::didAddGpuTraceMarker() {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002813 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00002814 const GrTraceMarkerSet& markerArray = this->getActiveTraceMarkers();
egdanield78a1682014-07-09 10:41:26 -07002815 SkString markerString = markerArray.toStringLast();
egdanielbdad9c32015-03-05 12:19:17 -08002816#if GR_FORCE_GPU_TRACE_DEBUGGING
2817 SkDebugf("%s\n", markerString.c_str());
2818#else
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00002819 GL_CALL(PushGroupMarker(0, markerString.c_str()));
egdanielbdad9c32015-03-05 12:19:17 -08002820#endif
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002821 }
2822}
2823
bsalomon861e1032014-12-16 07:33:49 -08002824void GrGLGpu::didRemoveGpuTraceMarker() {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002825 if (this->caps()->gpuTracingSupport()) {
egdanielbdad9c32015-03-05 12:19:17 -08002826#if GR_FORCE_GPU_TRACE_DEBUGGING
2827 SkDebugf("Pop trace marker.\n");
2828#else
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00002829 GL_CALL(PopGroupMarker());
egdanielbdad9c32015-03-05 12:19:17 -08002830#endif
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002831 }
2832}
joshualitt79f8fae2014-10-28 17:59:26 -07002833
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002834///////////////////////////////////////////////////////////////////////////////
mtklein404b3b22015-05-18 09:29:10 -07002835
bsalomon861e1032014-12-16 07:33:49 -08002836GrGLAttribArrayState* GrGLGpu::HWGeometryState::bindArrayAndBuffersToDraw(
2837 GrGLGpu* gpu,
bsalomon@google.com6918d482013-03-07 19:09:11 +00002838 const GrGLVertexBuffer* vbuffer,
2839 const GrGLIndexBuffer* ibuffer) {
bsalomon49f085d2014-09-05 13:34:00 -07002840 SkASSERT(vbuffer);
robertphillips@google.com4f65a272013-03-26 19:40:46 +00002841 GrGLAttribArrayState* attribState;
2842
mtklein404b3b22015-05-18 09:29:10 -07002843 // We use a vertex array if we're on a core profile and the verts are in a VBO.
2844 if (gpu->glCaps().isCoreProfile() && !vbuffer->isCPUBacked()) {
bsalomon8780bc62015-05-13 09:56:37 -07002845 if (!fVBOVertexArray) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00002846 GrGLuint arrayID;
2847 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID));
2848 int attrCount = gpu->glCaps().maxVertexAttributes();
bsalomon8780bc62015-05-13 09:56:37 -07002849 fVBOVertexArray = SkNEW_ARGS(GrGLVertexArray, (arrayID, attrCount));
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002850 }
mtklein404b3b22015-05-18 09:29:10 -07002851 attribState = fVBOVertexArray->bindWithIndexBuffer(gpu, ibuffer);
bsalomon@google.com6918d482013-03-07 19:09:11 +00002852 } else {
mtklein404b3b22015-05-18 09:29:10 -07002853 if (ibuffer) {
2854 this->setIndexBufferIDOnDefaultVertexArray(gpu, ibuffer->bufferID());
bsalomon@google.com6918d482013-03-07 19:09:11 +00002855 } else {
2856 this->setVertexArrayID(gpu, 0);
2857 }
2858 int attrCount = gpu->glCaps().maxVertexAttributes();
2859 if (fDefaultVertexArrayAttribState.count() != attrCount) {
2860 fDefaultVertexArrayAttribState.resize(attrCount);
2861 }
2862 attribState = &fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002863 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002864 return attribState;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002865}