blob: b28c32e68c7a936144a638e7d58dd5d6d1dae9bb [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"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000010#include "GrGLStencilBuffer.h"
bsalomon37dd3312014-11-03 08:47:23 -080011#include "GrGLTextureRenderTarget.h"
bsalomon10e23ca2014-11-25 05:52:06 -080012#include "GrGpuResourceCacheAccess.h"
egdaniel170f90b2014-09-16 12:54:40 -070013#include "GrOptDrawState.h"
bsalomonafbf2d62014-09-30 12:18:44 -070014#include "GrSurfacePriv.h"
bsalomon@google.coma3201942012-06-21 19:58:20 +000015#include "GrTemplates.h"
bsalomonafbf2d62014-09-30 12:18:44 -070016#include "GrTexturePriv.h"
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +000017#include "GrTypes.h"
commit-bot@chromium.org32184d82013-10-09 15:14:18 +000018#include "SkStrokeRec.h"
bsalomon@google.com3582bf92011-06-30 21:32:31 +000019#include "SkTemplates.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000020
bsalomon@google.com0b77d682011-08-19 13:28:54 +000021#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +000022#define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->glInterface(), RET, X)
bsalomon@google.com0b77d682011-08-19 13:28:54 +000023
reed@google.comac10a2d2010-12-22 21:39:39 +000024#define SKIP_CACHE_CHECK true
25
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000026#if GR_GL_CHECK_ALLOC_WITH_GET_ERROR
27 #define CLEAR_ERROR_BEFORE_ALLOC(iface) GrGLClearErr(iface)
28 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL_NOERRCHECK(iface, call)
29 #define CHECK_ALLOC_ERROR(iface) GR_GL_GET_ERROR(iface)
rmistry@google.comfbfcd562012-08-23 18:09:54 +000030#else
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000031 #define CLEAR_ERROR_BEFORE_ALLOC(iface)
32 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL(iface, call)
33 #define CHECK_ALLOC_ERROR(iface) GR_GL_NO_ERROR
34#endif
35
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +000036
37///////////////////////////////////////////////////////////////////////////////
38
cdaltonb85a0aa2014-07-21 15:32:44 -070039
twiz@google.com0f31ca72011-03-18 17:38:11 +000040static const GrGLenum gXfermodeCoeff2Blend[] = {
41 GR_GL_ZERO,
42 GR_GL_ONE,
43 GR_GL_SRC_COLOR,
44 GR_GL_ONE_MINUS_SRC_COLOR,
45 GR_GL_DST_COLOR,
46 GR_GL_ONE_MINUS_DST_COLOR,
47 GR_GL_SRC_ALPHA,
48 GR_GL_ONE_MINUS_SRC_ALPHA,
49 GR_GL_DST_ALPHA,
50 GR_GL_ONE_MINUS_DST_ALPHA,
51 GR_GL_CONSTANT_COLOR,
52 GR_GL_ONE_MINUS_CONSTANT_COLOR,
53 GR_GL_CONSTANT_ALPHA,
54 GR_GL_ONE_MINUS_CONSTANT_ALPHA,
bsalomon@google.com271cffc2011-05-20 14:13:56 +000055
56 // extended blend coeffs
57 GR_GL_SRC1_COLOR,
58 GR_GL_ONE_MINUS_SRC1_COLOR,
59 GR_GL_SRC1_ALPHA,
60 GR_GL_ONE_MINUS_SRC1_ALPHA,
reed@google.comac10a2d2010-12-22 21:39:39 +000061};
62
bsalomon861e1032014-12-16 07:33:49 -080063bool GrGLGpu::BlendCoeffReferencesConstant(GrBlendCoeff coeff) {
bsalomon@google.com080773c2011-03-15 19:09:25 +000064 static const bool gCoeffReferencesBlendConst[] = {
65 false,
66 false,
67 false,
68 false,
69 false,
70 false,
71 false,
72 false,
73 false,
74 false,
75 true,
76 true,
77 true,
78 true,
bsalomon@google.com271cffc2011-05-20 14:13:56 +000079
80 // extended blend coeffs
81 false,
82 false,
83 false,
84 false,
bsalomon@google.com080773c2011-03-15 19:09:25 +000085 };
86 return gCoeffReferencesBlendConst[coeff];
bsalomon@google.com47059542012-06-06 20:51:20 +000087 GR_STATIC_ASSERT(kTotalGrBlendCoeffCount ==
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000088 SK_ARRAY_COUNT(gCoeffReferencesBlendConst));
bsalomon@google.com271cffc2011-05-20 14:13:56 +000089
bsalomon@google.com47059542012-06-06 20:51:20 +000090 GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff);
91 GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff);
92 GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff);
93 GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff);
94 GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff);
95 GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff);
96 GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff);
97 GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff);
98 GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff);
99 GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff);
100 GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff);
101 GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff);
102 GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff);
103 GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000104
bsalomon@google.com47059542012-06-06 20:51:20 +0000105 GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff);
106 GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff);
107 GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff);
108 GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000109
110 // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope
bsalomon@google.com47059542012-06-06 20:51:20 +0000111 GR_STATIC_ASSERT(kTotalGrBlendCoeffCount ==
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000112 SK_ARRAY_COUNT(gXfermodeCoeff2Blend));
bsalomon@google.com080773c2011-03-15 19:09:25 +0000113}
114
reed@google.comac10a2d2010-12-22 21:39:39 +0000115///////////////////////////////////////////////////////////////////////////////
116
rileya@google.come38160c2012-07-03 18:03:04 +0000117static bool gPrintStartupSpew;
bsalomon@google.com42ab7ea2011-01-19 17:19:40 +0000118
bsalomon861e1032014-12-16 07:33:49 -0800119GrGLGpu::GrGLGpu(const GrGLContext& ctx, GrContext* context)
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000120 : GrGpu(context)
robertphillips@google.com6177e692013-02-28 20:16:25 +0000121 , fGLContext(ctx) {
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000122
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000123 SkASSERT(ctx.isInitialized());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000124 fCaps.reset(SkRef(ctx.caps()));
bsalomon@google.combcce8922013-03-25 15:38:39 +0000125
bsalomon1c63bf62014-07-22 13:09:46 -0700126 fHWBoundTextureUniqueIDs.reset(this->glCaps().maxFragmentTextureUnits());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000127
robertphillips@google.com6177e692013-02-28 20:16:25 +0000128 GrGLClearErr(fGLContext.interface());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000129 if (gPrintStartupSpew) {
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000130 const GrGLubyte* vendor;
131 const GrGLubyte* renderer;
132 const GrGLubyte* version;
133 GL_CALL_RET(vendor, GetString(GR_GL_VENDOR));
134 GL_CALL_RET(renderer, GetString(GR_GL_RENDERER));
135 GL_CALL_RET(version, GetString(GR_GL_VERSION));
bsalomon861e1032014-12-16 07:33:49 -0800136 SkDebugf("------------------------- create GrGLGpu %p --------------\n",
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000137 this);
tfarina38406c82014-10-31 07:11:12 -0700138 SkDebugf("------ VENDOR %s\n", vendor);
139 SkDebugf("------ RENDERER %s\n", renderer);
140 SkDebugf("------ VERSION %s\n", version);
141 SkDebugf("------ EXTENSIONS\n");
bsalomone904c092014-07-17 10:50:59 -0700142 ctx.extensions().print();
tfarina38406c82014-10-31 07:11:12 -0700143 SkDebugf("\n");
144 SkDebugf(this->glCaps().dump().c_str());
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000145 }
146
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000147 fProgramCache = SkNEW_ARGS(ProgramCache, (this));
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000148
joshualitt2dd1ae02014-12-03 06:24:10 -0800149 SkASSERT(this->glCaps().maxVertexAttributes() >= GrGeometryProcessor::kMaxVertexAttribs);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000150
bsalomon@google.comfe676522011-06-17 18:12:21 +0000151 fLastSuccessfulStencilFmtIdx = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000152 fHWProgramID = 0;
cdaltonc7103a12014-08-11 14:05:05 -0700153
154 if (this->glCaps().pathRenderingSupport()) {
kkinnunen5b653572014-08-20 04:13:27 -0700155 fPathRendering.reset(new GrGLPathRendering(this));
cdaltonc7103a12014-08-11 14:05:05 -0700156 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000157}
158
bsalomon861e1032014-12-16 07:33:49 -0800159GrGLGpu::~GrGLGpu() {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000160 if (0 != fHWProgramID) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000161 // detach the current program so there is no confusion on OpenGL's part
162 // that we want it to be deleted
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000163 SkASSERT(fHWProgramID == fCurrentProgram->programID());
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000164 GL_CALL(UseProgram(0));
165 }
166
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000167 delete fProgramCache;
bsalomonc8dc1f72014-08-21 13:02:13 -0700168}
169
bsalomon861e1032014-12-16 07:33:49 -0800170void GrGLGpu::contextAbandoned() {
robertphillipse3371302014-09-17 06:01:06 -0700171 INHERITED::contextAbandoned();
bsalomonc8dc1f72014-08-21 13:02:13 -0700172 fProgramCache->abandon();
173 fHWProgramID = 0;
174 if (this->glCaps().pathRenderingSupport()) {
175 this->glPathRendering()->abandonGpuResources();
176 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000177}
178
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000179///////////////////////////////////////////////////////////////////////////////
bsalomon861e1032014-12-16 07:33:49 -0800180GrPixelConfig GrGLGpu::preferredReadPixelsConfig(GrPixelConfig readConfig,
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000181 GrPixelConfig surfaceConfig) const {
182 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == readConfig) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000183 return kBGRA_8888_GrPixelConfig;
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000184 } else if (this->glContext().isMesa() &&
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000185 GrBytesPerPixel(readConfig) == 4 &&
186 GrPixelConfigSwapRAndB(readConfig) == surfaceConfig) {
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000187 // Mesa 3D takes a slow path on when reading back BGRA from an RGBA surface and vice-versa.
188 // Perhaps this should be guarded by some compiletime or runtime check.
189 return surfaceConfig;
piotaixre4b23142014-10-02 10:57:53 -0700190 } else if (readConfig == kBGRA_8888_GrPixelConfig
191 && !this->glCaps().readPixelsSupported(
192 this->glInterface(),
193 GR_GL_BGRA,
194 GR_GL_UNSIGNED_BYTE,
195 surfaceConfig
196 )) {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000197 return kRGBA_8888_GrPixelConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000198 } else {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000199 return readConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000200 }
201}
202
bsalomon861e1032014-12-16 07:33:49 -0800203GrPixelConfig GrGLGpu::preferredWritePixelsConfig(GrPixelConfig writeConfig,
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000204 GrPixelConfig surfaceConfig) const {
commit-bot@chromium.org28621512013-08-07 19:43:45 +0000205 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == writeConfig) {
206 return kBGRA_8888_GrPixelConfig;
207 } else {
208 return writeConfig;
209 }
bsalomon@google.com9c680582013-02-06 18:17:50 +0000210}
211
bsalomon861e1032014-12-16 07:33:49 -0800212bool GrGLGpu::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
krajcevski145d48c2014-06-11 16:07:50 -0700213 if (kIndex_8_GrPixelConfig == srcConfig || kIndex_8_GrPixelConfig == texture->config()) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000214 return false;
215 }
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000216 if (srcConfig != texture->config() && kGLES_GrGLStandard == this->glStandard()) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000217 // In general ES2 requires the internal format of the texture and the format of the src
218 // pixels to match. However, It may or may not be possible to upload BGRA data to a RGBA
219 // texture. It depends upon which extension added BGRA. The Apple extension allows it
220 // (BGRA's internal format is RGBA) while the EXT extension does not (BGRA is its own
221 // internal format).
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000222 if (this->glCaps().isConfigTexturable(kBGRA_8888_GrPixelConfig) &&
bsalomon@google.com9c680582013-02-06 18:17:50 +0000223 !this->glCaps().bgraIsInternalFormat() &&
224 kBGRA_8888_GrPixelConfig == srcConfig &&
225 kRGBA_8888_GrPixelConfig == texture->config()) {
226 return true;
227 } else {
228 return false;
229 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000230 } else {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000231 return true;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000232 }
233}
234
bsalomon861e1032014-12-16 07:33:49 -0800235bool GrGLGpu::fullReadPixelsIsFasterThanPartial() const {
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000236 return SkToBool(GR_GL_FULL_READPIXELS_FASTER_THAN_PARTIAL);
237}
238
bsalomon861e1032014-12-16 07:33:49 -0800239void GrGLGpu::onResetContext(uint32_t resetBits) {
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000240 // we don't use the zb at all
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000241 if (resetBits & kMisc_GrGLBackendState) {
242 GL_CALL(Disable(GR_GL_DEPTH_TEST));
243 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000244
bsalomon04ddf892014-11-19 12:36:22 -0800245 fHWDrawFace = GrDrawState::kInvalid_DrawFace;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000246 fHWDitherEnabled = kUnknown_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000247
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000248 if (kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000249 // Desktop-only state that we never change
250 if (!this->glCaps().isCoreProfile()) {
251 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
252 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
253 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
254 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
255 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
256 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
257 }
258 // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a
259 // core profile. This seems like a bug since the core spec removes any mention of
260 // GL_ARB_imaging.
261 if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) {
262 GL_CALL(Disable(GR_GL_COLOR_TABLE));
263 }
264 GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL));
265 // Since ES doesn't support glPointSize at all we always use the VS to
266 // set the point size
267 GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE));
268
269 // We should set glPolygonMode(FRONT_AND_BACK,FILL) here, too. It isn't
270 // currently part of our gl interface. There are probably others as
271 // well.
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000272 }
joshualitt58162332014-08-01 06:44:53 -0700273
274 if (kGLES_GrGLStandard == this->glStandard() &&
275 fGLContext.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
276 // The arm extension requires specifically enabling MSAA fetching per sample.
277 // On some devices this may have a perf hit. Also multiple render targets are disabled
278 GL_CALL(Enable(GR_GL_FETCH_PER_SAMPLE_ARM));
279 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000280 fHWWriteToColor = kUnknown_TriState;
281 // we only ever use lines in hairline mode
282 GL_CALL(LineWidth(1));
bsalomon@google.comcad107b2013-06-28 14:32:08 +0000283 }
edisonn@google.comba669992013-06-28 16:03:21 +0000284
egdanielb414f252014-07-29 13:15:47 -0700285 if (resetBits & kMSAAEnable_GrGLBackendState) {
286 fMSAAEnabled = kUnknown_TriState;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000287 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000288
commit-bot@chromium.org46fbfe02013-08-30 15:52:12 +0000289 fHWActiveTextureUnitIdx = -1; // invalid
290
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000291 if (resetBits & kTextureBinding_GrGLBackendState) {
bsalomon1c63bf62014-07-22 13:09:46 -0700292 for (int s = 0; s < fHWBoundTextureUniqueIDs.count(); ++s) {
293 fHWBoundTextureUniqueIDs[s] = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000294 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000295 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000296
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000297 if (resetBits & kBlend_GrGLBackendState) {
298 fHWBlendState.invalidate();
299 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000300
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000301 if (resetBits & kView_GrGLBackendState) {
302 fHWScissorSettings.invalidate();
303 fHWViewport.invalidate();
304 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000305
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000306 if (resetBits & kStencil_GrGLBackendState) {
307 fHWStencilSettings.invalidate();
308 fHWStencilTestEnabled = kUnknown_TriState;
309 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000310
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000311 // Vertex
312 if (resetBits & kVertex_GrGLBackendState) {
313 fHWGeometryState.invalidate();
314 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000315
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000316 if (resetBits & kRenderTarget_GrGLBackendState) {
bsalomon1c63bf62014-07-22 13:09:46 -0700317 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000318 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000319
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000320 if (resetBits & kPathRendering_GrGLBackendState) {
321 if (this->caps()->pathRenderingSupport()) {
kkinnunenccdaa042014-08-20 01:36:23 -0700322 this->glPathRendering()->resetContext();
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000323 }
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000324 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000325
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000326 // we assume these values
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000327 if (resetBits & kPixelStore_GrGLBackendState) {
328 if (this->glCaps().unpackRowLengthSupport()) {
329 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
330 }
331 if (this->glCaps().packRowLengthSupport()) {
332 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
333 }
334 if (this->glCaps().unpackFlipYSupport()) {
335 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
336 }
337 if (this->glCaps().packFlipYSupport()) {
338 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
339 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000340 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000341
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000342 if (resetBits & kProgram_GrGLBackendState) {
343 fHWProgramID = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000344 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000345}
346
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000347namespace {
348
349GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
350 // By default, GrRenderTargets are GL's normal orientation so that they
351 // can be drawn to by the outside world without the client having
352 // to render upside down.
353 if (kDefault_GrSurfaceOrigin == origin) {
354 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
355 } else {
356 return origin;
357 }
358}
359
360}
361
bsalomon861e1032014-12-16 07:33:49 -0800362GrTexture* GrGLGpu::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000363 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000364 return NULL;
365 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000366
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000367 if (0 == desc.fTextureHandle) {
368 return NULL;
369 }
370
bsalomon@google.combcce8922013-03-25 15:38:39 +0000371 int maxSize = this->caps()->maxTextureSize();
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000372 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
373 return NULL;
374 }
375
bsalomonb15b4c12014-10-29 12:41:57 -0700376 GrGLTexture::IDDesc idDesc;
377 GrSurfaceDesc surfDesc;
378
379 idDesc.fTextureID = static_cast<GrGLuint>(desc.fTextureHandle);
bsalomon5236cf42015-01-14 10:42:08 -0800380 idDesc.fLifeCycle = GrGpuResource::kWrapped_LifeCycle;
bsalomonb15b4c12014-10-29 12:41:57 -0700381
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000382 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
bsalomonb15b4c12014-10-29 12:41:57 -0700383 surfDesc.fFlags = (GrSurfaceFlags) desc.fFlags;
384 surfDesc.fWidth = desc.fWidth;
385 surfDesc.fHeight = desc.fHeight;
386 surfDesc.fConfig = desc.fConfig;
387 surfDesc.fSampleCnt = desc.fSampleCnt;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000388 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrBackendTextureFlag);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000389 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
390 // assuming the old behaviour, which is that backend textures are always
391 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
392 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
393 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
bsalomonb15b4c12014-10-29 12:41:57 -0700394 surfDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000395 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700396 surfDesc.fOrigin = desc.fOrigin;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000397 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000398
399 GrGLTexture* texture = NULL;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000400 if (renderTarget) {
bsalomonb15b4c12014-10-29 12:41:57 -0700401 GrGLRenderTarget::IDDesc rtIDDesc;
bsalomon5236cf42015-01-14 10:42:08 -0800402 if (!this->createRenderTargetObjects(surfDesc, false, idDesc.fTextureID, &rtIDDesc)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000403 return NULL;
404 }
bsalomon37dd3312014-11-03 08:47:23 -0800405 texture = SkNEW_ARGS(GrGLTextureRenderTarget, (this, surfDesc, idDesc, rtIDDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000406 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700407 texture = SkNEW_ARGS(GrGLTexture, (this, surfDesc, idDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000408 }
409 if (NULL == texture) {
410 return NULL;
411 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000412
bsalomon@google.come269f212011-11-07 13:29:52 +0000413 return texture;
414}
415
bsalomon861e1032014-12-16 07:33:49 -0800416GrRenderTarget* GrGLGpu::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& wrapDesc) {
bsalomonb15b4c12014-10-29 12:41:57 -0700417 GrGLRenderTarget::IDDesc idDesc;
418 idDesc.fRTFBOID = static_cast<GrGLuint>(wrapDesc.fRenderTargetHandle);
419 idDesc.fMSColorRenderbufferID = 0;
420 idDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
bsalomon5236cf42015-01-14 10:42:08 -0800421 idDesc.fLifeCycle = GrGpuResource::kWrapped_LifeCycle;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000422
bsalomonb15b4c12014-10-29 12:41:57 -0700423 GrSurfaceDesc desc;
424 desc.fConfig = wrapDesc.fConfig;
425 desc.fFlags = kCheckAllocation_GrSurfaceFlag;
426 desc.fWidth = wrapDesc.fWidth;
427 desc.fHeight = wrapDesc.fHeight;
428 desc.fSampleCnt = wrapDesc.fSampleCnt;
429 desc.fOrigin = resolve_origin(wrapDesc.fOrigin, true);
430
bsalomon37dd3312014-11-03 08:47:23 -0800431 GrRenderTarget* tgt = SkNEW_ARGS(GrGLRenderTarget, (this, desc, idDesc));
bsalomonb15b4c12014-10-29 12:41:57 -0700432 if (wrapDesc.fStencilBits) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000433 GrGLStencilBuffer::Format format;
434 format.fInternalFormat = GrGLStencilBuffer::kUnknownInternalFormat;
435 format.fPacked = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700436 format.fStencilBits = wrapDesc.fStencilBits;
437 format.fTotalBits = wrapDesc.fStencilBits;
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000438 GrGLStencilBuffer* sb = SkNEW_ARGS(GrGLStencilBuffer,
439 (this,
440 0,
441 desc.fWidth,
442 desc.fHeight,
443 desc.fSampleCnt,
444 format));
bsalomon@google.come269f212011-11-07 13:29:52 +0000445 tgt->setStencilBuffer(sb);
446 sb->unref();
447 }
448 return tgt;
449}
450
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000451////////////////////////////////////////////////////////////////////////////////
452
bsalomon861e1032014-12-16 07:33:49 -0800453bool GrGLGpu::onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000454 int left, int top, int width, int height,
455 GrPixelConfig config, const void* buffer,
456 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000457 if (NULL == buffer) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000458 return false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000459 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000460 GrGLTexture* glTex = static_cast<GrGLTexture*>(texture);
461
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000462 this->setScratchTextureUnit();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000463 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTex->textureID()));
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000464
krajcevski145d48c2014-06-11 16:07:50 -0700465 bool success = false;
bsalomonb15b4c12014-10-29 12:41:57 -0700466 if (GrPixelConfigIsCompressed(glTex->desc().fConfig)) {
bsalomon861e1032014-12-16 07:33:49 -0800467 // We check that config == desc.fConfig in GrGLGpu::canWriteTexturePixels()
bsalomonb15b4c12014-10-29 12:41:57 -0700468 SkASSERT(config == glTex->desc().fConfig);
469 success = this->uploadCompressedTexData(glTex->desc(), buffer, false, left, top, width,
470 height);
krajcevski145d48c2014-06-11 16:07:50 -0700471 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700472 success = this->uploadTexData(glTex->desc(), false, left, top, width, height, config,
473 buffer, rowBytes);
krajcevski145d48c2014-06-11 16:07:50 -0700474 }
475
476 if (success) {
bsalomonafbf2d62014-09-30 12:18:44 -0700477 texture->texturePriv().dirtyMipMaps(true);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000478 return true;
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000479 }
krajcevski145d48c2014-06-11 16:07:50 -0700480
481 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000482}
483
bsalomonb15b4c12014-10-29 12:41:57 -0700484static bool adjust_pixel_ops_params(int surfaceWidth,
485 int surfaceHeight,
486 size_t bpp,
487 int* left, int* top, int* width, int* height,
488 const void** data,
489 size_t* rowBytes) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000490 if (!*rowBytes) {
491 *rowBytes = *width * bpp;
492 }
493
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000494 SkIRect subRect = SkIRect::MakeXYWH(*left, *top, *width, *height);
495 SkIRect bounds = SkIRect::MakeWH(surfaceWidth, surfaceHeight);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000496
497 if (!subRect.intersect(bounds)) {
498 return false;
499 }
500 *data = reinterpret_cast<const void*>(reinterpret_cast<intptr_t>(*data) +
501 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
502
503 *left = subRect.fLeft;
504 *top = subRect.fTop;
505 *width = subRect.width();
506 *height = subRect.height();
507 return true;
508}
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000509
bsalomonb15b4c12014-10-29 12:41:57 -0700510static inline GrGLenum check_alloc_error(const GrSurfaceDesc& desc,
511 const GrGLInterface* interface) {
bsalomonf2703d82014-10-28 14:33:06 -0700512 if (SkToBool(desc.fFlags & kCheckAllocation_GrSurfaceFlag)) {
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000513 return GR_GL_GET_ERROR(interface);
514 } else {
515 return CHECK_ALLOC_ERROR(interface);
516 }
517}
518
bsalomon861e1032014-12-16 07:33:49 -0800519bool GrGLGpu::uploadTexData(const GrSurfaceDesc& desc,
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000520 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000521 int left, int top, int width, int height,
522 GrPixelConfig dataConfig,
523 const void* data,
524 size_t rowBytes) {
bsalomon49f085d2014-09-05 13:34:00 -0700525 SkASSERT(data || isNewTexture);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000526
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +0000527 // If we're uploading compressed data then we should be using uploadCompressedTexData
528 SkASSERT(!GrPixelConfigIsCompressed(dataConfig));
529
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000530 size_t bpp = GrBytesPerPixel(dataConfig);
531 if (!adjust_pixel_ops_params(desc.fWidth, desc.fHeight, bpp, &left, &top,
532 &width, &height, &data, &rowBytes)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000533 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000534 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000535 size_t trimRowBytes = width * bpp;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000536
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000537 // in case we need a temporary, trimmed copy of the src pixels
georgeb62508b2014-08-12 18:00:47 -0700538 GrAutoMalloc<128 * 128> tempStorage;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000539
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000540 // We currently lazily create MIPMAPs when the we see a draw with
541 // GrTextureParams::kMipMap_FilterMode. Using texture storage requires that the
542 // MIP levels are all created when the texture is created. So for now we don't use
543 // texture storage.
544 bool useTexStorage = false &&
545 isNewTexture &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000546 this->glCaps().texStorageSupport();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000547
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000548 if (useTexStorage && kGL_GrGLStandard == this->glStandard()) {
bsalomon@google.com313f0192012-07-10 17:21:02 +0000549 // 565 is not a sized internal format on desktop GL. So on desktop with
550 // 565 we always use an unsized internal format to let the system pick
551 // the best sized format to convert the 565 data to. Since TexStorage
552 // only allows sized internal formats we will instead use TexImage2D.
553 useTexStorage = desc.fConfig != kRGB_565_GrPixelConfig;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000554 }
555
jvanverth3f801cb2014-12-16 09:49:38 -0800556 GrGLenum internalFormat = 0x0; // suppress warning
557 GrGLenum externalFormat = 0x0; // suppress warning
558 GrGLenum externalType = 0x0; // suppress warning
bsalomone904c092014-07-17 10:50:59 -0700559
jvanverthe1869ca2014-12-16 13:32:27 -0800560 // glTexStorage requires sized internal formats on both desktop and ES. ES2 requires an unsized
jvanverthf72b7522014-12-17 10:46:01 -0800561 // format for glTexImage, unlike ES3 and desktop.
jvanverthe1869ca2014-12-16 13:32:27 -0800562 bool useSizedFormat = useTexStorage;
jvanverthf72b7522014-12-17 10:46:01 -0800563 if (kGL_GrGLStandard == this->glStandard() ||
564 (this->glVersion() >= GR_GL_VER(3, 0) &&
565 // ES3 only works with sized BGRA8 format if "GL_APPLE_texture_format_BGRA8888" enabled
566 (kBGRA_8888_GrPixelConfig != dataConfig || !this->glCaps().bgraIsInternalFormat()))) {
jvanverthe1869ca2014-12-16 13:32:27 -0800567 useSizedFormat = true;
568 }
jvanverthf72b7522014-12-17 10:46:01 -0800569
bsalomone904c092014-07-17 10:50:59 -0700570 if (!this->configToGLFormats(dataConfig, useSizedFormat, &internalFormat,
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000571 &externalFormat, &externalType)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000572 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000573 }
574
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000575 /*
bsalomon@google.com6f379512011-11-16 20:36:03 +0000576 * check whether to allocate a temporary buffer for flipping y or
577 * because our srcData has extra bytes past each row. If so, we need
578 * to trim those off here, since GL ES may not let us specify
579 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000580 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000581 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000582 bool swFlipY = false;
583 bool glFlipY = false;
bsalomon49f085d2014-09-05 13:34:00 -0700584 if (data) {
senorblanco@chromium.orgef5dbe12013-01-28 16:42:38 +0000585 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000586 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000587 glFlipY = true;
588 } else {
589 swFlipY = true;
590 }
591 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000592 if (this->glCaps().unpackRowLengthSupport() && !swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000593 // can't use this for flipping, only non-neg values allowed. :(
594 if (rowBytes != trimRowBytes) {
595 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
596 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
597 restoreGLRowLength = true;
598 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000599 } else {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000600 if (trimRowBytes != rowBytes || swFlipY) {
601 // copy data into our new storage, skipping the trailing bytes
602 size_t trimSize = height * trimRowBytes;
603 const char* src = (const char*)data;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000604 if (swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000605 src += (height - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000606 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000607 char* dst = (char*)tempStorage.reset(trimSize);
608 for (int y = 0; y < height; y++) {
609 memcpy(dst, src, trimRowBytes);
610 if (swFlipY) {
611 src -= rowBytes;
612 } else {
613 src += rowBytes;
614 }
615 dst += trimRowBytes;
616 }
617 // now point data to our copied version
618 data = tempStorage.get();
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000619 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000620 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000621 if (glFlipY) {
622 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
623 }
joshualittee5da552014-07-16 13:32:56 -0700624 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT,
625 static_cast<GrGLint>(GrUnpackAlignment(dataConfig))));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000626 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000627 bool succeeded = true;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000628 if (isNewTexture &&
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000629 0 == left && 0 == top &&
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000630 desc.fWidth == width && desc.fHeight == height) {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000631 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000632 if (useTexStorage) {
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000633 // We never resize or change formats of textures.
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000634 GL_ALLOC_CALL(this->glInterface(),
635 TexStorage2D(GR_GL_TEXTURE_2D,
636 1, // levels
637 internalFormat,
638 desc.fWidth, desc.fHeight));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000639 } else {
bsalomond4cb9222014-08-11 14:19:09 -0700640 GL_ALLOC_CALL(this->glInterface(),
641 TexImage2D(GR_GL_TEXTURE_2D,
642 0, // level
643 internalFormat,
644 desc.fWidth, desc.fHeight,
645 0, // border
646 externalFormat, externalType,
647 data));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000648 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000649 GrGLenum error = check_alloc_error(desc, this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000650 if (error != GR_GL_NO_ERROR) {
651 succeeded = false;
652 } else {
653 // if we have data and we used TexStorage to create the texture, we
654 // now upload with TexSubImage.
bsalomon49f085d2014-09-05 13:34:00 -0700655 if (data && useTexStorage) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000656 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
657 0, // level
658 left, top,
659 width, height,
660 externalFormat, externalType,
661 data));
662 }
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000663 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000664 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000665 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000666 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000667 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000668 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
669 0, // level
670 left, top,
671 width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000672 externalFormat, externalType, data));
673 }
674
675 if (restoreGLRowLength) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000676 SkASSERT(this->glCaps().unpackRowLengthSupport());
bsalomon@google.com6f379512011-11-16 20:36:03 +0000677 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000678 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000679 if (glFlipY) {
680 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
681 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000682 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000683}
684
krajcevski145d48c2014-06-11 16:07:50 -0700685// TODO: This function is using a lot of wonky semantics like, if width == -1
piotaixre4b23142014-10-02 10:57:53 -0700686// then set width = desc.fWdith ... blah. A better way to do it might be to
krajcevski145d48c2014-06-11 16:07:50 -0700687// create a CompressedTexData struct that takes a desc/ptr and figures out
688// the proper upload semantics. Then users can construct this function how they
689// see fit if they want to go against the "standard" way to do it.
bsalomon861e1032014-12-16 07:33:49 -0800690bool GrGLGpu::uploadCompressedTexData(const GrSurfaceDesc& desc,
krajcevski145d48c2014-06-11 16:07:50 -0700691 const void* data,
692 bool isNewTexture,
693 int left, int top, int width, int height) {
bsalomon49f085d2014-09-05 13:34:00 -0700694 SkASSERT(data || isNewTexture);
krajcevski9c0e6292014-06-02 07:38:14 -0700695
696 // No support for software flip y, yet...
697 SkASSERT(kBottomLeft_GrSurfaceOrigin != desc.fOrigin);
698
krajcevski145d48c2014-06-11 16:07:50 -0700699 if (-1 == width) {
700 width = desc.fWidth;
701 }
702#ifdef SK_DEBUG
703 else {
704 SkASSERT(width <= desc.fWidth);
705 }
706#endif
707
708 if (-1 == height) {
709 height = desc.fHeight;
710 }
711#ifdef SK_DEBUG
712 else {
713 SkASSERT(height <= desc.fHeight);
714 }
715#endif
716
krajcevski9c0e6292014-06-02 07:38:14 -0700717 // Make sure that the width and height that we pass to OpenGL
718 // is a multiple of the block size.
bsalomon98806072014-12-12 15:11:17 -0800719 size_t dataSize = GrCompressedFormatDataSize(desc.fConfig, width, height);
krajcevski9c0e6292014-06-02 07:38:14 -0700720
721 // We only need the internal format for compressed 2D textures.
722 GrGLenum internalFormat = 0;
723 if (!this->configToGLFormats(desc.fConfig, false, &internalFormat, NULL, NULL)) {
724 return false;
725 }
726
krajcevski145d48c2014-06-11 16:07:50 -0700727 if (isNewTexture) {
bsalomond4cb9222014-08-11 14:19:09 -0700728 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
krajcevski145d48c2014-06-11 16:07:50 -0700729 GL_ALLOC_CALL(this->glInterface(),
730 CompressedTexImage2D(GR_GL_TEXTURE_2D,
731 0, // level
732 internalFormat,
733 width, height,
734 0, // border
bsalomon98806072014-12-12 15:11:17 -0800735 SkToInt(dataSize),
krajcevski145d48c2014-06-11 16:07:50 -0700736 data));
bsalomond4cb9222014-08-11 14:19:09 -0700737 GrGLenum error = check_alloc_error(desc, this->glInterface());
738 if (error != GR_GL_NO_ERROR) {
739 return false;
740 }
krajcevski145d48c2014-06-11 16:07:50 -0700741 } else {
bsalomond4cb9222014-08-11 14:19:09 -0700742 // Paletted textures can't be updated.
743 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
744 return false;
745 }
746 GL_CALL(CompressedTexSubImage2D(GR_GL_TEXTURE_2D,
747 0, // level
748 left, top,
749 width, height,
750 internalFormat,
bsalomon98806072014-12-12 15:11:17 -0800751 SkToInt(dataSize),
bsalomond4cb9222014-08-11 14:19:09 -0700752 data));
krajcevski145d48c2014-06-11 16:07:50 -0700753 }
krajcevski9c0e6292014-06-02 07:38:14 -0700754
bsalomond4cb9222014-08-11 14:19:09 -0700755 return true;
krajcevski9c0e6292014-06-02 07:38:14 -0700756}
757
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000758static bool renderbuffer_storage_msaa(GrGLContext& ctx,
759 int sampleCount,
760 GrGLenum format,
761 int width, int height) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000762 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000763 SkASSERT(GrGLCaps::kNone_MSFBOType != ctx.caps()->msFBOType());
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +0000764 switch (ctx.caps()->msFBOType()) {
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000765 case GrGLCaps::kDesktop_ARB_MSFBOType:
766 case GrGLCaps::kDesktop_EXT_MSFBOType:
767 case GrGLCaps::kES_3_0_MSFBOType:
768 GL_ALLOC_CALL(ctx.interface(),
769 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
770 sampleCount,
771 format,
772 width, height));
773 break;
774 case GrGLCaps::kES_Apple_MSFBOType:
775 GL_ALLOC_CALL(ctx.interface(),
776 RenderbufferStorageMultisampleES2APPLE(GR_GL_RENDERBUFFER,
777 sampleCount,
778 format,
779 width, height));
780 break;
781 case GrGLCaps::kES_EXT_MsToTexture_MSFBOType:
782 case GrGLCaps::kES_IMG_MsToTexture_MSFBOType:
783 GL_ALLOC_CALL(ctx.interface(),
784 RenderbufferStorageMultisampleES2EXT(GR_GL_RENDERBUFFER,
785 sampleCount,
786 format,
787 width, height));
788 break;
789 case GrGLCaps::kNone_MSFBOType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000790 SkFAIL("Shouldn't be here if we don't support multisampled renderbuffers.");
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000791 break;
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000792 }
commit-bot@chromium.org040fd8f2013-09-06 20:00:41 +0000793 return (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));;
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000794}
795
bsalomon5236cf42015-01-14 10:42:08 -0800796bool GrGLGpu::createRenderTargetObjects(const GrSurfaceDesc& desc, bool budgeted, GrGLuint texID,
bsalomonb15b4c12014-10-29 12:41:57 -0700797 GrGLRenderTarget::IDDesc* idDesc) {
798 idDesc->fMSColorRenderbufferID = 0;
799 idDesc->fRTFBOID = 0;
800 idDesc->fTexFBOID = 0;
bsalomon5236cf42015-01-14 10:42:08 -0800801 idDesc->fLifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
802 GrGpuResource::kUncached_LifeCycle;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000803
804 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000805
bsalomon@google.comab15d612011-08-09 12:57:56 +0000806 GrGLenum msColorFormat = 0; // suppress warning
807
bsalomonb15b4c12014-10-29 12:41:57 -0700808 if (desc.fSampleCnt > 0 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +0000809 goto FAILED;
810 }
811
bsalomonb15b4c12014-10-29 12:41:57 -0700812 GL_CALL(GenFramebuffers(1, &idDesc->fTexFBOID));
813 if (!idDesc->fTexFBOID) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000814 goto FAILED;
815 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000816
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000817
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000818 // If we are using multisampling we will create two FBOS. We render to one and then resolve to
819 // the texture bound to the other. The exception is the IMG multisample extension. With this
820 // extension the texture is multisampled when rendered to and then auto-resolves it when it is
821 // rendered from.
bsalomonb15b4c12014-10-29 12:41:57 -0700822 if (desc.fSampleCnt > 0 && this->glCaps().usesMSAARenderBuffers()) {
823 GL_CALL(GenFramebuffers(1, &idDesc->fRTFBOID));
824 GL_CALL(GenRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
825 if (!idDesc->fRTFBOID ||
826 !idDesc->fMSColorRenderbufferID ||
827 !this->configToGLFormats(desc.fConfig,
commit-bot@chromium.org87002952013-08-20 15:12:01 +0000828 // ES2 and ES3 require sized internal formats for rb storage.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +0000829 kGLES_GrGLStandard == this->glStandard(),
bsalomon@google.com347c3822013-05-01 20:10:01 +0000830 &msColorFormat,
831 NULL,
832 NULL)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000833 goto FAILED;
834 }
835 } else {
bsalomonb15b4c12014-10-29 12:41:57 -0700836 idDesc->fRTFBOID = idDesc->fTexFBOID;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000837 }
838
bsalomon@google.com0e9b41a2012-01-04 22:11:43 +0000839 // below here we may bind the FBO
bsalomon1c63bf62014-07-22 13:09:46 -0700840 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomonb15b4c12014-10-29 12:41:57 -0700841 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
842 SkASSERT(desc.fSampleCnt > 0);
843 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, idDesc->fMSColorRenderbufferID));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000844 if (!renderbuffer_storage_msaa(fGLContext,
bsalomonb15b4c12014-10-29 12:41:57 -0700845 desc.fSampleCnt,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000846 msColorFormat,
bsalomonb15b4c12014-10-29 12:41:57 -0700847 desc.fWidth, desc.fHeight)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000848 goto FAILED;
849 }
robertphillips754f4e92014-09-18 13:52:08 -0700850 fGPUStats.incRenderTargetBinds();
bsalomonb15b4c12014-10-29 12:41:57 -0700851 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fRTFBOID));
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000852 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000853 GR_GL_COLOR_ATTACHMENT0,
854 GR_GL_RENDERBUFFER,
bsalomonb15b4c12014-10-29 12:41:57 -0700855 idDesc->fMSColorRenderbufferID));
856 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
857 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000858 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
859 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
860 goto FAILED;
861 }
bsalomonb15b4c12014-10-29 12:41:57 -0700862 fGLContext.caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000863 }
864 }
robertphillips754f4e92014-09-18 13:52:08 -0700865 fGPUStats.incRenderTargetBinds();
bsalomonb15b4c12014-10-29 12:41:57 -0700866 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000867
bsalomonb15b4c12014-10-29 12:41:57 -0700868 if (this->glCaps().usesImplicitMSAAResolve() && desc.fSampleCnt > 0) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000869 GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER,
870 GR_GL_COLOR_ATTACHMENT0,
871 GR_GL_TEXTURE_2D,
bsalomonb15b4c12014-10-29 12:41:57 -0700872 texID, 0, desc.fSampleCnt));
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000873 } else {
874 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
875 GR_GL_COLOR_ATTACHMENT0,
876 GR_GL_TEXTURE_2D,
877 texID, 0));
878 }
bsalomonb15b4c12014-10-29 12:41:57 -0700879 if ((desc.fFlags & kCheckAllocation_GrSurfaceFlag) ||
880 !this->glCaps().isConfigVerifiedColorAttachment(desc.fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000881 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
882 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
883 goto FAILED;
884 }
bsalomonb15b4c12014-10-29 12:41:57 -0700885 fGLContext.caps()->markConfigAsValidColorAttachment(desc.fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000886 }
887
888 return true;
889
890FAILED:
bsalomonb15b4c12014-10-29 12:41:57 -0700891 if (idDesc->fMSColorRenderbufferID) {
892 GL_CALL(DeleteRenderbuffers(1, &idDesc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000893 }
bsalomonb15b4c12014-10-29 12:41:57 -0700894 if (idDesc->fRTFBOID != idDesc->fTexFBOID) {
895 GL_CALL(DeleteFramebuffers(1, &idDesc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000896 }
bsalomonb15b4c12014-10-29 12:41:57 -0700897 if (idDesc->fTexFBOID) {
898 GL_CALL(DeleteFramebuffers(1, &idDesc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000899 }
900 return false;
901}
902
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000903// good to set a break-point here to know when createTexture fails
904static GrTexture* return_null_texture() {
mtklein@google.com330313a2013-08-22 15:37:26 +0000905// SkDEBUGFAIL("null texture");
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000906 return NULL;
907}
908
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000909#if 0 && defined(SK_DEBUG)
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000910static size_t as_size_t(int x) {
911 return x;
912}
913#endif
914
bsalomon5236cf42015-01-14 10:42:08 -0800915GrTexture* GrGLGpu::onCreateTexture(const GrSurfaceDesc& origDesc, bool budgeted,
916 const void* srcData, size_t rowBytes) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000917
bsalomonb15b4c12014-10-29 12:41:57 -0700918 GrSurfaceDesc desc = origDesc;
reed@google.comac10a2d2010-12-22 21:39:39 +0000919
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000920 // Attempt to catch un- or wrongly initialized sample counts;
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000921 SkASSERT(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000922 // We fail if the MSAA was requested and is not available.
923 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
tfarina38406c82014-10-31 07:11:12 -0700924 //SkDebugf("MSAA RT requested but not supported on this platform.");
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000925 return return_null_texture();
926 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000927
bsalomonf2703d82014-10-28 14:33:06 -0700928 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
reed@google.comac10a2d2010-12-22 21:39:39 +0000929
bsalomonb15b4c12014-10-29 12:41:57 -0700930 // If the sample count exceeds the max then we clamp it.
931 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
932 desc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000933
bsalomonb15b4c12014-10-29 12:41:57 -0700934 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
tfarina38406c82014-10-31 07:11:12 -0700935 //SkDebugf("MSAA RT requested but not supported on this platform.");
bsalomon@google.com945bbe12012-06-15 14:30:34 +0000936 return return_null_texture();
reed@google.comac10a2d2010-12-22 21:39:39 +0000937 }
938
reed@google.comac10a2d2010-12-22 21:39:39 +0000939 if (renderTarget) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000940 int maxRTSize = this->caps()->maxRenderTargetSize();
bsalomonb15b4c12014-10-29 12:41:57 -0700941 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) {
bsalomon@google.com91958362011-06-13 17:58:13 +0000942 return return_null_texture();
943 }
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +0000944 } else {
945 int maxSize = this->caps()->maxTextureSize();
bsalomonb15b4c12014-10-29 12:41:57 -0700946 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +0000947 return return_null_texture();
948 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000949 }
950
bsalomonb15b4c12014-10-29 12:41:57 -0700951 GrGLTexture::IDDesc idDesc;
952 GL_CALL(GenTextures(1, &idDesc.fTextureID));
bsalomon5236cf42015-01-14 10:42:08 -0800953 idDesc.fLifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
954 GrGpuResource::kUncached_LifeCycle;
junov@chromium.org8b6b1c92013-08-29 16:22:09 +0000955
bsalomonb15b4c12014-10-29 12:41:57 -0700956 if (!idDesc.fTextureID) {
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000957 return return_null_texture();
958 }
959
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000960 this->setScratchTextureUnit();
bsalomonb15b4c12014-10-29 12:41:57 -0700961 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, idDesc.fTextureID));
bsalomon@google.come269f212011-11-07 13:29:52 +0000962
junov@chromium.org8b6b1c92013-08-29 16:22:09 +0000963 if (renderTarget && this->glCaps().textureUsageSupport()) {
964 // provides a hint about how this texture will be used
965 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
966 GR_GL_TEXTURE_USAGE,
967 GR_GL_FRAMEBUFFER_ATTACHMENT));
968 }
969
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000970 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
971 // drivers have a bug where an FBO won't be complete if it includes a
972 // texture that is not mipmap complete (considering the filter in use).
973 GrGLTexture::TexParams initialTexParams;
974 // we only set a subset here so invalidate first
975 initialTexParams.invalidate();
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +0000976 initialTexParams.fMinFilter = GR_GL_NEAREST;
977 initialTexParams.fMagFilter = GR_GL_NEAREST;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000978 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
979 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000980 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
981 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +0000982 initialTexParams.fMagFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000983 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
984 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +0000985 initialTexParams.fMinFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000986 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
987 GR_GL_TEXTURE_WRAP_S,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000988 initialTexParams.fWrapS));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000989 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
990 GR_GL_TEXTURE_WRAP_T,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000991 initialTexParams.fWrapT));
bsalomonb15b4c12014-10-29 12:41:57 -0700992 if (!this->uploadTexData(desc, true, 0, 0,
993 desc.fWidth, desc.fHeight,
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000994 desc.fConfig, srcData, rowBytes)) {
bsalomonb15b4c12014-10-29 12:41:57 -0700995 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000996 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000997 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000998
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000999 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +00001000 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001001 // unbind the texture from the texture unit before binding it to the frame buffer
1002 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
bsalomon5236cf42015-01-14 10:42:08 -08001003 GrGLRenderTarget::IDDesc rtIDDesc;
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001004
bsalomon5236cf42015-01-14 10:42:08 -08001005 if (!this->createRenderTargetObjects(desc, budgeted, idDesc.fTextureID, &rtIDDesc)) {
bsalomonb15b4c12014-10-29 12:41:57 -07001006 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
reed@google.comac10a2d2010-12-22 21:39:39 +00001007 return return_null_texture();
1008 }
bsalomon37dd3312014-11-03 08:47:23 -08001009 tex = SkNEW_ARGS(GrGLTextureRenderTarget, (this, desc, idDesc, rtIDDesc));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001010 } else {
bsalomonb15b4c12014-10-29 12:41:57 -07001011 tex = SkNEW_ARGS(GrGLTexture, (this, desc, idDesc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001012 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001013 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +00001014#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001015 SkDebugf("--- new texture [%d] size=(%d %d) config=%d\n",
bsalomon@google.com64c4fe42011-11-05 14:51:01 +00001016 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +00001017#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001018 return tex;
1019}
1020
bsalomon5236cf42015-01-14 10:42:08 -08001021GrTexture* GrGLGpu::onCreateCompressedTexture(const GrSurfaceDesc& origDesc, bool budgeted,
1022 const void* srcData) {
krajcevski9c0e6292014-06-02 07:38:14 -07001023
bsalomonb15b4c12014-10-29 12:41:57 -07001024 if(SkToBool(origDesc.fFlags & kRenderTarget_GrSurfaceFlag) || origDesc.fSampleCnt > 0) {
krajcevski9c0e6292014-06-02 07:38:14 -07001025 return return_null_texture();
1026 }
1027
1028 // Make sure that we're not flipping Y.
bsalomonb15b4c12014-10-29 12:41:57 -07001029 GrSurfaceOrigin texOrigin = resolve_origin(origDesc.fOrigin, false);
krajcevski9c0e6292014-06-02 07:38:14 -07001030 if (kBottomLeft_GrSurfaceOrigin == texOrigin) {
1031 return return_null_texture();
1032 }
bsalomonb15b4c12014-10-29 12:41:57 -07001033 GrSurfaceDesc desc = origDesc;
1034 desc.fOrigin = texOrigin;
krajcevski9c0e6292014-06-02 07:38:14 -07001035
1036 int maxSize = this->caps()->maxTextureSize();
bsalomonb15b4c12014-10-29 12:41:57 -07001037 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
krajcevski9c0e6292014-06-02 07:38:14 -07001038 return return_null_texture();
1039 }
1040
bsalomonb15b4c12014-10-29 12:41:57 -07001041 GrGLTexture::IDDesc idDesc;
1042 GL_CALL(GenTextures(1, &idDesc.fTextureID));
bsalomon5236cf42015-01-14 10:42:08 -08001043 idDesc.fLifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
1044 GrGpuResource::kUncached_LifeCycle;
krajcevski9c0e6292014-06-02 07:38:14 -07001045
bsalomonb15b4c12014-10-29 12:41:57 -07001046 if (!idDesc.fTextureID) {
krajcevski9c0e6292014-06-02 07:38:14 -07001047 return return_null_texture();
1048 }
1049
1050 this->setScratchTextureUnit();
bsalomonb15b4c12014-10-29 12:41:57 -07001051 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, idDesc.fTextureID));
krajcevski9c0e6292014-06-02 07:38:14 -07001052
1053 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1054 // drivers have a bug where an FBO won't be complete if it includes a
1055 // texture that is not mipmap complete (considering the filter in use).
1056 GrGLTexture::TexParams initialTexParams;
1057 // we only set a subset here so invalidate first
1058 initialTexParams.invalidate();
1059 initialTexParams.fMinFilter = GR_GL_NEAREST;
1060 initialTexParams.fMagFilter = GR_GL_NEAREST;
1061 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
1062 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
1063 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1064 GR_GL_TEXTURE_MAG_FILTER,
1065 initialTexParams.fMagFilter));
1066 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1067 GR_GL_TEXTURE_MIN_FILTER,
1068 initialTexParams.fMinFilter));
1069 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1070 GR_GL_TEXTURE_WRAP_S,
1071 initialTexParams.fWrapS));
1072 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1073 GR_GL_TEXTURE_WRAP_T,
1074 initialTexParams.fWrapT));
1075
bsalomonb15b4c12014-10-29 12:41:57 -07001076 if (!this->uploadCompressedTexData(desc, srcData)) {
1077 GL_CALL(DeleteTextures(1, &idDesc.fTextureID));
krajcevski9c0e6292014-06-02 07:38:14 -07001078 return return_null_texture();
1079 }
1080
1081 GrGLTexture* tex;
bsalomonb15b4c12014-10-29 12:41:57 -07001082 tex = SkNEW_ARGS(GrGLTexture, (this, desc, idDesc));
krajcevski9c0e6292014-06-02 07:38:14 -07001083 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
1084#ifdef TRACE_TEXTURE_CREATION
tfarina38406c82014-10-31 07:11:12 -07001085 SkDebugf("--- new compressed texture [%d] size=(%d %d) config=%d\n",
krajcevski9c0e6292014-06-02 07:38:14 -07001086 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
1087#endif
1088 return tex;
1089}
1090
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001091namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001092
1093const GrGLuint kUnknownBitCount = GrGLStencilBuffer::kUnknownBitCount;
1094
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001095void inline get_stencil_rb_sizes(const GrGLInterface* gl,
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001096 GrGLStencilBuffer::Format* format) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001097
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001098 // we shouldn't ever know one size and not the other
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001099 SkASSERT((kUnknownBitCount == format->fStencilBits) ==
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001100 (kUnknownBitCount == format->fTotalBits));
1101 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001102 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001103 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1104 (GrGLint*)&format->fStencilBits);
1105 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001106 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001107 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1108 (GrGLint*)&format->fTotalBits);
1109 format->fTotalBits += format->fStencilBits;
1110 } else {
1111 format->fTotalBits = format->fStencilBits;
1112 }
1113 }
1114}
1115}
1116
bsalomon861e1032014-12-16 07:33:49 -08001117bool GrGLGpu::createStencilBufferForRenderTarget(GrRenderTarget* rt, int width, int height) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001118
1119 // All internally created RTs are also textures. We don't create
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001120 // 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 +00001121 SkASSERT(rt->asTexture());
1122 SkASSERT(width >= rt->width());
1123 SkASSERT(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001124
1125 int samples = rt->numSamples();
bsalomon12299ab2014-11-14 13:33:09 -08001126 GrGLuint sbID = 0;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001127
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001128 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001129 for (int i = 0; i < stencilFmtCnt; ++i) {
bsalomon12299ab2014-11-14 13:33:09 -08001130 if (!sbID) {
1131 GL_CALL(GenRenderbuffers(1, &sbID));
1132 }
1133 if (!sbID) {
1134 return false;
1135 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001136 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001137 // we start with the last stencil format that succeeded in hopes
1138 // that we won't go through this loop more than once after the
1139 // first (painful) stencil creation.
1140 int sIdx = (i + fLastSuccessfulStencilFmtIdx) % stencilFmtCnt;
bsalomon12299ab2014-11-14 13:33:09 -08001141 const GrGLCaps::StencilFormat& sFmt = this->glCaps().stencilFormats()[sIdx];
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001142 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001143 // we do this "if" so that we don't call the multisample
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001144 // version on a GL that doesn't have an MSAA extension.
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001145 bool created;
1146 if (samples > 0) {
robertphillips@google.com6177e692013-02-28 20:16:25 +00001147 created = renderbuffer_storage_msaa(fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001148 samples,
1149 sFmt.fInternalFormat,
1150 width, height);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001151 } else {
bsalomon12299ab2014-11-14 13:33:09 -08001152 GL_ALLOC_CALL(this->glInterface(), RenderbufferStorage(GR_GL_RENDERBUFFER,
1153 sFmt.fInternalFormat,
1154 width, height));
1155 created = (GR_GL_NO_ERROR == check_alloc_error(rt->desc(), this->glInterface()));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001156 }
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001157 if (created) {
1158 // After sized formats we attempt an unsized format and take
1159 // whatever sizes GL gives us. In that case we query for the size.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001160 GrGLStencilBuffer::Format format = sFmt;
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001161 get_stencil_rb_sizes(this->glInterface(), &format);
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001162 SkAutoTUnref<GrStencilBuffer> sb(SkNEW_ARGS(GrGLStencilBuffer,
bsalomon5236cf42015-01-14 10:42:08 -08001163 (this, sbID, width, height, samples, format)));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001164 if (this->attachStencilBufferToRenderTarget(sb, rt)) {
1165 fLastSuccessfulStencilFmtIdx = sIdx;
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001166 rt->setStencilBuffer(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001167 return true;
bsalomon12299ab2014-11-14 13:33:09 -08001168 }
bsalomon10e23ca2014-11-25 05:52:06 -08001169 // Remove the scratch key from this resource so we don't grab it from the cache ever
1170 // again.
1171 sb->cacheAccess().removeScratchKey();
1172 // Set this to 0 since we handed the valid ID off to the failed stencil buffer resource.
1173 sbID = 0;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001174 }
1175 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001176 GL_CALL(DeleteRenderbuffers(1, &sbID));
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001177 return false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001178}
1179
bsalomon861e1032014-12-16 07:33:49 -08001180bool GrGLGpu::attachStencilBufferToRenderTarget(GrStencilBuffer* sb, GrRenderTarget* rt) {
bsalomon37dd3312014-11-03 08:47:23 -08001181 GrGLRenderTarget* glrt = static_cast<GrGLRenderTarget*>(rt);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001182
1183 GrGLuint fbo = glrt->renderFBOID();
1184
1185 if (NULL == sb) {
bsalomon49f085d2014-09-05 13:34:00 -07001186 if (rt->getStencilBuffer()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001187 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001188 GR_GL_STENCIL_ATTACHMENT,
1189 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001190 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001191 GR_GL_DEPTH_ATTACHMENT,
1192 GR_GL_RENDERBUFFER, 0));
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001193#ifdef SK_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001194 GrGLenum status;
1195 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001196 SkASSERT(GR_GL_FRAMEBUFFER_COMPLETE == status);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001197#endif
1198 }
1199 return true;
1200 } else {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001201 GrGLStencilBuffer* glsb = static_cast<GrGLStencilBuffer*>(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001202 GrGLuint rb = glsb->renderbufferID();
1203
bsalomon1c63bf62014-07-22 13:09:46 -07001204 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
robertphillips754f4e92014-09-18 13:52:08 -07001205 fGPUStats.incRenderTargetBinds();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001206 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fbo));
1207 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001208 GR_GL_STENCIL_ATTACHMENT,
1209 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001210 if (glsb->format().fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001211 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001212 GR_GL_DEPTH_ATTACHMENT,
1213 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001214 } else {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001215 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001216 GR_GL_DEPTH_ATTACHMENT,
1217 GR_GL_RENDERBUFFER, 0));
reed@google.comac10a2d2010-12-22 21:39:39 +00001218 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001219
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001220 GrGLenum status;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001221 if (!this->glCaps().isColorConfigAndStencilFormatVerified(rt->config(), glsb->format())) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001222 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1223 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001224 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001225 GR_GL_STENCIL_ATTACHMENT,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001226 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001227 if (glsb->format().fPacked) {
1228 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1229 GR_GL_DEPTH_ATTACHMENT,
1230 GR_GL_RENDERBUFFER, 0));
1231 }
1232 return false;
1233 } else {
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +00001234 fGLContext.caps()->markColorConfigAndStencilFormatAsVerified(
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001235 rt->config(),
1236 glsb->format());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001237 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001238 }
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001239 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001240 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001241}
1242
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001243////////////////////////////////////////////////////////////////////////////////
1244
bsalomon861e1032014-12-16 07:33:49 -08001245GrVertexBuffer* GrGLGpu::onCreateVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001246 GrGLVertexBuffer::Desc desc;
1247 desc.fDynamic = dynamic;
1248 desc.fSizeInBytes = size;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001249
bsalomon@google.com96966a52013-02-21 16:34:21 +00001250 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001251 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001252 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001253 return vertexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001254 } else {
1255 GL_CALL(GenBuffers(1, &desc.fID));
1256 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001257 fHWGeometryState.setVertexBufferID(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001258 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1259 // make sure driver can allocate memory for this buffer
1260 GL_ALLOC_CALL(this->glInterface(),
1261 BufferData(GR_GL_ARRAY_BUFFER,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001262 (GrGLsizeiptr) desc.fSizeInBytes,
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001263 NULL, // data ptr
1264 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1265 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1266 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001267 this->notifyVertexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001268 return NULL;
1269 }
1270 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
1271 return vertexBuffer;
1272 }
1273 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001274 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001275}
1276
bsalomon861e1032014-12-16 07:33:49 -08001277GrIndexBuffer* GrGLGpu::onCreateIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001278 GrGLIndexBuffer::Desc desc;
1279 desc.fDynamic = dynamic;
1280 desc.fSizeInBytes = size;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001281
bsalomon@google.com96966a52013-02-21 16:34:21 +00001282 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001283 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001284 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001285 return indexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001286 } else {
1287 GL_CALL(GenBuffers(1, &desc.fID));
1288 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001289 fHWGeometryState.setIndexBufferIDOnDefaultVertexArray(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001290 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1291 // make sure driver can allocate memory for this buffer
1292 GL_ALLOC_CALL(this->glInterface(),
1293 BufferData(GR_GL_ELEMENT_ARRAY_BUFFER,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001294 (GrGLsizeiptr) desc.fSizeInBytes,
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001295 NULL, // data ptr
1296 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1297 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1298 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001299 this->notifyIndexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001300 return NULL;
1301 }
1302 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
1303 return indexBuffer;
1304 }
1305 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001306 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001307}
1308
bsalomon3e791242014-12-17 13:43:13 -08001309void GrGLGpu::flushScissor(const GrScissorState& scissorState,
joshualitt77b13072014-10-27 14:51:01 -07001310 const GrGLIRect& rtViewport,
1311 GrSurfaceOrigin rtOrigin) {
1312 if (scissorState.fEnabled) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001313 GrGLIRect scissor;
bsalomonb0bd4f62014-09-03 07:19:50 -07001314 scissor.setRelativeTo(rtViewport,
joshualitt77b13072014-10-27 14:51:01 -07001315 scissorState.fRect.fLeft,
1316 scissorState.fRect.fTop,
1317 scissorState.fRect.width(),
1318 scissorState.fRect.height(),
bsalomonb0bd4f62014-09-03 07:19:50 -07001319 rtOrigin);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001320 // if the scissor fully contains the viewport then we fall through and
1321 // disable the scissor test.
bsalomonb0bd4f62014-09-03 07:19:50 -07001322 if (!scissor.contains(rtViewport)) {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001323 if (fHWScissorSettings.fRect != scissor) {
1324 scissor.pushToGLScissor(this->glInterface());
1325 fHWScissorSettings.fRect = scissor;
1326 }
1327 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1328 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1329 fHWScissorSettings.fEnabled = kYes_TriState;
1330 }
1331 return;
1332 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001333 }
joshualitt77b13072014-10-27 14:51:01 -07001334
1335 // See fall through note above
1336 this->disableScissor();
1337}
1338
joshualitt17e73142015-01-21 11:52:36 -08001339bool GrGLGpu::flushGLState(const DrawArgs& args, bool isLineDraw) {
egdaniel080e6732014-12-22 07:35:52 -08001340 GrXferProcessor::BlendInfo blendInfo;
joshualitt873ad0e2015-01-20 09:08:51 -08001341 const GrOptDrawState& optState = *args.fOptState;
1342 args.fOptState->getXferProcessor()->getBlendInfo(&blendInfo);
egdaniel080e6732014-12-22 07:35:52 -08001343
bsalomon3e791242014-12-17 13:43:13 -08001344 this->flushDither(optState.isDitherState());
egdaniel080e6732014-12-22 07:35:52 -08001345 this->flushColorWrite(blendInfo.fWriteColor);
bsalomon3e791242014-12-17 13:43:13 -08001346 this->flushDrawFace(optState.getDrawFace());
bsalomonbc3d0de2014-12-15 13:45:03 -08001347
joshualitt873ad0e2015-01-20 09:08:51 -08001348 fCurrentProgram.reset(fProgramCache->getProgram(args));
bsalomon1f78c0a2014-12-17 09:43:13 -08001349 if (NULL == fCurrentProgram.get()) {
1350 SkDEBUGFAIL("Failed to create program!");
1351 return false;
bsalomonbc3d0de2014-12-15 13:45:03 -08001352 }
1353
bsalomon1f78c0a2014-12-17 09:43:13 -08001354 fCurrentProgram.get()->ref();
1355
1356 GrGLuint programID = fCurrentProgram->programID();
1357 if (fHWProgramID != programID) {
1358 GL_CALL(UseProgram(programID));
1359 fHWProgramID = programID;
1360 }
1361
egdaniel080e6732014-12-22 07:35:52 -08001362 if (blendInfo.fWriteColor) {
1363 this->flushBlend(blendInfo);
1364 }
bsalomon1f78c0a2014-12-17 09:43:13 -08001365
joshualitt873ad0e2015-01-20 09:08:51 -08001366 fCurrentProgram->setData(*args.fPrimitiveProcessor, optState, *args.fBatchTracker);
bsalomon1f78c0a2014-12-17 09:43:13 -08001367
bsalomonbc3d0de2014-12-15 13:45:03 -08001368 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(optState.getRenderTarget());
bsalomon3e791242014-12-17 13:43:13 -08001369 this->flushStencil(optState.getStencil());
bsalomonbc3d0de2014-12-15 13:45:03 -08001370 this->flushScissor(optState.getScissorState(), glRT->getViewport(), glRT->origin());
joshualitt17e73142015-01-21 11:52:36 -08001371 this->flushHWAAState(glRT, optState.isHWAntialiasState(), isLineDraw);
bsalomonbc3d0de2014-12-15 13:45:03 -08001372
1373 // This must come after textures are flushed because a texture may need
1374 // to be msaa-resolved (which will modify bound FBO state).
1375 this->flushRenderTarget(glRT, NULL);
1376
1377 return true;
1378}
1379
joshualitt873ad0e2015-01-20 09:08:51 -08001380void GrGLGpu::setupGeometry(const GrPrimitiveProcessor& primProc,
bsalomonbc3d0de2014-12-15 13:45:03 -08001381 const GrDrawTarget::DrawInfo& info,
1382 size_t* indexOffsetInBytes) {
1383 GrGLVertexBuffer* vbuf;
1384 vbuf = (GrGLVertexBuffer*) info.vertexBuffer();
1385
1386 SkASSERT(vbuf);
1387 SkASSERT(!vbuf->isMapped());
1388
1389 GrGLIndexBuffer* ibuf = NULL;
1390 if (info.isIndexed()) {
1391 SkASSERT(indexOffsetInBytes);
1392
1393 *indexOffsetInBytes = 0;
1394 ibuf = (GrGLIndexBuffer*)info.indexBuffer();
1395
1396 SkASSERT(ibuf);
1397 SkASSERT(!ibuf->isMapped());
1398 *indexOffsetInBytes += ibuf->baseOffset();
1399 }
1400 GrGLAttribArrayState* attribState =
1401 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
1402
joshualitt873ad0e2015-01-20 09:08:51 -08001403 int vaCount = primProc.numAttribs();
joshualitt71c92602015-01-14 08:12:47 -08001404 if (vaCount > 0) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001405
joshualitt873ad0e2015-01-20 09:08:51 -08001406 GrGLsizei stride = static_cast<GrGLsizei>(primProc.getVertexStride());
bsalomonbc3d0de2014-12-15 13:45:03 -08001407
1408 size_t vertexOffsetInBytes = stride * info.startVertex();
1409
1410 vertexOffsetInBytes += vbuf->baseOffset();
1411
bsalomonbc3d0de2014-12-15 13:45:03 -08001412 uint32_t usedAttribArraysMask = 0;
1413 size_t offset = 0;
1414
1415 for (int attribIndex = 0; attribIndex < vaCount; attribIndex++) {
joshualitt873ad0e2015-01-20 09:08:51 -08001416 const GrGeometryProcessor::Attribute& attrib = primProc.getAttrib(attribIndex);
bsalomonbc3d0de2014-12-15 13:45:03 -08001417 usedAttribArraysMask |= (1 << attribIndex);
joshualitt71c92602015-01-14 08:12:47 -08001418 GrVertexAttribType attribType = attrib.fType;
bsalomonbc3d0de2014-12-15 13:45:03 -08001419 attribState->set(this,
1420 attribIndex,
1421 vbuf,
1422 GrGLAttribTypeToLayout(attribType).fCount,
1423 GrGLAttribTypeToLayout(attribType).fType,
1424 GrGLAttribTypeToLayout(attribType).fNormalized,
1425 stride,
1426 reinterpret_cast<GrGLvoid*>(vertexOffsetInBytes + offset));
joshualitt71c92602015-01-14 08:12:47 -08001427 offset += attrib.fOffset;
bsalomonbc3d0de2014-12-15 13:45:03 -08001428 }
1429 attribState->disableUnusedArrays(this, usedAttribArraysMask);
1430 }
1431}
1432
joshualitt873ad0e2015-01-20 09:08:51 -08001433void GrGLGpu::buildProgramDesc(GrProgramDesc* desc,
1434 const GrPrimitiveProcessor& primProc,
1435 const GrOptDrawState& optState,
bsalomonbc3d0de2014-12-15 13:45:03 -08001436 const GrProgramDesc::DescInfo& descInfo,
joshualitt873ad0e2015-01-20 09:08:51 -08001437 const GrBatchTracker& batchTracker) const {
joshualitt17e73142015-01-21 11:52:36 -08001438 if (!GrGLProgramDescBuilder::Build(desc, primProc, optState, descInfo, this,
joshualitt873ad0e2015-01-20 09:08:51 -08001439 batchTracker)) {
bsalomonbc3d0de2014-12-15 13:45:03 -08001440 SkDEBUGFAIL("Failed to generate GL program descriptor");
1441 }
1442}
1443
bsalomon861e1032014-12-16 07:33:49 -08001444void GrGLGpu::disableScissor() {
bsalomon@google.coma3201942012-06-21 19:58:20 +00001445 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001446 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001447 fHWScissorSettings.fEnabled = kNo_TriState;
1448 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001449 }
1450}
1451
bsalomon861e1032014-12-16 07:33:49 -08001452void GrGLGpu::onClear(GrRenderTarget* target, const SkIRect* rect, GrColor color,
joshualitt4b68ec02014-11-07 14:11:45 -08001453 bool canIgnoreRect) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001454 // parent class should never let us get here with no RT
bsalomon49f085d2014-09-05 13:34:00 -07001455 SkASSERT(target);
bsalomonb0bd4f62014-09-03 07:19:50 -07001456 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001457
robertphillips@google.com56ce48a2013-10-31 21:44:25 +00001458 if (canIgnoreRect && this->glCaps().fullClearIsFree()) {
1459 rect = NULL;
1460 }
1461
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001462 SkIRect clippedRect;
bsalomon49f085d2014-09-05 13:34:00 -07001463 if (rect) {
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001464 // flushScissor expects rect to be clipped to the target.
bsalomon@google.com74b98712011-11-11 19:46:16 +00001465 clippedRect = *rect;
bsalomonb0bd4f62014-09-03 07:19:50 -07001466 SkIRect rtRect = SkIRect::MakeWH(target->width(), target->height());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001467 if (clippedRect.intersect(rtRect)) {
1468 rect = &clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001469 } else {
1470 return;
1471 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001472 }
rmistry@google.comd6bab022013-12-02 13:50:38 +00001473
bsalomonb0bd4f62014-09-03 07:19:50 -07001474 this->flushRenderTarget(glRT, rect);
bsalomon3e791242014-12-17 13:43:13 -08001475 GrScissorState scissorState;
joshualitt77b13072014-10-27 14:51:01 -07001476 scissorState.fEnabled = SkToBool(rect);
1477 if (scissorState.fEnabled) {
1478 scissorState.fRect = *rect;
bsalomon@google.coma3201942012-06-21 19:58:20 +00001479 }
joshualitt77b13072014-10-27 14:51:01 -07001480 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001481
1482 GrGLfloat r, g, b, a;
1483 static const GrGLfloat scale255 = 1.f / 255.f;
1484 a = GrColorUnpackA(color) * scale255;
1485 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001486 r = GrColorUnpackR(color) * scaleRGB;
1487 g = GrColorUnpackG(color) * scaleRGB;
1488 b = GrColorUnpackB(color) * scaleRGB;
1489
1490 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00001491 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001492 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001493 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00001494}
1495
bsalomon861e1032014-12-16 07:33:49 -08001496void GrGLGpu::discard(GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -08001497 SkASSERT(renderTarget);
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001498 if (!this->caps()->discardRenderTargetSupport()) {
1499 return;
1500 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001501
1502 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(renderTarget);
bsalomon1c63bf62014-07-22 13:09:46 -07001503 if (renderTarget->getUniqueID() != fHWBoundRenderTargetUniqueID) {
1504 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
robertphillips754f4e92014-09-18 13:52:08 -07001505 fGPUStats.incRenderTargetBinds();
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001506 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, glRT->renderFBOID()));
1507 }
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001508 switch (this->glCaps().invalidateFBType()) {
joshualitt58162332014-08-01 06:44:53 -07001509 case GrGLCaps::kNone_InvalidateFBType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00001510 SkFAIL("Should never get here.");
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001511 break;
1512 case GrGLCaps::kInvalidate_InvalidateFBType:
1513 if (0 == glRT->renderFBOID()) {
1514 // When rendering to the default framebuffer the legal values for attachments
1515 // are GL_COLOR, GL_DEPTH, GL_STENCIL, ... rather than the various FBO attachment
1516 // types.
1517 static const GrGLenum attachments[] = { GR_GL_COLOR };
1518 GL_CALL(InvalidateFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
1519 attachments));
1520 } else {
1521 static const GrGLenum attachments[] = { GR_GL_COLOR_ATTACHMENT0 };
1522 GL_CALL(InvalidateFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
1523 attachments));
1524 }
1525 break;
1526 case GrGLCaps::kDiscard_InvalidateFBType: {
commit-bot@chromium.org4453e8b2014-04-16 14:33:27 +00001527 if (0 == glRT->renderFBOID()) {
1528 // When rendering to the default framebuffer the legal values for attachments
1529 // are GL_COLOR, GL_DEPTH, GL_STENCIL, ... rather than the various FBO attachment
1530 // types. See glDiscardFramebuffer() spec.
1531 static const GrGLenum attachments[] = { GR_GL_COLOR };
1532 GL_CALL(DiscardFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
1533 attachments));
1534 } else {
1535 static const GrGLenum attachments[] = { GR_GL_COLOR_ATTACHMENT0 };
1536 GL_CALL(DiscardFramebuffer(GR_GL_FRAMEBUFFER, SK_ARRAY_COUNT(attachments),
1537 attachments));
1538 }
commit-bot@chromium.org52ffbf62014-04-02 16:19:33 +00001539 break;
1540 }
1541 }
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001542 renderTarget->flagAsResolved();
1543}
1544
1545
bsalomon861e1032014-12-16 07:33:49 -08001546void GrGLGpu::clearStencil(GrRenderTarget* target) {
bsalomonb0bd4f62014-09-03 07:19:50 -07001547 if (NULL == target) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00001548 return;
1549 }
bsalomonb0bd4f62014-09-03 07:19:50 -07001550 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
1551 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001552
joshualitt77b13072014-10-27 14:51:01 -07001553 this->disableScissor();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001554
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001555 GL_CALL(StencilMask(0xffffffff));
1556 GL_CALL(ClearStencil(0));
1557 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001558 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001559}
1560
bsalomon861e1032014-12-16 07:33:49 -08001561void GrGLGpu::onClearStencilClip(GrRenderTarget* target, const SkIRect& rect, bool insideClip) {
bsalomon49f085d2014-09-05 13:34:00 -07001562 SkASSERT(target);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001563
1564 // this should only be called internally when we know we have a
1565 // stencil buffer.
bsalomon49f085d2014-09-05 13:34:00 -07001566 SkASSERT(target->getStencilBuffer());
bsalomonb0bd4f62014-09-03 07:19:50 -07001567 GrGLint stencilBitCount = target->getStencilBuffer()->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001568#if 0
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001569 SkASSERT(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00001570 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001571#else
1572 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001573 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001574 // turned into draws. Our contract on GrDrawTarget says that
1575 // changing the clip between stencil passes may or may not
1576 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00001577 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001578#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001579 GrGLint value;
1580 if (insideClip) {
1581 value = (1 << (stencilBitCount - 1));
1582 } else {
1583 value = 0;
1584 }
bsalomonb0bd4f62014-09-03 07:19:50 -07001585 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(target);
1586 this->flushRenderTarget(glRT, &SkIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001587
bsalomon3e791242014-12-17 13:43:13 -08001588 GrScissorState scissorState;
joshualitt77b13072014-10-27 14:51:01 -07001589 scissorState.fEnabled = true;
1590 scissorState.fRect = rect;
1591 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001592
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001593 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001594 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001595 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001596 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001597}
1598
bsalomon861e1032014-12-16 07:33:49 -08001599bool GrGLGpu::readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001600 int left, int top,
1601 int width, int height,
1602 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001603 size_t rowBytes) const {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001604 // If this rendertarget is aready TopLeft, we don't need to flip.
1605 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
1606 return false;
1607 }
1608
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001609 // if GL can do the flip then we'll never pay for it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001610 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001611 return false;
1612 }
1613
1614 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00001615 // get the flip for free. Otherwise it costs.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001616 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001617 return true;
1618 }
1619 // If we have to do memcpys to handle rowBytes then y-flip is free
1620 // Note the rowBytes might be tight to the passed in data, but if data
1621 // gets clipped in x to the target the rowBytes will no longer be tight.
1622 if (left >= 0 && (left + width) < renderTarget->width()) {
1623 return 0 == rowBytes ||
1624 GrBytesPerPixel(config) * width == rowBytes;
1625 } else {
1626 return false;
1627 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001628}
1629
bsalomon861e1032014-12-16 07:33:49 -08001630bool GrGLGpu::onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001631 int left, int top,
1632 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001633 GrPixelConfig config,
1634 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001635 size_t rowBytes) {
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001636 // We cannot read pixels into a compressed buffer
1637 if (GrPixelConfigIsCompressed(config)) {
1638 return false;
1639 }
1640
1641 GrGLenum format = 0;
1642 GrGLenum type = 0;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001643 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin();
bsalomon@google.com280e99f2012-01-05 16:17:38 +00001644 if (!this->configToGLFormats(config, false, NULL, &format, &type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001645 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001646 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001647 size_t bpp = GrBytesPerPixel(config);
1648 if (!adjust_pixel_ops_params(target->width(), target->height(), bpp,
1649 &left, &top, &width, &height,
1650 const_cast<const void**>(&buffer),
1651 &rowBytes)) {
1652 return false;
1653 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001654
bsalomon@google.comc6980972011-11-02 19:57:21 +00001655 // resolve the render target if necessary
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001656 GrGLRenderTarget* tgt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001657 switch (tgt->getResolveType()) {
1658 case GrGLRenderTarget::kCantResolve_ResolveType:
1659 return false;
1660 case GrGLRenderTarget::kAutoResolves_ResolveType:
bsalomon37dd3312014-11-03 08:47:23 -08001661 this->flushRenderTarget(static_cast<GrGLRenderTarget*>(target), &SkIRect::EmptyIRect());
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001662 break;
1663 case GrGLRenderTarget::kCanResolve_ResolveType:
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001664 this->onResolveRenderTarget(tgt);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001665 // we don't track the state of the READ FBO ID.
robertphillips754f4e92014-09-18 13:52:08 -07001666 fGPUStats.incRenderTargetBinds();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001667 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1668 tgt->textureFBOID()));
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001669 break;
1670 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00001671 SkFAIL("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00001672 }
1673
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001674 const GrGLIRect& glvp = tgt->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00001675
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00001676 // the read rect is viewport-relative
1677 GrGLIRect readRect;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001678 readRect.setRelativeTo(glvp, left, top, width, height, target->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001679
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001680 size_t tightRowBytes = bpp * width;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001681 if (0 == rowBytes) {
1682 rowBytes = tightRowBytes;
1683 }
1684 size_t readDstRowBytes = tightRowBytes;
1685 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001686
bsalomon@google.comc6980972011-11-02 19:57:21 +00001687 // determine if GL can read using the passed rowBytes or if we need
1688 // a scratch buffer.
georgeb62508b2014-08-12 18:00:47 -07001689 GrAutoMalloc<32 * sizeof(GrColor)> scratch;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001690 if (rowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001691 if (this->glCaps().packRowLengthSupport()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001692 SkASSERT(!(rowBytes % sizeof(GrColor)));
skia.committer@gmail.com4677acc2013-10-17 07:02:33 +00001693 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH,
robertphillips@google.come9cd27d2013-10-16 17:48:11 +00001694 static_cast<GrGLint>(rowBytes / sizeof(GrColor))));
bsalomon@google.comc6980972011-11-02 19:57:21 +00001695 readDstRowBytes = rowBytes;
1696 } else {
1697 scratch.reset(tightRowBytes * height);
1698 readDst = scratch.get();
1699 }
1700 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001701 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001702 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
1703 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001704 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
1705 readRect.fWidth, readRect.fHeight,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001706 format, type, readDst));
1707 if (readDstRowBytes != tightRowBytes) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001708 SkASSERT(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00001709 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
1710 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001711 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001712 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001713 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001714 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001715
1716 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00001717 // API presents top-to-bottom. We must preserve the padding contents. Note
1718 // that the above readPixels did not overwrite the padding.
1719 if (readDst == buffer) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001720 SkASSERT(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001721 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001722 scratch.reset(tightRowBytes);
1723 void* tmpRow = scratch.get();
1724 // flip y in-place by rows
1725 const int halfY = height >> 1;
1726 char* top = reinterpret_cast<char*>(buffer);
1727 char* bottom = top + (height - 1) * rowBytes;
1728 for (int y = 0; y < halfY; y++) {
1729 memcpy(tmpRow, top, tightRowBytes);
1730 memcpy(top, bottom, tightRowBytes);
1731 memcpy(bottom, tmpRow, tightRowBytes);
1732 top += rowBytes;
1733 bottom -= rowBytes;
1734 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001735 }
1736 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001737 SkASSERT(readDst != buffer); SkASSERT(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00001738 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001739 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001740 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001741 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001742 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001743 dst += (height-1) * rowBytes;
1744 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001745 for (int y = 0; y < height; y++) {
1746 memcpy(dst, src, tightRowBytes);
1747 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001748 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001749 dst += rowBytes;
1750 } else {
1751 dst -= rowBytes;
1752 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001753 }
1754 }
1755 return true;
1756}
1757
bsalomon861e1032014-12-16 07:33:49 -08001758void GrGLGpu::flushRenderTarget(GrGLRenderTarget* target, const SkIRect* bound) {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001759
bsalomon49f085d2014-09-05 13:34:00 -07001760 SkASSERT(target);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001761
bsalomonb0bd4f62014-09-03 07:19:50 -07001762 uint32_t rtID = target->getUniqueID();
bsalomon1c63bf62014-07-22 13:09:46 -07001763 if (fHWBoundRenderTargetUniqueID != rtID) {
robertphillips754f4e92014-09-18 13:52:08 -07001764 fGPUStats.incRenderTargetBinds();
bsalomonb0bd4f62014-09-03 07:19:50 -07001765 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, target->renderFBOID()));
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +00001766#ifdef SK_DEBUG
rmistry@google.comd6bab022013-12-02 13:50:38 +00001767 // don't do this check in Chromium -- this is causing
1768 // lots of repeated command buffer flushes when the compositor is
1769 // rendering with Ganesh, which is really slow; even too slow for
1770 // Debug mode.
commit-bot@chromium.orgb1854a82014-01-16 18:39:04 +00001771 if (!this->glContext().isChromium()) {
rmistry@google.comd6bab022013-12-02 13:50:38 +00001772 GrGLenum status;
1773 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1774 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
bsalomon861e1032014-12-16 07:33:49 -08001775 SkDebugf("GrGLGpu::flushRenderTarget glCheckFramebufferStatus %x\n", status);
rmistry@google.comd6bab022013-12-02 13:50:38 +00001776 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001777 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +00001778#endif
bsalomon1c63bf62014-07-22 13:09:46 -07001779 fHWBoundRenderTargetUniqueID = rtID;
bsalomonb0bd4f62014-09-03 07:19:50 -07001780 const GrGLIRect& vp = target->getViewport();
bsalomon@google.coma3201942012-06-21 19:58:20 +00001781 if (fHWViewport != vp) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001782 vp.pushToGLViewport(this->glInterface());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001783 fHWViewport = vp;
reed@google.comac10a2d2010-12-22 21:39:39 +00001784 }
1785 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001786 if (NULL == bound || !bound->isEmpty()) {
bsalomonb0bd4f62014-09-03 07:19:50 -07001787 target->flagAsNeedingResolve(bound);
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001788 }
skia.committer@gmail.comaeefb2a2013-07-27 07:01:06 +00001789
bsalomonb0bd4f62014-09-03 07:19:50 -07001790 GrTexture *texture = target->asTexture();
bsalomon49f085d2014-09-05 13:34:00 -07001791 if (texture) {
bsalomonafbf2d62014-09-30 12:18:44 -07001792 texture->texturePriv().dirtyMipMaps(true);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00001793 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001794}
1795
twiz@google.com0f31ca72011-03-18 17:38:11 +00001796GrGLenum gPrimitiveType2GLMode[] = {
1797 GR_GL_TRIANGLES,
1798 GR_GL_TRIANGLE_STRIP,
1799 GR_GL_TRIANGLE_FAN,
1800 GR_GL_POINTS,
1801 GR_GL_LINES,
1802 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00001803};
1804
bsalomon@google.comd302f142011-03-03 13:54:13 +00001805#define SWAP_PER_DRAW 0
1806
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001807#if SWAP_PER_DRAW
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001808 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001809 #include <AGL/agl.h>
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001810 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comce7357d2012-06-25 17:49:25 +00001811 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00001812 void SwapBuf() {
1813 DWORD procID = GetCurrentProcessId();
1814 HWND hwnd = GetTopWindow(GetDesktopWindow());
1815 while(hwnd) {
1816 DWORD wndProcID = 0;
1817 GetWindowThreadProcessId(hwnd, &wndProcID);
1818 if(wndProcID == procID) {
1819 SwapBuffers(GetDC(hwnd));
1820 }
1821 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
1822 }
1823 }
1824 #endif
1825#endif
1826
joshualitt873ad0e2015-01-20 09:08:51 -08001827void GrGLGpu::onDraw(const DrawArgs& args, const GrDrawTarget::DrawInfo& info) {
joshualitt17e73142015-01-21 11:52:36 -08001828 if (!this->flushGLState(args, GrIsPrimTypeLines(info.primitiveType()))) {
bsalomond95263c2014-12-16 13:05:12 -08001829 return;
1830 }
1831
joshualitt873ad0e2015-01-20 09:08:51 -08001832 size_t indexOffsetInBytes = 0;
1833 this->setupGeometry(*args.fPrimitiveProcessor, info, &indexOffsetInBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +00001834
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001835 SkASSERT((size_t)info.primitiveType() < SK_ARRAY_COUNT(gPrimitiveType2GLMode));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00001836
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001837 if (info.isIndexed()) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001838 GrGLvoid* indices =
1839 reinterpret_cast<GrGLvoid*>(indexOffsetInBytes + sizeof(uint16_t) * info.startIndex());
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001840 // info.startVertex() was accounted for by setupGeometry.
1841 GL_CALL(DrawElements(gPrimitiveType2GLMode[info.primitiveType()],
1842 info.indexCount(),
1843 GR_GL_UNSIGNED_SHORT,
1844 indices));
1845 } else {
1846 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account for
1847 // startVertex in the DrawElements case. So we always rely on setupGeometry to have
1848 // accounted for startVertex.
1849 GL_CALL(DrawArrays(gPrimitiveType2GLMode[info.primitiveType()], 0, info.vertexCount()));
1850 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00001851#if SWAP_PER_DRAW
1852 glFlush();
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001853 #if defined(SK_BUILD_FOR_MAC)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001854 aglSwapBuffers(aglGetCurrentContext());
1855 int set_a_break_pt_here = 9;
1856 aglSwapBuffers(aglGetCurrentContext());
commit-bot@chromium.org43823302013-09-25 20:57:51 +00001857 #elif defined(SK_BUILD_FOR_WIN32)
bsalomon@google.comd302f142011-03-03 13:54:13 +00001858 SwapBuf();
1859 int set_a_break_pt_here = 9;
1860 SwapBuf();
1861 #endif
1862#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00001863}
1864
bsalomon3e791242014-12-17 13:43:13 -08001865void GrGLGpu::onStencilPath(const GrPath* path, const StencilPathState& state) {
egdaniel080e6732014-12-22 07:35:52 -08001866 this->flushColorWrite(false);
bsalomon3e791242014-12-17 13:43:13 -08001867 this->flushDrawFace(GrDrawState::kBoth_DrawFace);
1868
1869 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(state.fRenderTarget);
bsalomon1f78c0a2014-12-17 09:43:13 -08001870 SkISize size = SkISize::Make(rt->width(), rt->height());
bsalomon3e791242014-12-17 13:43:13 -08001871 this->glPathRendering()->setProjectionMatrix(*state.fViewMatrix, size, rt->origin());
1872 this->flushScissor(*state.fScissor, rt->getViewport(), rt->origin());
1873 this->flushHWAAState(rt, state.fUseHWAA, false);
bsalomon1f78c0a2014-12-17 09:43:13 -08001874 this->flushRenderTarget(rt, NULL);
1875
bsalomon3e791242014-12-17 13:43:13 -08001876 fPathRendering->stencilPath(path, *state.fStencil);
bsalomond95263c2014-12-16 13:05:12 -08001877}
1878
joshualitt873ad0e2015-01-20 09:08:51 -08001879void GrGLGpu::onDrawPath(const DrawArgs& args, const GrPath* path,
bsalomond95263c2014-12-16 13:05:12 -08001880 const GrStencilSettings& stencil) {
joshualitt17e73142015-01-21 11:52:36 -08001881 if (!this->flushGLState(args, false)) {
bsalomond95263c2014-12-16 13:05:12 -08001882 return;
1883 }
1884 fPathRendering->drawPath(path, stencil);
1885}
1886
joshualitt873ad0e2015-01-20 09:08:51 -08001887void GrGLGpu::onDrawPaths(const DrawArgs& args,
bsalomond95263c2014-12-16 13:05:12 -08001888 const GrPathRange* pathRange,
1889 const void* indices,
1890 GrDrawTarget::PathIndexType indexType,
1891 const float transformValues[],
1892 GrDrawTarget::PathTransformType transformType,
1893 int count,
1894 const GrStencilSettings& stencil) {
joshualitt17e73142015-01-21 11:52:36 -08001895 if (!this->flushGLState(args, false)) {
bsalomond95263c2014-12-16 13:05:12 -08001896 return;
1897 }
1898 fPathRendering->drawPaths(pathRange, indices, indexType, transformValues,
1899 transformType, count, stencil);
1900}
1901
bsalomon861e1032014-12-16 07:33:49 -08001902void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target) {
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001903 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001904 if (rt->needsResolve()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001905 // Some extensions automatically resolves the texture when it is read.
1906 if (this->glCaps().usesMSAARenderBuffers()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001907 SkASSERT(rt->textureFBOID() != rt->renderFBOID());
robertphillips754f4e92014-09-18 13:52:08 -07001908 fGPUStats.incRenderTargetBinds();
1909 fGPUStats.incRenderTargetBinds();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001910 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()));
1911 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()));
1912 // make sure we go through flushRenderTarget() since we've modified
1913 // the bound DRAW FBO ID.
bsalomon1c63bf62014-07-22 13:09:46 -07001914 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001915 const GrGLIRect& vp = rt->getViewport();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001916 const SkIRect dirtyRect = rt->getResolveRect();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001917 GrGLIRect r;
1918 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
1919 dirtyRect.width(), dirtyRect.height(), target->origin());
reed@google.comac10a2d2010-12-22 21:39:39 +00001920
bsalomon@google.com347c3822013-05-01 20:10:01 +00001921 if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001922 // Apple's extension uses the scissor as the blit bounds.
bsalomon3e791242014-12-17 13:43:13 -08001923 GrScissorState scissorState;
joshualitt77b13072014-10-27 14:51:01 -07001924 scissorState.fEnabled = true;
1925 scissorState.fRect = dirtyRect;
1926 this->flushScissor(scissorState, rt->getViewport(), rt->origin());
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001927 GL_CALL(ResolveMultisampleFramebuffer());
1928 } else {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001929 int right = r.fLeft + r.fWidth;
1930 int top = r.fBottom + r.fHeight;
derekf8c8f71a2014-09-16 06:24:57 -07001931
1932 // BlitFrameBuffer respects the scissor, so disable it.
joshualitt77b13072014-10-27 14:51:01 -07001933 this->disableScissor();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001934 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
1935 r.fLeft, r.fBottom, right, top,
1936 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00001937 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001938 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001939 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00001940 }
1941}
1942
bsalomon@google.com411dad02012-06-05 20:24:20 +00001943namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00001944
bsalomon@google.com411dad02012-06-05 20:24:20 +00001945
1946GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
1947 static const GrGLenum gTable[] = {
1948 GR_GL_KEEP, // kKeep_StencilOp
1949 GR_GL_REPLACE, // kReplace_StencilOp
1950 GR_GL_INCR_WRAP, // kIncWrap_StencilOp
1951 GR_GL_INCR, // kIncClamp_StencilOp
1952 GR_GL_DECR_WRAP, // kDecWrap_StencilOp
1953 GR_GL_DECR, // kDecClamp_StencilOp
1954 GR_GL_ZERO, // kZero_StencilOp
1955 GR_GL_INVERT, // kInvert_StencilOp
1956 };
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +00001957 GR_STATIC_ASSERT(SK_ARRAY_COUNT(gTable) == kStencilOpCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001958 GR_STATIC_ASSERT(0 == kKeep_StencilOp);
1959 GR_STATIC_ASSERT(1 == kReplace_StencilOp);
1960 GR_STATIC_ASSERT(2 == kIncWrap_StencilOp);
1961 GR_STATIC_ASSERT(3 == kIncClamp_StencilOp);
1962 GR_STATIC_ASSERT(4 == kDecWrap_StencilOp);
1963 GR_STATIC_ASSERT(5 == kDecClamp_StencilOp);
1964 GR_STATIC_ASSERT(6 == kZero_StencilOp);
1965 GR_STATIC_ASSERT(7 == kInvert_StencilOp);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001966 SkASSERT((unsigned) op < kStencilOpCount);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001967 return gTable[op];
1968}
1969
1970void set_gl_stencil(const GrGLInterface* gl,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001971 const GrStencilSettings& settings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001972 GrGLenum glFace,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001973 GrStencilSettings::Face grFace) {
kkinnunenccdaa042014-08-20 01:36:23 -07001974 GrGLenum glFunc = GrToGLStencilFunc(settings.func(grFace));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001975 GrGLenum glFailOp = gr_to_gl_stencil_op(settings.failOp(grFace));
1976 GrGLenum glPassOp = gr_to_gl_stencil_op(settings.passOp(grFace));
1977
1978 GrGLint ref = settings.funcRef(grFace);
1979 GrGLint mask = settings.funcMask(grFace);
1980 GrGLint writeMask = settings.writeMask(grFace);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001981
1982 if (GR_GL_FRONT_AND_BACK == glFace) {
1983 // we call the combined func just in case separate stencil is not
1984 // supported.
1985 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
1986 GR_GL_CALL(gl, StencilMask(writeMask));
1987 GR_GL_CALL(gl, StencilOp(glFailOp, glPassOp, glPassOp));
1988 } else {
1989 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
1990 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
1991 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, glPassOp, glPassOp));
1992 }
1993}
1994}
bsalomon@google.comd302f142011-03-03 13:54:13 +00001995
bsalomon3e791242014-12-17 13:43:13 -08001996void GrGLGpu::flushStencil(const GrStencilSettings& stencilSettings) {
1997 if (fHWStencilSettings != stencilSettings) {
joshualitta58fe352014-10-27 08:39:00 -07001998 if (stencilSettings.isDisabled()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001999 if (kNo_TriState != fHWStencilTestEnabled) {
2000 GL_CALL(Disable(GR_GL_STENCIL_TEST));
2001 fHWStencilTestEnabled = kNo_TriState;
2002 }
2003 } else {
2004 if (kYes_TriState != fHWStencilTestEnabled) {
2005 GL_CALL(Enable(GR_GL_STENCIL_TEST));
2006 fHWStencilTestEnabled = kYes_TriState;
2007 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00002008 }
joshualitta58fe352014-10-27 08:39:00 -07002009 if (!stencilSettings.isDisabled()) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00002010 if (this->caps()->twoSidedStencilSupport()) {
bsalomon@google.com411dad02012-06-05 20:24:20 +00002011 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002012 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002013 GR_GL_FRONT,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002014 GrStencilSettings::kFront_Face);
bsalomon@google.com411dad02012-06-05 20:24:20 +00002015 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002016 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002017 GR_GL_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002018 GrStencilSettings::kBack_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00002019 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00002020 set_gl_stencil(this->glInterface(),
joshualitta58fe352014-10-27 08:39:00 -07002021 stencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00002022 GR_GL_FRONT_AND_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00002023 GrStencilSettings::kFront_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00002024 }
2025 }
joshualitta58fe352014-10-27 08:39:00 -07002026 fHWStencilSettings = stencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00002027 }
2028}
2029
bsalomon3e791242014-12-17 13:43:13 -08002030void GrGLGpu::flushHWAAState(GrRenderTarget* rt, bool useHWAA, bool isLineDraw) {
bsalomon@google.com202d1392013-03-19 18:58:08 +00002031// At least some ATI linux drivers will render GL_LINES incorrectly when MSAA state is enabled but
2032// the target is not multisampled. Single pixel wide lines are rendered thicker than 1 pixel wide.
2033#if 0
2034 // Replace RT_HAS_MSAA with this definition once this driver bug is no longer a relevant concern
2035 #define RT_HAS_MSAA rt->isMultisampled()
2036#else
bsalomon3e791242014-12-17 13:43:13 -08002037 #define RT_HAS_MSAA (rt->isMultisampled() || isLineDraw)
bsalomon@google.com202d1392013-03-19 18:58:08 +00002038#endif
2039
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002040 if (kGL_GrGLStandard == this->glStandard()) {
egdanielb414f252014-07-29 13:15:47 -07002041 if (RT_HAS_MSAA) {
bsalomon3e791242014-12-17 13:43:13 -08002042 if (useHWAA) {
egdanielb414f252014-07-29 13:15:47 -07002043 if (kYes_TriState != fMSAAEnabled) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00002044 GL_CALL(Enable(GR_GL_MULTISAMPLE));
egdanielb414f252014-07-29 13:15:47 -07002045 fMSAAEnabled = kYes_TriState;
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00002046 }
2047 } else {
egdanielb414f252014-07-29 13:15:47 -07002048 if (kNo_TriState != fMSAAEnabled) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00002049 GL_CALL(Disable(GR_GL_MULTISAMPLE));
egdanielb414f252014-07-29 13:15:47 -07002050 fMSAAEnabled = kNo_TriState;
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00002051 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00002052 }
2053 }
2054 }
2055}
2056
egdaniel080e6732014-12-22 07:35:52 -08002057void GrGLGpu::flushBlend(const GrXferProcessor::BlendInfo& blendInfo) {
egdanielb414f252014-07-29 13:15:47 -07002058 // Any optimization to disable blending should have already been applied and
2059 // tweaked the coeffs to (1, 0).
egdanielc2304142014-12-11 13:15:13 -08002060
egdanielc2304142014-12-11 13:15:13 -08002061 GrBlendCoeff srcCoeff = blendInfo.fSrcBlend;
2062 GrBlendCoeff dstCoeff = blendInfo.fDstBlend;
egdanielb414f252014-07-29 13:15:47 -07002063 bool blendOff = kOne_GrBlendCoeff == srcCoeff && kZero_GrBlendCoeff == dstCoeff;
2064 if (blendOff) {
2065 if (kNo_TriState != fHWBlendState.fEnabled) {
2066 GL_CALL(Disable(GR_GL_BLEND));
2067 fHWBlendState.fEnabled = kNo_TriState;
2068 }
2069 } else {
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002070 if (kYes_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002071 GL_CALL(Enable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002072 fHWBlendState.fEnabled = kYes_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002073 }
egdanielb414f252014-07-29 13:15:47 -07002074 if (fHWBlendState.fSrcCoeff != srcCoeff ||
2075 fHWBlendState.fDstCoeff != dstCoeff) {
2076 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
2077 gXfermodeCoeff2Blend[dstCoeff]));
2078 fHWBlendState.fSrcCoeff = srcCoeff;
2079 fHWBlendState.fDstCoeff = dstCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002080 }
egdanielc2304142014-12-11 13:15:13 -08002081 GrColor blendConst = blendInfo.fBlendConstant;
egdanielb414f252014-07-29 13:15:47 -07002082 if ((BlendCoeffReferencesConstant(srcCoeff) ||
2083 BlendCoeffReferencesConstant(dstCoeff)) &&
2084 (!fHWBlendState.fConstColorValid ||
2085 fHWBlendState.fConstColor != blendConst)) {
2086 GrGLfloat c[4];
2087 GrColorToRGBAFloat(blendConst, c);
2088 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
2089 fHWBlendState.fConstColor = blendConst;
2090 fHWBlendState.fConstColorValid = true;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002091 }
2092 }
2093}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00002094
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00002095static inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00002096 static const GrGLenum gWrapModes[] = {
2097 GR_GL_CLAMP_TO_EDGE,
2098 GR_GL_REPEAT,
2099 GR_GL_MIRRORED_REPEAT
2100 };
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +00002101 GR_STATIC_ASSERT(SkShader::kTileModeCount == SK_ARRAY_COUNT(gWrapModes));
bsalomon@google.comb8670992012-07-25 21:27:09 +00002102 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
2103 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
2104 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
2105 return gWrapModes[tm];
2106}
2107
bsalomon861e1032014-12-16 07:33:49 -08002108void GrGLGpu::bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture) {
bsalomon49f085d2014-09-05 13:34:00 -07002109 SkASSERT(texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00002110
bsalomon@google.comb8670992012-07-25 21:27:09 +00002111 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
2112 // 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 +00002113 // out of the "last != next" check.
bsalomon37dd3312014-11-03 08:47:23 -08002114 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon49f085d2014-09-05 13:34:00 -07002115 if (texRT) {
bsalomon@google.com4c883782012-06-04 19:05:11 +00002116 this->onResolveRenderTarget(texRT);
2117 }
2118
bsalomon1c63bf62014-07-22 13:09:46 -07002119 uint32_t textureID = texture->getUniqueID();
2120 if (fHWBoundTextureUniqueIDs[unitIdx] != textureID) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002121 this->setTextureUnit(unitIdx);
2122 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texture->textureID()));
bsalomon1c63bf62014-07-22 13:09:46 -07002123 fHWBoundTextureUniqueIDs[unitIdx] = textureID;
bsalomon@google.com4c883782012-06-04 19:05:11 +00002124 }
2125
bsalomon@google.com4c883782012-06-04 19:05:11 +00002126 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002127 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002128 bool setAll = timestamp < this->getResetTimestamp();
2129 GrGLTexture::TexParams newTexParams;
2130
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002131 static GrGLenum glMinFilterModes[] = {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002132 GR_GL_NEAREST,
2133 GR_GL_LINEAR,
2134 GR_GL_LINEAR_MIPMAP_LINEAR
2135 };
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002136 static GrGLenum glMagFilterModes[] = {
2137 GR_GL_NEAREST,
2138 GR_GL_LINEAR,
2139 GR_GL_LINEAR
2140 };
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002141 GrTextureParams::FilterMode filterMode = params.filterMode();
bsalomonefd7d452014-10-23 14:17:46 -07002142
2143 if (GrTextureParams::kMipMap_FilterMode == filterMode) {
2144 if (!this->caps()->mipMapSupport() || GrPixelConfigIsCompressed(texture->config())) {
2145 filterMode = GrTextureParams::kBilerp_FilterMode;
2146 }
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002147 }
bsalomonefd7d452014-10-23 14:17:46 -07002148
commit-bot@chromium.org47442312013-12-19 16:18:01 +00002149 newTexParams.fMinFilter = glMinFilterModes[filterMode];
2150 newTexParams.fMagFilter = glMagFilterModes[filterMode];
skia.committer@gmail.comaeefb2a2013-07-27 07:01:06 +00002151
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002152 if (GrTextureParams::kMipMap_FilterMode == filterMode &&
bsalomonefd7d452014-10-23 14:17:46 -07002153 texture->texturePriv().mipMapsAreDirty()) {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002154 GL_CALL(GenerateMipmap(GR_GL_TEXTURE_2D));
bsalomonafbf2d62014-09-30 12:18:44 -07002155 texture->texturePriv().dirtyMipMaps(false);
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002156 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00002157
bsalomon@google.comb8670992012-07-25 21:27:09 +00002158 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
2159 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002160 memcpy(newTexParams.fSwizzleRGBA,
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002161 GrGLShaderBuilder::GetTexParamSwizzle(texture->config(), this->glCaps()),
bsalomon@google.com4c883782012-06-04 19:05:11 +00002162 sizeof(newTexParams.fSwizzleRGBA));
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002163 if (setAll || newTexParams.fMagFilter != oldTexParams.fMagFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002164 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002165 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2166 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002167 newTexParams.fMagFilter));
2168 }
2169 if (setAll || newTexParams.fMinFilter != oldTexParams.fMinFilter) {
2170 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002171 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2172 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002173 newTexParams.fMinFilter));
bsalomon@google.com4c883782012-06-04 19:05:11 +00002174 }
2175 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002176 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002177 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2178 GR_GL_TEXTURE_WRAP_S,
2179 newTexParams.fWrapS));
2180 }
2181 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002182 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002183 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2184 GR_GL_TEXTURE_WRAP_T,
2185 newTexParams.fWrapT));
2186 }
2187 if (this->glCaps().textureSwizzleSupport() &&
2188 (setAll || memcmp(newTexParams.fSwizzleRGBA,
2189 oldTexParams.fSwizzleRGBA,
2190 sizeof(newTexParams.fSwizzleRGBA)))) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002191 this->setTextureUnit(unitIdx);
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002192 if (this->glStandard() == kGLES_GrGLStandard) {
commit-bot@chromium.org6364b5e2013-08-20 20:22:52 +00002193 // ES3 added swizzle support but not GL_TEXTURE_SWIZZLE_RGBA.
2194 const GrGLenum* swizzle = newTexParams.fSwizzleRGBA;
2195 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_R, swizzle[0]));
2196 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_G, swizzle[1]));
2197 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_B, swizzle[2]));
2198 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_A, swizzle[3]));
2199 } else {
2200 GR_STATIC_ASSERT(sizeof(newTexParams.fSwizzleRGBA[0]) == sizeof(GrGLint));
2201 const GrGLint* swizzle = reinterpret_cast<const GrGLint*>(newTexParams.fSwizzleRGBA);
2202 GL_CALL(TexParameteriv(GR_GL_TEXTURE_2D, GR_GL_TEXTURE_SWIZZLE_RGBA, swizzle));
2203 }
bsalomon@google.com4c883782012-06-04 19:05:11 +00002204 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002205 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002206}
2207
bsalomon3e791242014-12-17 13:43:13 -08002208void GrGLGpu::flushDither(bool dither) {
2209 if (dither) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002210 if (kYes_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002211 GL_CALL(Enable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002212 fHWDitherEnabled = kYes_TriState;
2213 }
2214 } else {
2215 if (kNo_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002216 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002217 fHWDitherEnabled = kNo_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +00002218 }
2219 }
bsalomon3e791242014-12-17 13:43:13 -08002220}
reed@google.comac10a2d2010-12-22 21:39:39 +00002221
egdaniel080e6732014-12-22 07:35:52 -08002222void GrGLGpu::flushColorWrite(bool writeColor) {
2223 if (!writeColor) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002224 if (kNo_TriState != fHWWriteToColor) {
2225 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
2226 GR_GL_FALSE, GR_GL_FALSE));
2227 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002228 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002229 } else {
2230 if (kYes_TriState != fHWWriteToColor) {
2231 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
2232 fHWWriteToColor = kYes_TriState;
2233 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00002234 }
bsalomon3e791242014-12-17 13:43:13 -08002235}
bsalomon@google.comd302f142011-03-03 13:54:13 +00002236
bsalomon3e791242014-12-17 13:43:13 -08002237void GrGLGpu::flushDrawFace(GrDrawState::DrawFace face) {
2238 if (fHWDrawFace != face) {
2239 switch (face) {
tomhudson@google.com93813632011-10-27 20:21:16 +00002240 case GrDrawState::kCCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002241 GL_CALL(Enable(GR_GL_CULL_FACE));
2242 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002243 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002244 case GrDrawState::kCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002245 GL_CALL(Enable(GR_GL_CULL_FACE));
2246 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002247 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002248 case GrDrawState::kBoth_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002249 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002250 break;
2251 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +00002252 SkFAIL("Unknown draw face.");
bsalomon@google.comd302f142011-03-03 13:54:13 +00002253 }
bsalomon3e791242014-12-17 13:43:13 -08002254 fHWDrawFace = face;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002255 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002256}
2257
bsalomon861e1032014-12-16 07:33:49 -08002258bool GrGLGpu::configToGLFormats(GrPixelConfig config,
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002259 bool getSizedInternalFormat,
2260 GrGLenum* internalFormat,
2261 GrGLenum* externalFormat,
2262 GrGLenum* externalType) {
2263 GrGLenum dontCare;
2264 if (NULL == internalFormat) {
2265 internalFormat = &dontCare;
2266 }
2267 if (NULL == externalFormat) {
2268 externalFormat = &dontCare;
2269 }
2270 if (NULL == externalType) {
2271 externalType = &dontCare;
2272 }
2273
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002274 if(!this->glCaps().isConfigTexturable(config)) {
2275 return false;
2276 }
2277
reed@google.comac10a2d2010-12-22 21:39:39 +00002278 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00002279 case kRGBA_8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +00002280 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002281 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002282 if (getSizedInternalFormat) {
2283 *internalFormat = GR_GL_RGBA8;
2284 } else {
2285 *internalFormat = GR_GL_RGBA;
2286 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002287 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002288 break;
bsalomon@google.com0342a852012-08-20 19:22:38 +00002289 case kBGRA_8888_GrPixelConfig:
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002290 if (this->glCaps().bgraIsInternalFormat()) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002291 if (getSizedInternalFormat) {
2292 *internalFormat = GR_GL_BGRA8;
2293 } else {
2294 *internalFormat = GR_GL_BGRA;
2295 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002296 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002297 if (getSizedInternalFormat) {
2298 *internalFormat = GR_GL_RGBA8;
2299 } else {
2300 *internalFormat = GR_GL_RGBA;
2301 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002302 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002303 *externalFormat = GR_GL_BGRA;
bsalomon@google.com6f379512011-11-16 20:36:03 +00002304 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002305 break;
jvanverthfa1e8a72014-12-22 08:31:49 -08002306 case kSRGBA_8888_GrPixelConfig:
2307 *internalFormat = GR_GL_SRGB_ALPHA;
2308 *externalFormat = GR_GL_SRGB_ALPHA;
2309 if (getSizedInternalFormat) {
2310 *internalFormat = GR_GL_SRGB8_ALPHA8;
2311 } else {
2312 *internalFormat = GR_GL_SRGB_ALPHA;
2313 }
2314 *externalType = GR_GL_UNSIGNED_BYTE;
2315 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002316 case kRGB_565_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002317 *internalFormat = GR_GL_RGB;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002318 *externalFormat = GR_GL_RGB;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002319 if (getSizedInternalFormat) {
jvanverth3f801cb2014-12-16 09:49:38 -08002320 if (!this->glCaps().ES2CompatibilitySupport()) {
2321 *internalFormat = GR_GL_RGB5;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002322 } else {
2323 *internalFormat = GR_GL_RGB565;
2324 }
2325 } else {
2326 *internalFormat = GR_GL_RGB;
2327 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002328 *externalType = GR_GL_UNSIGNED_SHORT_5_6_5;
reed@google.comac10a2d2010-12-22 21:39:39 +00002329 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002330 case kRGBA_4444_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002331 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002332 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002333 if (getSizedInternalFormat) {
2334 *internalFormat = GR_GL_RGBA4;
2335 } else {
2336 *internalFormat = GR_GL_RGBA;
2337 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002338 *externalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
reed@google.comac10a2d2010-12-22 21:39:39 +00002339 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002340 case kIndex_8_GrPixelConfig:
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002341 // no sized/unsized internal format distinction here
2342 *internalFormat = GR_GL_PALETTE8_RGBA8;
reed@google.comac10a2d2010-12-22 21:39:39 +00002343 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002344 case kAlpha_8_GrPixelConfig:
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002345 if (this->glCaps().textureRedSupport()) {
2346 *internalFormat = GR_GL_RED;
2347 *externalFormat = GR_GL_RED;
2348 if (getSizedInternalFormat) {
2349 *internalFormat = GR_GL_R8;
2350 } else {
2351 *internalFormat = GR_GL_RED;
2352 }
2353 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002354 } else {
2355 *internalFormat = GR_GL_ALPHA;
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002356 *externalFormat = GR_GL_ALPHA;
2357 if (getSizedInternalFormat) {
2358 *internalFormat = GR_GL_ALPHA8;
2359 } else {
2360 *internalFormat = GR_GL_ALPHA;
2361 }
2362 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002363 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002364 break;
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002365 case kETC1_GrPixelConfig:
2366 *internalFormat = GR_GL_COMPRESSED_RGB8_ETC1;
2367 break;
2368 case kLATC_GrPixelConfig:
2369 switch(this->glCaps().latcAlias()) {
2370 case GrGLCaps::kLATC_LATCAlias:
2371 *internalFormat = GR_GL_COMPRESSED_LUMINANCE_LATC1;
2372 break;
2373 case GrGLCaps::kRGTC_LATCAlias:
2374 *internalFormat = GR_GL_COMPRESSED_RED_RGTC1;
2375 break;
2376 case GrGLCaps::k3DC_LATCAlias:
2377 *internalFormat = GR_GL_COMPRESSED_3DC_X;
2378 break;
2379 }
2380 break;
krajcevski238b4562014-06-30 09:09:22 -07002381 case kR11_EAC_GrPixelConfig:
2382 *internalFormat = GR_GL_COMPRESSED_R11;
2383 break;
krajcevski7ef21622014-07-16 15:21:13 -07002384
2385 case kASTC_12x12_GrPixelConfig:
2386 *internalFormat = GR_GL_COMPRESSED_RGBA_ASTC_12x12;
2387 break;
2388
joshualittee5da552014-07-16 13:32:56 -07002389 case kRGBA_float_GrPixelConfig:
2390 *internalFormat = GR_GL_RGBA32F;
2391 *externalFormat = GR_GL_RGBA;
2392 *externalType = GR_GL_FLOAT;
2393 break;
krajcevski7ef21622014-07-16 15:21:13 -07002394
jvanverth28f9c602014-12-05 13:06:35 -08002395 case kAlpha_half_GrPixelConfig:
jvanverth1334c212014-12-18 05:44:55 -08002396 if (this->glCaps().textureRedSupport()) {
2397 if (getSizedInternalFormat) {
2398 *internalFormat = GR_GL_R16F;
2399 } else {
2400 *internalFormat = GR_GL_RED;
2401 }
jvanverth28f9c602014-12-05 13:06:35 -08002402 *externalFormat = GR_GL_RED;
jvanverth1334c212014-12-18 05:44:55 -08002403 } else {
2404 if (getSizedInternalFormat) {
2405 *internalFormat = GR_GL_ALPHA16F;
2406 } else {
2407 *internalFormat = GR_GL_ALPHA;
2408 }
2409 *externalFormat = GR_GL_ALPHA;
2410 }
2411 if (kGL_GrGLStandard == this->glStandard() || this->glVersion() >= GR_GL_VER(3, 0)) {
jvanvertha60b2ea2014-12-12 05:58:06 -08002412 *externalType = GR_GL_HALF_FLOAT;
jvanverth28f9c602014-12-05 13:06:35 -08002413 } else {
jvanverth1334c212014-12-18 05:44:55 -08002414 *externalType = GR_GL_HALF_FLOAT_OES;
jvanverth28f9c602014-12-05 13:06:35 -08002415 }
2416 break;
2417
reed@google.comac10a2d2010-12-22 21:39:39 +00002418 default:
2419 return false;
2420 }
2421 return true;
2422}
2423
bsalomon861e1032014-12-16 07:33:49 -08002424void GrGLGpu::setTextureUnit(int unit) {
bsalomon1c63bf62014-07-22 13:09:46 -07002425 SkASSERT(unit >= 0 && unit < fHWBoundTextureUniqueIDs.count());
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002426 if (unit != fHWActiveTextureUnitIdx) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002427 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00002428 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002429 }
2430}
bsalomon@google.com316f99232011-01-13 21:28:12 +00002431
bsalomon861e1032014-12-16 07:33:49 -08002432void GrGLGpu::setScratchTextureUnit() {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002433 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
bsalomon1c63bf62014-07-22 13:09:46 -07002434 int lastUnitIdx = fHWBoundTextureUniqueIDs.count() - 1;
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002435 if (lastUnitIdx != fHWActiveTextureUnitIdx) {
2436 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx));
2437 fHWActiveTextureUnitIdx = lastUnitIdx;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002438 }
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002439 // clear out the this field so that if a program does use this unit it will rebind the correct
2440 // texture.
bsalomon1c63bf62014-07-22 13:09:46 -07002441 fHWBoundTextureUniqueIDs[lastUnitIdx] = SK_InvalidUniqueID;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002442}
2443
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002444namespace {
2445// Determines whether glBlitFramebuffer could be used between src and dst.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002446inline bool can_blit_framebuffer(const GrSurface* dst,
2447 const GrSurface* src,
bsalomon861e1032014-12-16 07:33:49 -08002448 const GrGLGpu* gpu,
bsalomon@google.comeb851172013-04-15 13:51:00 +00002449 bool* wouldNeedTempFBO = NULL) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002450 if (gpu->glCaps().isConfigRenderable(dst->config(), dst->desc().fSampleCnt > 0) &&
2451 gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon@google.com347c3822013-05-01 20:10:01 +00002452 gpu->glCaps().usesMSAARenderBuffers()) {
commit-bot@chromium.orga8e5a062013-09-05 23:44:09 +00002453 // ES3 doesn't allow framebuffer blits when the src has MSAA and the configs don't match
2454 // or the rects are not the same (not just the same size but have the same edges).
2455 if (GrGLCaps::kES_3_0_MSFBOType == gpu->glCaps().msFBOType() &&
2456 (src->desc().fSampleCnt > 0 || src->config() != dst->config())) {
2457 return false;
2458 }
bsalomon49f085d2014-09-05 13:34:00 -07002459 if (wouldNeedTempFBO) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002460 *wouldNeedTempFBO = NULL == dst->asRenderTarget() || NULL == src->asRenderTarget();
2461 }
2462 return true;
2463 } else {
2464 return false;
2465 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002466}
bsalomon@google.comeb851172013-04-15 13:51:00 +00002467
2468inline bool can_copy_texsubimage(const GrSurface* dst,
2469 const GrSurface* src,
bsalomon861e1032014-12-16 07:33:49 -08002470 const GrGLGpu* gpu,
bsalomon@google.comeb851172013-04-15 13:51:00 +00002471 bool* wouldNeedTempFBO = NULL) {
2472 // Table 3.9 of the ES2 spec indicates the supported formats with CopyTexSubImage
2473 // and BGRA isn't in the spec. There doesn't appear to be any extension that adds it. Perhaps
2474 // many drivers would allow it to work, but ANGLE does not.
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002475 if (kGLES_GrGLStandard == gpu->glStandard() && gpu->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00002476 (kBGRA_8888_GrPixelConfig == dst->config() || kBGRA_8888_GrPixelConfig == src->config())) {
2477 return false;
2478 }
2479 const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget());
2480 // If dst is multisampled (and uses an extension where there is a separate MSAA renderbuffer)
2481 // then we don't want to copy to the texture but to the MSAA buffer.
bsalomon49f085d2014-09-05 13:34:00 -07002482 if (dstRT && dstRT->renderFBOID() != dstRT->textureFBOID()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002483 return false;
2484 }
bsalomon@google.coma2719852013-04-17 14:25:27 +00002485 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2486 // If the src is multisampled (and uses an extension where there is a separate MSAA
2487 // renderbuffer) then it is an invalid operation to call CopyTexSubImage
bsalomon49f085d2014-09-05 13:34:00 -07002488 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomon@google.coma2719852013-04-17 14:25:27 +00002489 return false;
2490 }
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002491 if (gpu->glCaps().isConfigRenderable(src->config(), src->desc().fSampleCnt > 0) &&
bsalomon49f085d2014-09-05 13:34:00 -07002492 dst->asTexture() &&
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +00002493 dst->origin() == src->origin() &&
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00002494 !GrPixelConfigIsCompressed(src->config())) {
bsalomon49f085d2014-09-05 13:34:00 -07002495 if (wouldNeedTempFBO) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002496 *wouldNeedTempFBO = NULL == src->asRenderTarget();
2497 }
2498 return true;
2499 } else {
2500 return false;
2501 }
2502}
2503
robertphillips754f4e92014-09-18 13:52:08 -07002504}
2505
bsalomon@google.comeb851172013-04-15 13:51:00 +00002506// If a temporary FBO was created, its non-zero ID is returned. The viewport that the copy rect is
2507// relative to is output.
bsalomon861e1032014-12-16 07:33:49 -08002508GrGLuint GrGLGpu::bindSurfaceAsFBO(GrSurface* surface, GrGLenum fboTarget, GrGLIRect* viewport) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002509 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
2510 GrGLuint tempFBOID;
2511 if (NULL == rt) {
bsalomon49f085d2014-09-05 13:34:00 -07002512 SkASSERT(surface->asTexture());
bsalomon@google.comeb851172013-04-15 13:51:00 +00002513 GrGLuint texID = static_cast<GrGLTexture*>(surface->asTexture())->textureID();
robertphillips754f4e92014-09-18 13:52:08 -07002514 GR_GL_CALL(this->glInterface(), GenFramebuffers(1, &tempFBOID));
2515 fGPUStats.incRenderTargetBinds();
2516 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, tempFBOID));
2517 GR_GL_CALL(this->glInterface(), FramebufferTexture2D(fboTarget,
2518 GR_GL_COLOR_ATTACHMENT0,
2519 GR_GL_TEXTURE_2D,
2520 texID,
2521 0));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002522 viewport->fLeft = 0;
2523 viewport->fBottom = 0;
2524 viewport->fWidth = surface->width();
2525 viewport->fHeight = surface->height();
2526 } else {
2527 tempFBOID = 0;
robertphillips754f4e92014-09-18 13:52:08 -07002528 fGPUStats.incRenderTargetBinds();
2529 GR_GL_CALL(this->glInterface(), BindFramebuffer(fboTarget, rt->renderFBOID()));
bsalomon@google.comeb851172013-04-15 13:51:00 +00002530 *viewport = rt->getViewport();
2531 }
2532 return tempFBOID;
2533}
2534
bsalomon861e1032014-12-16 07:33:49 -08002535bool GrGLGpu::initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) {
bsalomonf90a02b2014-11-26 12:28:00 -08002536 // In here we look for opportunities to use CopyTexSubImage, or fbo blit. If neither are
2537 // possible and we return false to fallback to creating a render target dst for render-to-
2538 // texture. This code prefers CopyTexSubImage to fbo blit and avoids triggering temporary fbo
2539 // creation. It isn't clear that avoiding temporary fbo creation is actually optimal.
2540
bsalomon@google.comeb851172013-04-15 13:51:00 +00002541 // Check for format issues with glCopyTexSubImage2D
commit-bot@chromium.org9e90aed2014-01-16 16:35:09 +00002542 if (kGLES_GrGLStandard == this->glStandard() && this->glCaps().bgraIsInternalFormat() &&
bsalomon@google.comeb851172013-04-15 13:51:00 +00002543 kBGRA_8888_GrPixelConfig == src->config()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002544 // glCopyTexSubImage2D doesn't work with this config. If the bgra can be used with fbo blit
2545 // then we set up for that, otherwise fail.
2546 if (this->caps()->isConfigRenderable(kBGRA_8888_GrPixelConfig, false)) {
2547 desc->fOrigin = kDefault_GrSurfaceOrigin;
2548 desc->fFlags = kRenderTarget_GrSurfaceFlag | kNoStencil_GrSurfaceFlag;
2549 desc->fConfig = kBGRA_8888_GrPixelConfig;
2550 return true;
2551 }
2552 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002553 } else if (NULL == src->asRenderTarget()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002554 // CopyTexSubImage2D or fbo blit would require creating a temp fbo for the src.
2555 return false;
bsalomon@google.coma2719852013-04-17 14:25:27 +00002556 }
2557
2558 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
bsalomon49f085d2014-09-05 13:34:00 -07002559 if (srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
bsalomonf90a02b2014-11-26 12:28:00 -08002560 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer. Set up for FBO blit or
2561 // fail.
2562 if (this->caps()->isConfigRenderable(src->config(), false)) {
2563 desc->fOrigin = kDefault_GrSurfaceOrigin;
2564 desc->fFlags = kRenderTarget_GrSurfaceFlag | kNoStencil_GrSurfaceFlag;
2565 desc->fConfig = src->config();
2566 return true;
2567 }
2568 return false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002569 }
bsalomonf90a02b2014-11-26 12:28:00 -08002570
2571 // We'll do a CopyTexSubImage. Make the dst a plain old texture.
2572 desc->fConfig = src->config();
2573 desc->fOrigin = src->origin();
2574 desc->fFlags = kNone_GrSurfaceFlags;
2575 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002576}
2577
bsalomon861e1032014-12-16 07:33:49 -08002578bool GrGLGpu::copySurface(GrSurface* dst,
joshualitta7024152014-11-03 14:16:35 -08002579 GrSurface* src,
2580 const SkIRect& srcRect,
2581 const SkIPoint& dstPoint) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002582 bool copied = false;
joshualitta7024152014-11-03 14:16:35 -08002583 if (can_copy_texsubimage(dst, src, this)) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002584 GrGLuint srcFBO;
2585 GrGLIRect srcVP;
robertphillips754f4e92014-09-18 13:52:08 -07002586 srcFBO = this->bindSurfaceAsFBO(src, GR_GL_FRAMEBUFFER, &srcVP);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002587 GrGLTexture* dstTex = static_cast<GrGLTexture*>(dst->asTexture());
bsalomon49f085d2014-09-05 13:34:00 -07002588 SkASSERT(dstTex);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002589 // We modified the bound FBO
bsalomon1c63bf62014-07-22 13:09:46 -07002590 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002591 GrGLIRect srcGLRect;
2592 srcGLRect.setRelativeTo(srcVP,
2593 srcRect.fLeft,
2594 srcRect.fTop,
2595 srcRect.width(),
2596 srcRect.height(),
2597 src->origin());
2598
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002599 this->setScratchTextureUnit();
bsalomon@google.comeb851172013-04-15 13:51:00 +00002600 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, dstTex->textureID()));
2601 GrGLint dstY;
2602 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
2603 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
2604 } else {
2605 dstY = dstPoint.fY;
2606 }
2607 GL_CALL(CopyTexSubImage2D(GR_GL_TEXTURE_2D, 0,
2608 dstPoint.fX, dstY,
2609 srcGLRect.fLeft, srcGLRect.fBottom,
2610 srcGLRect.fWidth, srcGLRect.fHeight));
2611 copied = true;
2612 if (srcFBO) {
2613 GL_CALL(DeleteFramebuffers(1, &srcFBO));
2614 }
joshualitta7024152014-11-03 14:16:35 -08002615 } else if (can_blit_framebuffer(dst, src, this)) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002616 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2617 srcRect.width(), srcRect.height());
2618 bool selfOverlap = false;
bsalomona2c23232014-11-25 07:41:12 -08002619 if (dst == src) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002620 selfOverlap = SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect);
2621 }
2622
2623 if (!selfOverlap) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002624 GrGLuint dstFBO;
2625 GrGLuint srcFBO;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002626 GrGLIRect dstVP;
2627 GrGLIRect srcVP;
robertphillips754f4e92014-09-18 13:52:08 -07002628 dstFBO = this->bindSurfaceAsFBO(dst, GR_GL_DRAW_FRAMEBUFFER, &dstVP);
2629 srcFBO = this->bindSurfaceAsFBO(src, GR_GL_READ_FRAMEBUFFER, &srcVP);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002630 // We modified the bound FBO
bsalomon1c63bf62014-07-22 13:09:46 -07002631 fHWBoundRenderTargetUniqueID = SK_InvalidUniqueID;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002632 GrGLIRect srcGLRect;
2633 GrGLIRect dstGLRect;
2634 srcGLRect.setRelativeTo(srcVP,
2635 srcRect.fLeft,
2636 srcRect.fTop,
2637 srcRect.width(),
2638 srcRect.height(),
2639 src->origin());
2640 dstGLRect.setRelativeTo(dstVP,
2641 dstRect.fLeft,
2642 dstRect.fTop,
2643 dstRect.width(),
2644 dstRect.height(),
2645 dst->origin());
2646
derekf8c8f71a2014-09-16 06:24:57 -07002647 // BlitFrameBuffer respects the scissor, so disable it.
joshualitt77b13072014-10-27 14:51:01 -07002648 this->disableScissor();
derekf8c8f71a2014-09-16 06:24:57 -07002649
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002650 GrGLint srcY0;
2651 GrGLint srcY1;
2652 // Does the blit need to y-mirror or not?
2653 if (src->origin() == dst->origin()) {
2654 srcY0 = srcGLRect.fBottom;
2655 srcY1 = srcGLRect.fBottom + srcGLRect.fHeight;
2656 } else {
2657 srcY0 = srcGLRect.fBottom + srcGLRect.fHeight;
2658 srcY1 = srcGLRect.fBottom;
2659 }
2660 GL_CALL(BlitFramebuffer(srcGLRect.fLeft,
2661 srcY0,
2662 srcGLRect.fLeft + srcGLRect.fWidth,
2663 srcY1,
2664 dstGLRect.fLeft,
2665 dstGLRect.fBottom,
2666 dstGLRect.fLeft + dstGLRect.fWidth,
2667 dstGLRect.fBottom + dstGLRect.fHeight,
2668 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
2669 if (dstFBO) {
2670 GL_CALL(DeleteFramebuffers(1, &dstFBO));
2671 }
2672 if (srcFBO) {
2673 GL_CALL(DeleteFramebuffers(1, &srcFBO));
2674 }
2675 copied = true;
2676 }
2677 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002678 return copied;
2679}
2680
bsalomon861e1032014-12-16 07:33:49 -08002681bool GrGLGpu::canCopySurface(const GrSurface* dst,
joshualitt9853cce2014-11-17 14:22:48 -08002682 const GrSurface* src,
joshualitta7024152014-11-03 14:16:35 -08002683 const SkIRect& srcRect,
2684 const SkIPoint& dstPoint) {
2685 // This mirrors the logic in onCopySurface. We prefer our base makes the copy if we need to
bsalomonf90a02b2014-11-26 12:28:00 -08002686 // create a temp fbo. TODO verify the assumption that temp fbos are expensive; it may not be
2687 // true at all.
joshualitta7024152014-11-03 14:16:35 -08002688 bool wouldNeedTempFBO = false;
2689 if (can_copy_texsubimage(dst, src, this, &wouldNeedTempFBO) && !wouldNeedTempFBO) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002690 return true;
2691 }
joshualitta7024152014-11-03 14:16:35 -08002692 if (can_blit_framebuffer(dst, src, this, &wouldNeedTempFBO) && !wouldNeedTempFBO) {
bsalomona2c23232014-11-25 07:41:12 -08002693 if (dst == src) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002694 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2695 srcRect.width(), srcRect.height());
2696 if(!SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) {
2697 return true;
2698 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002699 } else {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002700 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002701 }
2702 }
joshualitta7024152014-11-03 14:16:35 -08002703 return false;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002704}
2705
bsalomon861e1032014-12-16 07:33:49 -08002706void GrGLGpu::didAddGpuTraceMarker() {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002707 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00002708 const GrTraceMarkerSet& markerArray = this->getActiveTraceMarkers();
egdanield78a1682014-07-09 10:41:26 -07002709 SkString markerString = markerArray.toStringLast();
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00002710 GL_CALL(PushGroupMarker(0, markerString.c_str()));
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002711 }
2712}
2713
bsalomon861e1032014-12-16 07:33:49 -08002714void GrGLGpu::didRemoveGpuTraceMarker() {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002715 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +00002716 GL_CALL(PopGroupMarker());
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00002717 }
2718}
joshualitt79f8fae2014-10-28 17:59:26 -07002719
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002720///////////////////////////////////////////////////////////////////////////////
2721
bsalomon861e1032014-12-16 07:33:49 -08002722GrGLAttribArrayState* GrGLGpu::HWGeometryState::bindArrayAndBuffersToDraw(
2723 GrGLGpu* gpu,
bsalomon@google.com6918d482013-03-07 19:09:11 +00002724 const GrGLVertexBuffer* vbuffer,
2725 const GrGLIndexBuffer* ibuffer) {
bsalomon49f085d2014-09-05 13:34:00 -07002726 SkASSERT(vbuffer);
robertphillips@google.com4f65a272013-03-26 19:40:46 +00002727 GrGLAttribArrayState* attribState;
2728
bsalomon@google.com6918d482013-03-07 19:09:11 +00002729 // We use a vertex array if we're on a core profile and the verts are in a VBO.
2730 if (gpu->glCaps().isCoreProfile() && !vbuffer->isCPUBacked()) {
commit-bot@chromium.org089a7802014-05-02 21:38:22 +00002731 if (NULL == fVBOVertexArray || fVBOVertexArray->wasDestroyed()) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00002732 SkSafeUnref(fVBOVertexArray);
2733 GrGLuint arrayID;
2734 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID));
2735 int attrCount = gpu->glCaps().maxVertexAttributes();
2736 fVBOVertexArray = SkNEW_ARGS(GrGLVertexArray, (gpu, arrayID, attrCount));
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002737 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002738 attribState = fVBOVertexArray->bindWithIndexBuffer(ibuffer);
2739 } else {
bsalomon49f085d2014-09-05 13:34:00 -07002740 if (ibuffer) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00002741 this->setIndexBufferIDOnDefaultVertexArray(gpu, ibuffer->bufferID());
2742 } else {
2743 this->setVertexArrayID(gpu, 0);
2744 }
2745 int attrCount = gpu->glCaps().maxVertexAttributes();
2746 if (fDefaultVertexArrayAttribState.count() != attrCount) {
2747 fDefaultVertexArrayAttribState.resize(attrCount);
2748 }
2749 attribState = &fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002750 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002751 return attribState;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002752}