blob: 98db317109d79c8360eaa1d7ef5848f82a420c47 [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
reed@google.comac10a2d2010-12-22 21:39:39 +00009#include "GrGpuGL.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000010#include "GrGLStencilBuffer.h"
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000011#include "GrGLPath.h"
bsalomon@google.com6d003d12012-09-11 15:45:20 +000012#include "GrGLShaderBuilder.h"
bsalomon@google.coma3201942012-06-21 19:58:20 +000013#include "GrTemplates.h"
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +000014#include "GrTypes.h"
bsalomon@google.com3582bf92011-06-30 21:32:31 +000015#include "SkTemplates.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000016
caryclark@google.comcf6285b2012-06-06 12:09:01 +000017static const GrGLuint GR_MAX_GLUINT = ~0U;
twiz@google.com0f31ca72011-03-18 17:38:11 +000018static const GrGLint GR_INVAL_GLINT = ~0;
reed@google.comac10a2d2010-12-22 21:39:39 +000019
bsalomon@google.com0b77d682011-08-19 13:28:54 +000020#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +000021#define GL_CALL_RET(RET, X) GR_GL_CALL_RET(this->glInterface(), RET, X)
bsalomon@google.com0b77d682011-08-19 13:28:54 +000022
bsalomon@google.com8531c1c2011-01-13 19:52:45 +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
twiz@google.com0f31ca72011-03-18 17:38:11 +000039static const GrGLenum gXfermodeCoeff2Blend[] = {
40 GR_GL_ZERO,
41 GR_GL_ONE,
42 GR_GL_SRC_COLOR,
43 GR_GL_ONE_MINUS_SRC_COLOR,
44 GR_GL_DST_COLOR,
45 GR_GL_ONE_MINUS_DST_COLOR,
46 GR_GL_SRC_ALPHA,
47 GR_GL_ONE_MINUS_SRC_ALPHA,
48 GR_GL_DST_ALPHA,
49 GR_GL_ONE_MINUS_DST_ALPHA,
50 GR_GL_CONSTANT_COLOR,
51 GR_GL_ONE_MINUS_CONSTANT_COLOR,
52 GR_GL_CONSTANT_ALPHA,
53 GR_GL_ONE_MINUS_CONSTANT_ALPHA,
bsalomon@google.com271cffc2011-05-20 14:13:56 +000054
55 // extended blend coeffs
56 GR_GL_SRC1_COLOR,
57 GR_GL_ONE_MINUS_SRC1_COLOR,
58 GR_GL_SRC1_ALPHA,
59 GR_GL_ONE_MINUS_SRC1_ALPHA,
reed@google.comac10a2d2010-12-22 21:39:39 +000060};
61
bsalomon@google.com271cffc2011-05-20 14:13:56 +000062bool GrGpuGL::BlendCoeffReferencesConstant(GrBlendCoeff coeff) {
bsalomon@google.com080773c2011-03-15 19:09:25 +000063 static const bool gCoeffReferencesBlendConst[] = {
64 false,
65 false,
66 false,
67 false,
68 false,
69 false,
70 false,
71 false,
72 false,
73 false,
74 true,
75 true,
76 true,
77 true,
bsalomon@google.com271cffc2011-05-20 14:13:56 +000078
79 // extended blend coeffs
80 false,
81 false,
82 false,
83 false,
bsalomon@google.com080773c2011-03-15 19:09:25 +000084 };
85 return gCoeffReferencesBlendConst[coeff];
bsalomon@google.com47059542012-06-06 20:51:20 +000086 GR_STATIC_ASSERT(kTotalGrBlendCoeffCount ==
87 GR_ARRAY_COUNT(gCoeffReferencesBlendConst));
bsalomon@google.com271cffc2011-05-20 14:13:56 +000088
bsalomon@google.com47059542012-06-06 20:51:20 +000089 GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff);
90 GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff);
91 GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff);
92 GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff);
93 GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff);
94 GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff);
95 GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff);
96 GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff);
97 GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff);
98 GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff);
99 GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff);
100 GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff);
101 GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff);
102 GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000103
bsalomon@google.com47059542012-06-06 20:51:20 +0000104 GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff);
105 GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff);
106 GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff);
107 GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000108
109 // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope
bsalomon@google.com47059542012-06-06 20:51:20 +0000110 GR_STATIC_ASSERT(kTotalGrBlendCoeffCount ==
111 GR_ARRAY_COUNT(gXfermodeCoeff2Blend));
bsalomon@google.com080773c2011-03-15 19:09:25 +0000112}
113
reed@google.comac10a2d2010-12-22 21:39:39 +0000114///////////////////////////////////////////////////////////////////////////////
115
rileya@google.come38160c2012-07-03 18:03:04 +0000116static bool gPrintStartupSpew;
bsalomon@google.com42ab7ea2011-01-19 17:19:40 +0000117
robertphillips@google.com6177e692013-02-28 20:16:25 +0000118GrGpuGL::GrGpuGL(const GrGLContext& ctx, GrContext* context)
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000119 : GrGpu(context)
robertphillips@google.com6177e692013-02-28 20:16:25 +0000120 , fGLContext(ctx) {
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000121
robertphillips@google.com6177e692013-02-28 20:16:25 +0000122 GrAssert(ctx.isInitialized());
tomhudson@google.com747bf292011-06-14 18:16:52 +0000123
bsalomon@google.combcce8922013-03-25 15:38:39 +0000124 fCaps.reset(SkRef(ctx.info().caps()));
125
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000126 fHWBoundTextures.reset(ctx.info().caps()->maxFragmentTextureUnits());
127
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000128 fillInConfigRenderableTable();
129
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000130
robertphillips@google.com6177e692013-02-28 20:16:25 +0000131 GrGLClearErr(fGLContext.interface());
reed@google.comac10a2d2010-12-22 21:39:39 +0000132
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000133 if (gPrintStartupSpew) {
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000134 const GrGLubyte* vendor;
135 const GrGLubyte* renderer;
136 const GrGLubyte* version;
137 GL_CALL_RET(vendor, GetString(GR_GL_VENDOR));
138 GL_CALL_RET(renderer, GetString(GR_GL_RENDERER));
139 GL_CALL_RET(version, GetString(GR_GL_VERSION));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000140 GrPrintf("------------------------- create GrGpuGL %p --------------\n",
141 this);
142 GrPrintf("------ VENDOR %s\n", vendor);
143 GrPrintf("------ RENDERER %s\n", renderer);
144 GrPrintf("------ VERSION %s\n", version);
bsalomon@google.com00142c42013-05-02 19:42:54 +0000145 GrPrintf("------ EXTENSIONS\n");
146 ctx.info().extensions().print();
147 GrPrintf("\n");
bsalomon@google.combcce8922013-03-25 15:38:39 +0000148 ctx.info().caps()->print();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000149 }
150
robertphillips@google.com6177e692013-02-28 20:16:25 +0000151 fProgramCache = SkNEW_ARGS(ProgramCache, (this->glContext()));
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000152
jvanverth@google.com054ae992013-04-01 20:06:51 +0000153 GrAssert(this->glCaps().maxVertexAttributes() >= GrDrawState::kMaxVertexAttribCnt);
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000154
bsalomon@google.comfe676522011-06-17 18:12:21 +0000155 fLastSuccessfulStencilFmtIdx = 0;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000156 fHWProgramID = 0;
reed@google.comac10a2d2010-12-22 21:39:39 +0000157}
158
159GrGpuGL::~GrGpuGL() {
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
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000163 GrAssert(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;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000168
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000169 // This must be called by before the GrDrawTarget destructor
170 this->releaseGeometry();
bsalomon@google.com15b11df2011-09-16 21:18:29 +0000171 // This subclass must do this before the base class destructor runs
172 // since we will unref the GrGLInterface.
173 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +0000174}
175
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000176///////////////////////////////////////////////////////////////////////////////
177
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000178void GrGpuGL::fillInConfigRenderableTable() {
179
180 // OpenGL < 3.0
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000181 // no support for render targets unless the GL_ARB_framebuffer_object
182 // extension is supported (in which case we get ALPHA, RED, RG, RGB,
183 // RGBA (ALPHA8, RGBA4, RGBA8) for OpenGL > 1.1). Note that we
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000184 // probably don't get R8 in this case.
185
186 // OpenGL 3.0
187 // base color renderable: ALPHA, RED, RG, RGB, and RGBA
188 // sized derivatives: ALPHA8, R8, RGBA4, RGBA8
189
190 // >= OpenGL 3.1
191 // base color renderable: RED, RG, RGB, and RGBA
192 // sized derivatives: R8, RGBA4, RGBA8
193 // if the GL_ARB_compatibility extension is supported then we get back
194 // support for GL_ALPHA and ALPHA8
195
196 // GL_EXT_bgra adds BGRA render targets to any version
197
198 // ES 2.0
199 // color renderable: RGBA4, RGB5_A1, RGB565
200 // GL_EXT_texture_rg adds support for R8 as a color render target
201 // GL_OES_rgb8_rgba8 and/or GL_ARM_rgba8 adds support for RGBA8
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000202 // GL_EXT_texture_format_BGRA8888 and/or GL_APPLE_texture_format_BGRA8888 added BGRA support
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000203
204 if (kDesktop_GrGLBinding == this->glBinding()) {
205 // Post 3.0 we will get R8
206 // Prior to 3.0 we will get ALPHA8 (with GL_ARB_framebuffer_object)
207 if (this->glVersion() >= GR_GL_VER(3,0) ||
208 this->hasExtension("GL_ARB_framebuffer_object")) {
209 fConfigRenderSupport[kAlpha_8_GrPixelConfig] = true;
210 }
211 } else {
212 // On ES we can only hope for R8
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000213 fConfigRenderSupport[kAlpha_8_GrPixelConfig] =
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000214 this->glCaps().textureRedSupport();
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000215 }
216
217 if (kDesktop_GrGLBinding != this->glBinding()) {
218 // only available in ES
219 fConfigRenderSupport[kRGB_565_GrPixelConfig] = true;
220 }
221
reed@google.com6ba45722013-06-21 18:30:53 +0000222 // we no longer support 444 as a render target
223 fConfigRenderSupport[kRGBA_4444_GrPixelConfig] = false;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000224
225 if (this->glCaps().rgba8RenderbufferSupport()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000226 fConfigRenderSupport[kRGBA_8888_GrPixelConfig] = true;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000227 }
228
229 if (this->glCaps().bgraFormatSupport()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000230 fConfigRenderSupport[kBGRA_8888_GrPixelConfig] = true;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000231 }
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000232}
233
bsalomon@google.com9c680582013-02-06 18:17:50 +0000234namespace {
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000235GrPixelConfig preferred_pixel_ops_config(GrPixelConfig cpuConfig, GrPixelConfig surfaceConfig) {
236 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == cpuConfig) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000237 return kBGRA_8888_GrPixelConfig;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000238 } else if (GrBytesPerPixel(cpuConfig) == 4 &&
239 GrPixelConfigSwapRAndB(cpuConfig) == surfaceConfig) {
240 // Mesa 3D takes a slow path on when reading back BGRA from an RGBA surface and vice-versa.
241 // Perhaps this should be guarded by some compiletime or runtime check.
242 return surfaceConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000243 } else {
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000244 return cpuConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000245 }
246}
bsalomon@google.com9c680582013-02-06 18:17:50 +0000247}
248
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000249GrPixelConfig GrGpuGL::preferredReadPixelsConfig(GrPixelConfig readConfig,
250 GrPixelConfig surfaceConfig) const {
251 return preferred_pixel_ops_config(readConfig, surfaceConfig);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000252}
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000253
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000254GrPixelConfig GrGpuGL::preferredWritePixelsConfig(GrPixelConfig writeConfig,
255 GrPixelConfig surfaceConfig) const {
256 return preferred_pixel_ops_config(writeConfig, surfaceConfig);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000257}
258
259bool GrGpuGL::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
260 if (kIndex_8_GrPixelConfig == srcConfig || kIndex_8_GrPixelConfig == texture->config()) {
261 return false;
262 }
263 if (srcConfig != texture->config() && kES2_GrGLBinding == this->glBinding()) {
264 // In general ES2 requires the internal format of the texture and the format of the src
265 // pixels to match. However, It may or may not be possible to upload BGRA data to a RGBA
266 // texture. It depends upon which extension added BGRA. The Apple extension allows it
267 // (BGRA's internal format is RGBA) while the EXT extension does not (BGRA is its own
268 // internal format).
269 if (this->glCaps().bgraFormatSupport() &&
270 !this->glCaps().bgraIsInternalFormat() &&
271 kBGRA_8888_GrPixelConfig == srcConfig &&
272 kRGBA_8888_GrPixelConfig == texture->config()) {
273 return true;
274 } else {
275 return false;
276 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000277 } else {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000278 return true;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000279 }
280}
281
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000282bool GrGpuGL::fullReadPixelsIsFasterThanPartial() const {
283 return SkToBool(GR_GL_FULL_READPIXELS_FASTER_THAN_PARTIAL);
284}
285
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000286void GrGpuGL::onResetContext(uint32_t resetBits) {
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000287 // we don't use the zb at all
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000288 if (resetBits & kMisc_GrGLBackendState) {
289 GL_CALL(Disable(GR_GL_DEPTH_TEST));
290 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000291
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000292 fHWDrawFace = GrDrawState::kInvalid_DrawFace;
293 fHWDitherEnabled = kUnknown_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000294
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000295 if (kDesktop_GrGLBinding == this->glBinding()) {
296 // Desktop-only state that we never change
297 if (!this->glCaps().isCoreProfile()) {
298 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
299 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
300 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
301 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
302 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
303 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
304 }
305 // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a
306 // core profile. This seems like a bug since the core spec removes any mention of
307 // GL_ARB_imaging.
308 if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) {
309 GL_CALL(Disable(GR_GL_COLOR_TABLE));
310 }
311 GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL));
312 // Since ES doesn't support glPointSize at all we always use the VS to
313 // set the point size
314 GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE));
315
316 // We should set glPolygonMode(FRONT_AND_BACK,FILL) here, too. It isn't
317 // currently part of our gl interface. There are probably others as
318 // well.
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000319 }
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000320 fHWWriteToColor = kUnknown_TriState;
321 // we only ever use lines in hairline mode
322 GL_CALL(LineWidth(1));
bsalomon@google.comcad107b2013-06-28 14:32:08 +0000323 }
edisonn@google.comba669992013-06-28 16:03:21 +0000324
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000325 if (resetBits & kAA_GrGLBackendState) {
326 fHWAAState.invalidate();
327 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000328
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000329 // invalid
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000330 if (resetBits & kTextureBinding_GrGLBackendState) {
331 fHWActiveTextureUnitIdx = -1;
332 for (int s = 0; s < fHWBoundTextures.count(); ++s) {
333 fHWBoundTextures[s] = NULL;
334 }
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000335 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000336
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000337 if (resetBits & kBlend_GrGLBackendState) {
338 fHWBlendState.invalidate();
339 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000340
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000341 if (resetBits & kView_GrGLBackendState) {
342 fHWScissorSettings.invalidate();
343 fHWViewport.invalidate();
344 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000345
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000346 if (resetBits & kStencil_GrGLBackendState) {
347 fHWStencilSettings.invalidate();
348 fHWStencilTestEnabled = kUnknown_TriState;
349 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000350
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000351 // Vertex
352 if (resetBits & kVertex_GrGLBackendState) {
353 fHWGeometryState.invalidate();
354 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000355
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000356 if (resetBits & kRenderTarget_GrGLBackendState) {
357 fHWBoundRenderTarget = NULL;
358 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000359
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000360 if (resetBits & kPathStencil_GrGLBackendState) {
361 fHWPathStencilMatrixState.invalidate();
362 if (this->caps()->pathStencilingSupport()) {
363 // we don't use the model view matrix.
364 GL_CALL(MatrixMode(GR_GL_MODELVIEW));
365 GL_CALL(LoadIdentity());
366 }
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000367 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000368
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000369 // we assume these values
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000370 if (resetBits & kPixelStore_GrGLBackendState) {
371 if (this->glCaps().unpackRowLengthSupport()) {
372 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
373 }
374 if (this->glCaps().packRowLengthSupport()) {
375 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
376 }
377 if (this->glCaps().unpackFlipYSupport()) {
378 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
379 }
380 if (this->glCaps().packFlipYSupport()) {
381 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
382 }
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000383 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000384
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000385 if (resetBits & kProgram_GrGLBackendState) {
386 fHWProgramID = 0;
387 fSharedGLProgramState.invalidate();
388 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000389}
390
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000391namespace {
392
393GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
394 // By default, GrRenderTargets are GL's normal orientation so that they
395 // can be drawn to by the outside world without the client having
396 // to render upside down.
397 if (kDefault_GrSurfaceOrigin == origin) {
398 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
399 } else {
400 return origin;
401 }
402}
403
404}
405
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000406GrTexture* GrGpuGL::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000407 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000408 return NULL;
409 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000410
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000411 if (0 == desc.fTextureHandle) {
412 return NULL;
413 }
414
bsalomon@google.combcce8922013-03-25 15:38:39 +0000415 int maxSize = this->caps()->maxTextureSize();
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000416 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
417 return NULL;
418 }
419
420 GrGLTexture::Desc glTexDesc;
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000421 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
robertphillips@google.com32716282012-06-04 12:48:45 +0000422 glTexDesc.fFlags = (GrTextureFlags) desc.fFlags;
bsalomon@google.com99621082011-11-15 16:47:16 +0000423 glTexDesc.fWidth = desc.fWidth;
424 glTexDesc.fHeight = desc.fHeight;
bsalomon@google.come269f212011-11-07 13:29:52 +0000425 glTexDesc.fConfig = desc.fConfig;
robertphillips@google.com32716282012-06-04 12:48:45 +0000426 glTexDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.come269f212011-11-07 13:29:52 +0000427 glTexDesc.fTextureID = static_cast<GrGLuint>(desc.fTextureHandle);
bsalomon@google.com72830222013-01-23 20:25:22 +0000428 glTexDesc.fIsWrapped = true;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000429 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrBackendTextureFlag);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000430 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
431 // assuming the old behaviour, which is that backend textures are always
432 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
433 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
434 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
435 glTexDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
436 } else {
437 glTexDesc.fOrigin = desc.fOrigin;
438 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000439
440 GrGLTexture* texture = NULL;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000441 if (renderTarget) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000442 GrGLRenderTarget::Desc glRTDesc;
443 glRTDesc.fRTFBOID = 0;
444 glRTDesc.fTexFBOID = 0;
445 glRTDesc.fMSColorRenderbufferID = 0;
bsalomon@google.come269f212011-11-07 13:29:52 +0000446 glRTDesc.fConfig = desc.fConfig;
447 glRTDesc.fSampleCnt = desc.fSampleCnt;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000448 glRTDesc.fOrigin = glTexDesc.fOrigin;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000449 glRTDesc.fCheckAllocation = false;
bsalomon@google.com99621082011-11-15 16:47:16 +0000450 if (!this->createRenderTargetObjects(glTexDesc.fWidth,
451 glTexDesc.fHeight,
bsalomon@google.come269f212011-11-07 13:29:52 +0000452 glTexDesc.fTextureID,
453 &glRTDesc)) {
454 return NULL;
455 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000456 texture = SkNEW_ARGS(GrGLTexture, (this, glTexDesc, glRTDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000457 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000458 texture = SkNEW_ARGS(GrGLTexture, (this, glTexDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000459 }
460 if (NULL == texture) {
461 return NULL;
462 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000463
bsalomon@google.come269f212011-11-07 13:29:52 +0000464 return texture;
465}
466
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000467GrRenderTarget* GrGpuGL::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000468 GrGLRenderTarget::Desc glDesc;
469 glDesc.fConfig = desc.fConfig;
470 glDesc.fRTFBOID = static_cast<GrGLuint>(desc.fRenderTargetHandle);
471 glDesc.fMSColorRenderbufferID = 0;
472 glDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
473 glDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.com72830222013-01-23 20:25:22 +0000474 glDesc.fIsWrapped = true;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000475 glDesc.fCheckAllocation = false;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000476
477 glDesc.fOrigin = resolve_origin(desc.fOrigin, true);
bsalomon@google.come269f212011-11-07 13:29:52 +0000478 GrGLIRect viewport;
479 viewport.fLeft = 0;
480 viewport.fBottom = 0;
481 viewport.fWidth = desc.fWidth;
482 viewport.fHeight = desc.fHeight;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000483
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000484 GrRenderTarget* tgt = SkNEW_ARGS(GrGLRenderTarget,
485 (this, glDesc, viewport));
bsalomon@google.come269f212011-11-07 13:29:52 +0000486 if (desc.fStencilBits) {
487 GrGLStencilBuffer::Format format;
488 format.fInternalFormat = GrGLStencilBuffer::kUnknownInternalFormat;
489 format.fPacked = false;
490 format.fStencilBits = desc.fStencilBits;
491 format.fTotalBits = desc.fStencilBits;
bsalomon@google.com1f0f1a32013-01-23 21:32:32 +0000492 static const bool kIsSBWrapped = false;
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000493 GrGLStencilBuffer* sb = SkNEW_ARGS(GrGLStencilBuffer,
494 (this,
bsalomon@google.com1f0f1a32013-01-23 21:32:32 +0000495 kIsSBWrapped,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000496 0,
497 desc.fWidth,
498 desc.fHeight,
499 desc.fSampleCnt,
500 format));
bsalomon@google.come269f212011-11-07 13:29:52 +0000501 tgt->setStencilBuffer(sb);
502 sb->unref();
503 }
504 return tgt;
505}
506
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000507////////////////////////////////////////////////////////////////////////////////
508
bsalomon@google.com9c680582013-02-06 18:17:50 +0000509bool GrGpuGL::onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000510 int left, int top, int width, int height,
511 GrPixelConfig config, const void* buffer,
512 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000513 if (NULL == buffer) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000514 return false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000515 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000516 GrGLTexture* glTex = static_cast<GrGLTexture*>(texture);
517
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000518 this->setScratchTextureUnit();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000519 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTex->textureID()));
520 GrGLTexture::Desc desc;
robertphillips@google.com32716282012-06-04 12:48:45 +0000521 desc.fFlags = glTex->desc().fFlags;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000522 desc.fWidth = glTex->width();
523 desc.fHeight = glTex->height();
robertphillips@google.com32716282012-06-04 12:48:45 +0000524 desc.fConfig = glTex->config();
525 desc.fSampleCnt = glTex->desc().fSampleCnt;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000526 desc.fTextureID = glTex->textureID();
bsalomon@google.com2d0bade2012-10-26 19:01:17 +0000527 desc.fOrigin = glTex->origin();
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000528
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +0000529 if (this->uploadTexData(desc, false,
530 left, top, width, height,
531 config, buffer, rowBytes)) {
532 texture->dirtyMipMaps(true);
533 return true;
534 } else {
535 return false;
536 }
bsalomon@google.com6f379512011-11-16 20:36:03 +0000537}
538
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000539namespace {
540bool adjust_pixel_ops_params(int surfaceWidth,
541 int surfaceHeight,
542 size_t bpp,
543 int* left, int* top, int* width, int* height,
544 const void** data,
545 size_t* rowBytes) {
546 if (!*rowBytes) {
547 *rowBytes = *width * bpp;
548 }
549
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000550 SkIRect subRect = SkIRect::MakeXYWH(*left, *top, *width, *height);
551 SkIRect bounds = SkIRect::MakeWH(surfaceWidth, surfaceHeight);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000552
553 if (!subRect.intersect(bounds)) {
554 return false;
555 }
556 *data = reinterpret_cast<const void*>(reinterpret_cast<intptr_t>(*data) +
557 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
558
559 *left = subRect.fLeft;
560 *top = subRect.fTop;
561 *width = subRect.width();
562 *height = subRect.height();
563 return true;
564}
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000565
566GrGLenum check_alloc_error(const GrTextureDesc& desc, const GrGLInterface* interface) {
567 if (SkToBool(desc.fFlags & kCheckAllocation_GrTextureFlagBit)) {
568 return GR_GL_GET_ERROR(interface);
569 } else {
570 return CHECK_ALLOC_ERROR(interface);
571 }
572}
573
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000574}
575
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000576bool GrGpuGL::uploadTexData(const GrGLTexture::Desc& desc,
577 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000578 int left, int top, int width, int height,
579 GrPixelConfig dataConfig,
580 const void* data,
581 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000582 GrAssert(NULL != data || isNewTexture);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000583
584 size_t bpp = GrBytesPerPixel(dataConfig);
585 if (!adjust_pixel_ops_params(desc.fWidth, desc.fHeight, bpp, &left, &top,
586 &width, &height, &data, &rowBytes)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000587 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000588 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000589 size_t trimRowBytes = width * bpp;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000590
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000591 // in case we need a temporary, trimmed copy of the src pixels
592 SkAutoSMalloc<128 * 128> tempStorage;
593
bsalomon@google.com313f0192012-07-10 17:21:02 +0000594 // paletted textures cannot be partially updated
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000595 bool useTexStorage = isNewTexture &&
bsalomon@google.com313f0192012-07-10 17:21:02 +0000596 desc.fConfig != kIndex_8_GrPixelConfig &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000597 this->glCaps().texStorageSupport();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000598
bsalomon@google.com313f0192012-07-10 17:21:02 +0000599 if (useTexStorage && kDesktop_GrGLBinding == this->glBinding()) {
600 // 565 is not a sized internal format on desktop GL. So on desktop with
601 // 565 we always use an unsized internal format to let the system pick
602 // the best sized format to convert the 565 data to. Since TexStorage
603 // only allows sized internal formats we will instead use TexImage2D.
604 useTexStorage = desc.fConfig != kRGB_565_GrPixelConfig;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000605 }
606
607 GrGLenum internalFormat;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000608 GrGLenum externalFormat;
609 GrGLenum externalType;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000610 // glTexStorage requires sized internal formats on both desktop and ES. ES
611 // glTexImage requires an unsized format.
612 if (!this->configToGLFormats(dataConfig, useTexStorage, &internalFormat,
613 &externalFormat, &externalType)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000614 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000615 }
616
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000617 if (!isNewTexture && GR_GL_PALETTE8_RGBA8 == internalFormat) {
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000618 // paletted textures cannot be updated
619 return false;
620 }
621
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000622 /*
bsalomon@google.com6f379512011-11-16 20:36:03 +0000623 * check whether to allocate a temporary buffer for flipping y or
624 * because our srcData has extra bytes past each row. If so, we need
625 * to trim those off here, since GL ES may not let us specify
626 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000627 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000628 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000629 bool swFlipY = false;
630 bool glFlipY = false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000631 if (NULL != data) {
senorblanco@chromium.orgef5dbe12013-01-28 16:42:38 +0000632 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000633 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000634 glFlipY = true;
635 } else {
636 swFlipY = true;
637 }
638 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000639 if (this->glCaps().unpackRowLengthSupport() && !swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000640 // can't use this for flipping, only non-neg values allowed. :(
641 if (rowBytes != trimRowBytes) {
642 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
643 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
644 restoreGLRowLength = true;
645 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000646 } else {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000647 if (trimRowBytes != rowBytes || swFlipY) {
648 // copy data into our new storage, skipping the trailing bytes
649 size_t trimSize = height * trimRowBytes;
650 const char* src = (const char*)data;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000651 if (swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000652 src += (height - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000653 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000654 char* dst = (char*)tempStorage.reset(trimSize);
655 for (int y = 0; y < height; y++) {
656 memcpy(dst, src, trimRowBytes);
657 if (swFlipY) {
658 src -= rowBytes;
659 } else {
660 src += rowBytes;
661 }
662 dst += trimRowBytes;
663 }
664 // now point data to our copied version
665 data = tempStorage.get();
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000666 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000667 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000668 if (glFlipY) {
669 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
670 }
671 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, static_cast<GrGLint>(bpp)));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000672 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000673 bool succeeded = true;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000674 if (isNewTexture &&
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000675 0 == left && 0 == top &&
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000676 desc.fWidth == width && desc.fHeight == height) {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000677 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000678 if (useTexStorage) {
679 // We never resize or change formats of textures. We don't use
680 // mipmaps currently.
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000681 GL_ALLOC_CALL(this->glInterface(),
682 TexStorage2D(GR_GL_TEXTURE_2D,
683 1, // levels
684 internalFormat,
685 desc.fWidth, desc.fHeight));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000686 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000687 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
688 GrGLsizei imageSize = desc.fWidth * desc.fHeight +
689 kGrColorTableSize;
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000690 GL_ALLOC_CALL(this->glInterface(),
691 CompressedTexImage2D(GR_GL_TEXTURE_2D,
692 0, // level
693 internalFormat,
694 desc.fWidth, desc.fHeight,
695 0, // border
696 imageSize,
697 data));
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000698 } else {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000699 GL_ALLOC_CALL(this->glInterface(),
700 TexImage2D(GR_GL_TEXTURE_2D,
701 0, // level
702 internalFormat,
703 desc.fWidth, desc.fHeight,
704 0, // border
705 externalFormat, externalType,
706 data));
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000707 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000708 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000709 GrGLenum error = check_alloc_error(desc, this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000710 if (error != GR_GL_NO_ERROR) {
711 succeeded = false;
712 } else {
713 // if we have data and we used TexStorage to create the texture, we
714 // now upload with TexSubImage.
715 if (NULL != data && useTexStorage) {
716 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
717 0, // level
718 left, top,
719 width, height,
720 externalFormat, externalType,
721 data));
722 }
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000723 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000724 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000725 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000726 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000727 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000728 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
729 0, // level
730 left, top,
731 width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000732 externalFormat, externalType, data));
733 }
734
735 if (restoreGLRowLength) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000736 GrAssert(this->glCaps().unpackRowLengthSupport());
bsalomon@google.com6f379512011-11-16 20:36:03 +0000737 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000738 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000739 if (glFlipY) {
740 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
741 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000742 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000743}
744
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000745namespace {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000746bool renderbuffer_storage_msaa(GrGLContext& ctx,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000747 int sampleCount,
748 GrGLenum format,
749 int width, int height) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000750 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
bsalomon@google.combcce8922013-03-25 15:38:39 +0000751 GrAssert(GrGLCaps::kNone_MSFBOType != ctx.info().caps()->msFBOType());
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000752 bool created = false;
753 if (GrGLCaps::kNVDesktop_CoverageAAType ==
bsalomon@google.combcce8922013-03-25 15:38:39 +0000754 ctx.info().caps()->coverageAAType()) {
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000755 const GrGLCaps::MSAACoverageMode& mode =
bsalomon@google.combcce8922013-03-25 15:38:39 +0000756 ctx.info().caps()->getMSAACoverageMode(sampleCount);
robertphillips@google.com6177e692013-02-28 20:16:25 +0000757 GL_ALLOC_CALL(ctx.interface(),
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000758 RenderbufferStorageMultisampleCoverage(GR_GL_RENDERBUFFER,
759 mode.fCoverageSampleCnt,
760 mode.fColorSampleCnt,
761 format,
762 width, height));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000763 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000764 }
765 if (!created) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000766 GL_ALLOC_CALL(ctx.interface(),
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000767 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
768 sampleCount,
769 format,
770 width, height));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000771 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000772 }
773 return created;
774}
775}
776
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000777bool GrGpuGL::createRenderTargetObjects(int width, int height,
778 GrGLuint texID,
779 GrGLRenderTarget::Desc* desc) {
780 desc->fMSColorRenderbufferID = 0;
781 desc->fRTFBOID = 0;
782 desc->fTexFBOID = 0;
bsalomon@google.com72830222013-01-23 20:25:22 +0000783 desc->fIsWrapped = false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000784
785 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000786
bsalomon@google.comab15d612011-08-09 12:57:56 +0000787 GrGLenum msColorFormat = 0; // suppress warning
788
bsalomon@google.com347c3822013-05-01 20:10:01 +0000789 if (desc->fSampleCnt > 0 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
790 goto FAILED;
791 }
792
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000793 GL_CALL(GenFramebuffers(1, &desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000794 if (!desc->fTexFBOID) {
795 goto FAILED;
796 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000797
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000798
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000799 // If we are using multisampling we will create two FBOS. We render to one and then resolve to
800 // the texture bound to the other. The exception is the IMG multisample extension. With this
801 // extension the texture is multisampled when rendered to and then auto-resolves it when it is
802 // rendered from.
bsalomon@google.com347c3822013-05-01 20:10:01 +0000803 if (desc->fSampleCnt > 0 && this->glCaps().usesMSAARenderBuffers()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000804 GL_CALL(GenFramebuffers(1, &desc->fRTFBOID));
805 GL_CALL(GenRenderbuffers(1, &desc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000806 if (!desc->fRTFBOID ||
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000807 !desc->fMSColorRenderbufferID ||
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000808 !this->configToGLFormats(desc->fConfig,
809 // GLES requires sized internal formats
810 kES2_GrGLBinding == this->glBinding(),
bsalomon@google.com347c3822013-05-01 20:10:01 +0000811 &msColorFormat,
812 NULL,
813 NULL)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000814 goto FAILED;
815 }
816 } else {
817 desc->fRTFBOID = desc->fTexFBOID;
818 }
819
bsalomon@google.com0e9b41a2012-01-04 22:11:43 +0000820 // below here we may bind the FBO
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000821 fHWBoundRenderTarget = NULL;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000822 if (desc->fRTFBOID != desc->fTexFBOID) {
bsalomon@google.com13ac3a32013-01-09 23:29:39 +0000823 GrAssert(desc->fSampleCnt > 0);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000824 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000825 desc->fMSColorRenderbufferID));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000826 if (!renderbuffer_storage_msaa(fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000827 desc->fSampleCnt,
828 msColorFormat,
829 width, height)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000830 goto FAILED;
831 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000832 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, desc->fRTFBOID));
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000833 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000834 GR_GL_COLOR_ATTACHMENT0,
835 GR_GL_RENDERBUFFER,
836 desc->fMSColorRenderbufferID));
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000837 if (desc->fCheckAllocation ||
838 !this->glCaps().isConfigVerifiedColorAttachment(desc->fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000839 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
840 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
841 goto FAILED;
842 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000843 fGLContext.info().caps()->markConfigAsValidColorAttachment(desc->fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000844 }
845 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000846 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000847
bsalomon@google.com347c3822013-05-01 20:10:01 +0000848 if (this->glCaps().usesImplicitMSAAResolve() && desc->fSampleCnt > 0) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000849 GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER,
850 GR_GL_COLOR_ATTACHMENT0,
851 GR_GL_TEXTURE_2D,
852 texID, 0, desc->fSampleCnt));
853 } else {
854 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
855 GR_GL_COLOR_ATTACHMENT0,
856 GR_GL_TEXTURE_2D,
857 texID, 0));
858 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000859 if (desc->fCheckAllocation ||
860 !this->glCaps().isConfigVerifiedColorAttachment(desc->fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000861 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
862 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
863 goto FAILED;
864 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000865 fGLContext.info().caps()->markConfigAsValidColorAttachment(desc->fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000866 }
867
868 return true;
869
870FAILED:
871 if (desc->fMSColorRenderbufferID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000872 GL_CALL(DeleteRenderbuffers(1, &desc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000873 }
874 if (desc->fRTFBOID != desc->fTexFBOID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000875 GL_CALL(DeleteFramebuffers(1, &desc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000876 }
877 if (desc->fTexFBOID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000878 GL_CALL(DeleteFramebuffers(1, &desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000879 }
880 return false;
881}
882
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000883// good to set a break-point here to know when createTexture fails
884static GrTexture* return_null_texture() {
885// GrAssert(!"null texture");
886 return NULL;
887}
888
caryclark@google.comcf6285b2012-06-06 12:09:01 +0000889#if 0 && GR_DEBUG
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000890static size_t as_size_t(int x) {
891 return x;
892}
893#endif
894
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000895GrTexture* GrGpuGL::onCreateTexture(const GrTextureDesc& desc,
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000896 const void* srcData,
897 size_t rowBytes) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000898
bsalomon@google.com5bfc2172011-07-29 20:29:05 +0000899 GrGLTexture::Desc glTexDesc;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000900 GrGLRenderTarget::Desc glRTDesc;
reed@google.comac10a2d2010-12-22 21:39:39 +0000901
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000902 // Attempt to catch un- or wrongly initialized sample counts;
903 GrAssert(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000904 // We fail if the MSAA was requested and is not available.
905 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
906 //GrPrintf("MSAA RT requested but not supported on this platform.");
907 return return_null_texture();
908 }
909 // If the sample count exceeds the max then we clamp it.
bsalomon@google.combcce8922013-03-25 15:38:39 +0000910 glTexDesc.fSampleCnt = GrMin(desc.fSampleCnt, this->caps()->maxSampleCount());
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000911
robertphillips@google.com32716282012-06-04 12:48:45 +0000912 glTexDesc.fFlags = desc.fFlags;
bsalomon@google.com99621082011-11-15 16:47:16 +0000913 glTexDesc.fWidth = desc.fWidth;
914 glTexDesc.fHeight = desc.fHeight;
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000915 glTexDesc.fConfig = desc.fConfig;
bsalomon@google.com72830222013-01-23 20:25:22 +0000916 glTexDesc.fIsWrapped = false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000917
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000918 glRTDesc.fMSColorRenderbufferID = 0;
919 glRTDesc.fRTFBOID = 0;
920 glRTDesc.fTexFBOID = 0;
bsalomon@google.com72830222013-01-23 20:25:22 +0000921 glRTDesc.fIsWrapped = false;
bsalomon@google.com64c4fe42011-11-05 14:51:01 +0000922 glRTDesc.fConfig = glTexDesc.fConfig;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000923 glRTDesc.fCheckAllocation = SkToBool(desc.fFlags & kCheckAllocation_GrTextureFlagBit);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000924
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000925 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrTextureFlagBit);
reed@google.comac10a2d2010-12-22 21:39:39 +0000926
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000927 glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
928 glRTDesc.fOrigin = glTexDesc.fOrigin;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000929
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000930 glRTDesc.fSampleCnt = glTexDesc.fSampleCnt;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000931 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() &&
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000932 desc.fSampleCnt) {
bsalomon@google.com945bbe12012-06-15 14:30:34 +0000933 //GrPrintf("MSAA RT requested but not supported on this platform.");
934 return return_null_texture();
reed@google.comac10a2d2010-12-22 21:39:39 +0000935 }
936
reed@google.comac10a2d2010-12-22 21:39:39 +0000937 if (renderTarget) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000938 int maxRTSize = this->caps()->maxRenderTargetSize();
939 if (glTexDesc.fWidth > maxRTSize || glTexDesc.fHeight > maxRTSize) {
bsalomon@google.com91958362011-06-13 17:58:13 +0000940 return return_null_texture();
941 }
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +0000942 } else {
943 int maxSize = this->caps()->maxTextureSize();
944 if (glTexDesc.fWidth > maxSize || glTexDesc.fHeight > maxSize) {
945 return return_null_texture();
946 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000947 }
948
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000949 GL_CALL(GenTextures(1, &glTexDesc.fTextureID));
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000950 if (renderTarget && this->glCaps().textureUsageSupport()) {
bsalomon@google.com07dd2bf2011-12-09 19:40:36 +0000951 // provides a hint about how this texture will be used
952 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
953 GR_GL_TEXTURE_USAGE,
954 GR_GL_FRAMEBUFFER_ATTACHMENT));
955 }
bsalomon@google.com5bfc2172011-07-29 20:29:05 +0000956 if (!glTexDesc.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();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000961 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTexDesc.fTextureID));
bsalomon@google.come269f212011-11-07 13:29:52 +0000962
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000963 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
964 // drivers have a bug where an FBO won't be complete if it includes a
965 // texture that is not mipmap complete (considering the filter in use).
966 GrGLTexture::TexParams initialTexParams;
967 // we only set a subset here so invalidate first
968 initialTexParams.invalidate();
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +0000969 initialTexParams.fMinFilter = GR_GL_NEAREST;
970 initialTexParams.fMagFilter = GR_GL_NEAREST;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000971 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
972 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000973 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
974 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +0000975 initialTexParams.fMagFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000976 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
977 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +0000978 initialTexParams.fMinFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000979 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
980 GR_GL_TEXTURE_WRAP_S,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000981 initialTexParams.fWrapS));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000982 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
983 GR_GL_TEXTURE_WRAP_T,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000984 initialTexParams.fWrapT));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000985 if (!this->uploadTexData(glTexDesc, true, 0, 0,
986 glTexDesc.fWidth, glTexDesc.fHeight,
987 desc.fConfig, srcData, rowBytes)) {
988 GL_CALL(DeleteTextures(1, &glTexDesc.fTextureID));
989 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000990 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000991
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000992 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +0000993 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +0000994 // unbind the texture from the texture unit before binding it to the frame buffer
995 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
996
bsalomon@google.com99621082011-11-15 16:47:16 +0000997 if (!this->createRenderTargetObjects(glTexDesc.fWidth,
998 glTexDesc.fHeight,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000999 glTexDesc.fTextureID,
1000 &glRTDesc)) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001001 GL_CALL(DeleteTextures(1, &glTexDesc.fTextureID));
reed@google.comac10a2d2010-12-22 21:39:39 +00001002 return return_null_texture();
1003 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001004 tex = SkNEW_ARGS(GrGLTexture, (this, glTexDesc, glRTDesc));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001005 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001006 tex = SkNEW_ARGS(GrGLTexture, (this, glTexDesc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001007 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001008 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +00001009#ifdef TRACE_TEXTURE_CREATION
bsalomon@google.com64c4fe42011-11-05 14:51:01 +00001010 GrPrintf("--- new texture [%d] size=(%d %d) config=%d\n",
1011 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +00001012#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001013 return tex;
1014}
1015
1016namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001017
1018const GrGLuint kUnknownBitCount = GrGLStencilBuffer::kUnknownBitCount;
1019
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001020void inline get_stencil_rb_sizes(const GrGLInterface* gl,
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001021 GrGLStencilBuffer::Format* format) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001022
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001023 // we shouldn't ever know one size and not the other
1024 GrAssert((kUnknownBitCount == format->fStencilBits) ==
1025 (kUnknownBitCount == format->fTotalBits));
1026 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001027 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001028 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1029 (GrGLint*)&format->fStencilBits);
1030 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001031 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001032 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1033 (GrGLint*)&format->fTotalBits);
1034 format->fTotalBits += format->fStencilBits;
1035 } else {
1036 format->fTotalBits = format->fStencilBits;
1037 }
1038 }
1039}
1040}
1041
1042bool GrGpuGL::createStencilBufferForRenderTarget(GrRenderTarget* rt,
1043 int width, int height) {
1044
1045 // All internally created RTs are also textures. We don't create
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001046 // SBs for a client's standalone RT (that is a RT that isn't also a texture).
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001047 GrAssert(rt->asTexture());
bsalomon@google.com99621082011-11-15 16:47:16 +00001048 GrAssert(width >= rt->width());
1049 GrAssert(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001050
1051 int samples = rt->numSamples();
1052 GrGLuint sbID;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001053 GL_CALL(GenRenderbuffers(1, &sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001054 if (!sbID) {
1055 return false;
1056 }
1057
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001058 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001059 for (int i = 0; i < stencilFmtCnt; ++i) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001060 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001061 // we start with the last stencil format that succeeded in hopes
1062 // that we won't go through this loop more than once after the
1063 // first (painful) stencil creation.
1064 int sIdx = (i + fLastSuccessfulStencilFmtIdx) % stencilFmtCnt;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001065 const GrGLCaps::StencilFormat& sFmt =
1066 this->glCaps().stencilFormats()[sIdx];
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001067 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001068 // we do this "if" so that we don't call the multisample
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001069 // version on a GL that doesn't have an MSAA extension.
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001070 bool created;
1071 if (samples > 0) {
robertphillips@google.com6177e692013-02-28 20:16:25 +00001072 created = renderbuffer_storage_msaa(fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001073 samples,
1074 sFmt.fInternalFormat,
1075 width, height);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001076 } else {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001077 GL_ALLOC_CALL(this->glInterface(),
1078 RenderbufferStorage(GR_GL_RENDERBUFFER,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001079 sFmt.fInternalFormat,
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001080 width, height));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001081 created =
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +00001082 (GR_GL_NO_ERROR == check_alloc_error(rt->desc(), this->glInterface()));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001083 }
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001084 if (created) {
1085 // After sized formats we attempt an unsized format and take
1086 // whatever sizes GL gives us. In that case we query for the size.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001087 GrGLStencilBuffer::Format format = sFmt;
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001088 get_stencil_rb_sizes(this->glInterface(), &format);
bsalomon@google.com72830222013-01-23 20:25:22 +00001089 static const bool kIsWrapped = false;
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001090 SkAutoTUnref<GrStencilBuffer> sb(SkNEW_ARGS(GrGLStencilBuffer,
bsalomon@google.com72830222013-01-23 20:25:22 +00001091 (this, kIsWrapped, sbID, width, height,
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001092 samples, format)));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001093 if (this->attachStencilBufferToRenderTarget(sb, rt)) {
1094 fLastSuccessfulStencilFmtIdx = sIdx;
robertphillips@google.com9fbcad02012-09-09 14:44:15 +00001095 sb->transferToCache();
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001096 rt->setStencilBuffer(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001097 return true;
1098 }
1099 sb->abandon(); // otherwise we lose sbID
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001100 }
1101 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001102 GL_CALL(DeleteRenderbuffers(1, &sbID));
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001103 return false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001104}
1105
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001106bool GrGpuGL::attachStencilBufferToRenderTarget(GrStencilBuffer* sb, GrRenderTarget* rt) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001107 GrGLRenderTarget* glrt = (GrGLRenderTarget*) rt;
1108
1109 GrGLuint fbo = glrt->renderFBOID();
1110
1111 if (NULL == sb) {
1112 if (NULL != rt->getStencilBuffer()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001113 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001114 GR_GL_STENCIL_ATTACHMENT,
1115 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001116 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001117 GR_GL_DEPTH_ATTACHMENT,
1118 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001119#if GR_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001120 GrGLenum status;
1121 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001122 GrAssert(GR_GL_FRAMEBUFFER_COMPLETE == status);
1123#endif
1124 }
1125 return true;
1126 } else {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001127 GrGLStencilBuffer* glsb = static_cast<GrGLStencilBuffer*>(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001128 GrGLuint rb = glsb->renderbufferID();
1129
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001130 fHWBoundRenderTarget = NULL;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001131 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fbo));
1132 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001133 GR_GL_STENCIL_ATTACHMENT,
1134 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001135 if (glsb->format().fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001136 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001137 GR_GL_DEPTH_ATTACHMENT,
1138 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001139 } else {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001140 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001141 GR_GL_DEPTH_ATTACHMENT,
1142 GR_GL_RENDERBUFFER, 0));
reed@google.comac10a2d2010-12-22 21:39:39 +00001143 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001144
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001145 GrGLenum status;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001146 if (!this->glCaps().isColorConfigAndStencilFormatVerified(rt->config(), glsb->format())) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001147 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1148 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001149 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001150 GR_GL_STENCIL_ATTACHMENT,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001151 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001152 if (glsb->format().fPacked) {
1153 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1154 GR_GL_DEPTH_ATTACHMENT,
1155 GR_GL_RENDERBUFFER, 0));
1156 }
1157 return false;
1158 } else {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001159 fGLContext.info().caps()->markColorConfigAndStencilFormatAsVerified(
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001160 rt->config(),
1161 glsb->format());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001162 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001163 }
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001164 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001165 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001166}
1167
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001168////////////////////////////////////////////////////////////////////////////////
1169
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001170GrVertexBuffer* GrGpuGL::onCreateVertexBuffer(uint32_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001171 GrGLVertexBuffer::Desc desc;
1172 desc.fDynamic = dynamic;
1173 desc.fSizeInBytes = size;
1174 desc.fIsWrapped = false;
1175
bsalomon@google.com96966a52013-02-21 16:34:21 +00001176 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001177 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001178 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001179 return vertexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001180 } else {
1181 GL_CALL(GenBuffers(1, &desc.fID));
1182 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001183 fHWGeometryState.setVertexBufferID(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001184 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1185 // make sure driver can allocate memory for this buffer
1186 GL_ALLOC_CALL(this->glInterface(),
1187 BufferData(GR_GL_ARRAY_BUFFER,
1188 desc.fSizeInBytes,
1189 NULL, // data ptr
1190 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1191 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1192 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001193 this->notifyVertexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001194 return NULL;
1195 }
1196 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
1197 return vertexBuffer;
1198 }
1199 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001200 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001201}
1202
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001203GrIndexBuffer* GrGpuGL::onCreateIndexBuffer(uint32_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001204 GrGLIndexBuffer::Desc desc;
1205 desc.fDynamic = dynamic;
1206 desc.fSizeInBytes = size;
1207 desc.fIsWrapped = false;
1208
bsalomon@google.com96966a52013-02-21 16:34:21 +00001209 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001210 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001211 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001212 return indexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001213 } else {
1214 GL_CALL(GenBuffers(1, &desc.fID));
1215 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001216 fHWGeometryState.setIndexBufferIDOnDefaultVertexArray(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001217 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1218 // make sure driver can allocate memory for this buffer
1219 GL_ALLOC_CALL(this->glInterface(),
1220 BufferData(GR_GL_ELEMENT_ARRAY_BUFFER,
1221 desc.fSizeInBytes,
1222 NULL, // data ptr
1223 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1224 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1225 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001226 this->notifyIndexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001227 return NULL;
1228 }
1229 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
1230 return indexBuffer;
1231 }
1232 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001233 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001234}
1235
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001236GrPath* GrGpuGL::onCreatePath(const SkPath& inPath) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001237 GrAssert(this->caps()->pathStencilingSupport());
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001238 return SkNEW_ARGS(GrGLPath, (this, inPath));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001239}
1240
bsalomon@google.coma3201942012-06-21 19:58:20 +00001241void GrGpuGL::flushScissor() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001242 const GrDrawState& drawState = this->getDrawState();
1243 const GrGLRenderTarget* rt =
1244 static_cast<const GrGLRenderTarget*>(drawState.getRenderTarget());
1245
1246 GrAssert(NULL != rt);
1247 const GrGLIRect& vp = rt->getViewport();
reed@google.comac10a2d2010-12-22 21:39:39 +00001248
bsalomon@google.coma3201942012-06-21 19:58:20 +00001249 if (fScissorState.fEnabled) {
1250 GrGLIRect scissor;
1251 scissor.setRelativeTo(vp,
1252 fScissorState.fRect.fLeft,
1253 fScissorState.fRect.fTop,
1254 fScissorState.fRect.width(),
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001255 fScissorState.fRect.height(),
1256 rt->origin());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001257 // if the scissor fully contains the viewport then we fall through and
1258 // disable the scissor test.
1259 if (!scissor.contains(vp)) {
1260 if (fHWScissorSettings.fRect != scissor) {
1261 scissor.pushToGLScissor(this->glInterface());
1262 fHWScissorSettings.fRect = scissor;
1263 }
1264 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1265 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1266 fHWScissorSettings.fEnabled = kYes_TriState;
1267 }
1268 return;
1269 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001270 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001271 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001272 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001273 fHWScissorSettings.fEnabled = kNo_TriState;
1274 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001275 }
1276}
1277
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001278void GrGpuGL::onClear(const SkIRect* rect, GrColor color) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001279 const GrDrawState& drawState = this->getDrawState();
1280 const GrRenderTarget* rt = drawState.getRenderTarget();
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001281 // parent class should never let us get here with no RT
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001282 GrAssert(NULL != rt);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001283
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001284 SkIRect clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001285 if (NULL != rect) {
1286 // flushScissor expects rect to be clipped to the target.
bsalomon@google.com74b98712011-11-11 19:46:16 +00001287 clippedRect = *rect;
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001288 SkIRect rtRect = SkIRect::MakeWH(rt->width(), rt->height());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001289 if (clippedRect.intersect(rtRect)) {
1290 rect = &clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001291 } else {
1292 return;
1293 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001294 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001295 this->flushRenderTarget(rect);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001296 GrAutoTRestore<ScissorState> asr(&fScissorState);
1297 fScissorState.fEnabled = (NULL != rect);
1298 if (fScissorState.fEnabled) {
1299 fScissorState.fRect = *rect;
1300 }
1301 this->flushScissor();
bsalomon@google.com74b98712011-11-11 19:46:16 +00001302
1303 GrGLfloat r, g, b, a;
1304 static const GrGLfloat scale255 = 1.f / 255.f;
1305 a = GrColorUnpackA(color) * scale255;
1306 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001307 r = GrColorUnpackR(color) * scaleRGB;
1308 g = GrColorUnpackG(color) * scaleRGB;
1309 b = GrColorUnpackB(color) * scaleRGB;
1310
1311 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00001312 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001313 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001314 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00001315}
1316
bsalomon@google.comedc177d2011-08-05 15:46:40 +00001317void GrGpuGL::clearStencil() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001318 if (NULL == this->getDrawState().getRenderTarget()) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00001319 return;
1320 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001321
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001322 this->flushRenderTarget(&SkIRect::EmptyIRect());
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001323
bsalomon@google.coma3201942012-06-21 19:58:20 +00001324 GrAutoTRestore<ScissorState> asr(&fScissorState);
1325 fScissorState.fEnabled = false;
1326 this->flushScissor();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001327
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001328 GL_CALL(StencilMask(0xffffffff));
1329 GL_CALL(ClearStencil(0));
1330 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001331 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001332}
1333
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001334void GrGpuGL::clearStencilClip(const SkIRect& rect, bool insideClip) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001335 const GrDrawState& drawState = this->getDrawState();
1336 const GrRenderTarget* rt = drawState.getRenderTarget();
1337 GrAssert(NULL != rt);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001338
1339 // this should only be called internally when we know we have a
1340 // stencil buffer.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001341 GrAssert(NULL != rt->getStencilBuffer());
1342 GrGLint stencilBitCount = rt->getStencilBuffer()->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001343#if 0
reed@google.comac10a2d2010-12-22 21:39:39 +00001344 GrAssert(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00001345 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001346#else
1347 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001348 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001349 // turned into draws. Our contract on GrDrawTarget says that
1350 // changing the clip between stencil passes may or may not
1351 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00001352 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001353#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001354 GrGLint value;
1355 if (insideClip) {
1356 value = (1 << (stencilBitCount - 1));
1357 } else {
1358 value = 0;
1359 }
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001360 this->flushRenderTarget(&SkIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001361
1362 GrAutoTRestore<ScissorState> asr(&fScissorState);
1363 fScissorState.fEnabled = true;
1364 fScissorState.fRect = rect;
1365 this->flushScissor();
1366
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001367 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001368 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001369 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001370 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001371}
1372
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001373void GrGpuGL::onForceRenderTargetFlush() {
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001374 this->flushRenderTarget(&SkIRect::EmptyIRect());
reed@google.comac10a2d2010-12-22 21:39:39 +00001375}
1376
bsalomon@google.comc4364992011-11-07 15:54:49 +00001377bool GrGpuGL::readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
1378 int left, int top,
1379 int width, int height,
1380 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001381 size_t rowBytes) const {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001382 // If this rendertarget is aready TopLeft, we don't need to flip.
1383 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
1384 return false;
1385 }
1386
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001387 // if GL can do the flip then we'll never pay for it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001388 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001389 return false;
1390 }
1391
1392 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00001393 // get the flip for free. Otherwise it costs.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001394 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001395 return true;
1396 }
1397 // If we have to do memcpys to handle rowBytes then y-flip is free
1398 // Note the rowBytes might be tight to the passed in data, but if data
1399 // gets clipped in x to the target the rowBytes will no longer be tight.
1400 if (left >= 0 && (left + width) < renderTarget->width()) {
1401 return 0 == rowBytes ||
1402 GrBytesPerPixel(config) * width == rowBytes;
1403 } else {
1404 return false;
1405 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001406}
1407
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001408bool GrGpuGL::onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001409 int left, int top,
1410 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001411 GrPixelConfig config,
1412 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001413 size_t rowBytes) {
twiz@google.com0f31ca72011-03-18 17:38:11 +00001414 GrGLenum format;
1415 GrGLenum type;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001416 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin();
bsalomon@google.com280e99f2012-01-05 16:17:38 +00001417 if (!this->configToGLFormats(config, false, NULL, &format, &type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001418 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001419 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001420 size_t bpp = GrBytesPerPixel(config);
1421 if (!adjust_pixel_ops_params(target->width(), target->height(), bpp,
1422 &left, &top, &width, &height,
1423 const_cast<const void**>(&buffer),
1424 &rowBytes)) {
1425 return false;
1426 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001427
bsalomon@google.comc6980972011-11-02 19:57:21 +00001428 // resolve the render target if necessary
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001429 GrGLRenderTarget* tgt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001430 GrDrawState::AutoRenderTargetRestore artr;
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001431 switch (tgt->getResolveType()) {
1432 case GrGLRenderTarget::kCantResolve_ResolveType:
1433 return false;
1434 case GrGLRenderTarget::kAutoResolves_ResolveType:
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001435 artr.set(this->drawState(), target);
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001436 this->flushRenderTarget(&SkIRect::EmptyIRect());
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001437 break;
1438 case GrGLRenderTarget::kCanResolve_ResolveType:
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001439 this->onResolveRenderTarget(tgt);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001440 // we don't track the state of the READ FBO ID.
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001441 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1442 tgt->textureFBOID()));
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001443 break;
1444 default:
1445 GrCrash("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00001446 }
1447
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001448 const GrGLIRect& glvp = tgt->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00001449
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00001450 // the read rect is viewport-relative
1451 GrGLIRect readRect;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001452 readRect.setRelativeTo(glvp, left, top, width, height, target->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001453
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001454 size_t tightRowBytes = bpp * width;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001455 if (0 == rowBytes) {
1456 rowBytes = tightRowBytes;
1457 }
1458 size_t readDstRowBytes = tightRowBytes;
1459 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001460
bsalomon@google.comc6980972011-11-02 19:57:21 +00001461 // determine if GL can read using the passed rowBytes or if we need
1462 // a scratch buffer.
1463 SkAutoSMalloc<32 * sizeof(GrColor)> scratch;
1464 if (rowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001465 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.comc6980972011-11-02 19:57:21 +00001466 GrAssert(!(rowBytes % sizeof(GrColor)));
1467 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, rowBytes / sizeof(GrColor)));
1468 readDstRowBytes = rowBytes;
1469 } else {
1470 scratch.reset(tightRowBytes * height);
1471 readDst = scratch.get();
1472 }
1473 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001474 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001475 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
1476 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001477 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
1478 readRect.fWidth, readRect.fHeight,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001479 format, type, readDst));
1480 if (readDstRowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001481 GrAssert(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00001482 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
1483 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001484 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001485 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001486 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001487 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001488
1489 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00001490 // API presents top-to-bottom. We must preserve the padding contents. Note
1491 // that the above readPixels did not overwrite the padding.
1492 if (readDst == buffer) {
1493 GrAssert(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001494 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001495 scratch.reset(tightRowBytes);
1496 void* tmpRow = scratch.get();
1497 // flip y in-place by rows
1498 const int halfY = height >> 1;
1499 char* top = reinterpret_cast<char*>(buffer);
1500 char* bottom = top + (height - 1) * rowBytes;
1501 for (int y = 0; y < halfY; y++) {
1502 memcpy(tmpRow, top, tightRowBytes);
1503 memcpy(top, bottom, tightRowBytes);
1504 memcpy(bottom, tmpRow, tightRowBytes);
1505 top += rowBytes;
1506 bottom -= rowBytes;
1507 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001508 }
1509 } else {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001510 GrAssert(readDst != buffer); GrAssert(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00001511 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001512 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001513 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001514 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001515 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001516 dst += (height-1) * rowBytes;
1517 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001518 for (int y = 0; y < height; y++) {
1519 memcpy(dst, src, tightRowBytes);
1520 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001521 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001522 dst += rowBytes;
1523 } else {
1524 dst -= rowBytes;
1525 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001526 }
1527 }
1528 return true;
1529}
1530
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001531void GrGpuGL::flushRenderTarget(const SkIRect* bound) {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001532
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001533 GrGLRenderTarget* rt =
1534 static_cast<GrGLRenderTarget*>(this->drawState()->getRenderTarget());
1535 GrAssert(NULL != rt);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001536
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001537 if (fHWBoundRenderTarget != rt) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001538 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, rt->renderFBOID()));
robertphillips@google.coma6ffb582013-04-29 16:50:17 +00001539#if GR_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001540 GrGLenum status;
1541 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.comc312bf92011-03-21 21:10:33 +00001542 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
reed@google.comb9255d52011-06-13 18:54:59 +00001543 GrPrintf("GrGpuGL::flushRenderTarget glCheckFramebufferStatus %x\n", status);
reed@google.comac10a2d2010-12-22 21:39:39 +00001544 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +00001545#endif
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001546 fHWBoundRenderTarget = rt;
bsalomon@google.comd302f142011-03-03 13:54:13 +00001547 const GrGLIRect& vp = rt->getViewport();
bsalomon@google.coma3201942012-06-21 19:58:20 +00001548 if (fHWViewport != vp) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001549 vp.pushToGLViewport(this->glInterface());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001550 fHWViewport = vp;
reed@google.comac10a2d2010-12-22 21:39:39 +00001551 }
1552 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001553 if (NULL == bound || !bound->isEmpty()) {
1554 rt->flagAsNeedingResolve(bound);
1555 }
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00001556
1557 GrTexture *texture = rt->asTexture();
1558 if (texture) {
1559 texture->dirtyMipMaps(true);
1560 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001561}
1562
twiz@google.com0f31ca72011-03-18 17:38:11 +00001563GrGLenum gPrimitiveType2GLMode[] = {
1564 GR_GL_TRIANGLES,
1565 GR_GL_TRIANGLE_STRIP,
1566 GR_GL_TRIANGLE_FAN,
1567 GR_GL_POINTS,
1568 GR_GL_LINES,
1569 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00001570};
1571
bsalomon@google.comd302f142011-03-03 13:54:13 +00001572#define SWAP_PER_DRAW 0
1573
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001574#if SWAP_PER_DRAW
bsalomon@google.comd302f142011-03-03 13:54:13 +00001575 #if GR_MAC_BUILD
1576 #include <AGL/agl.h>
1577 #elif GR_WIN32_BUILD
bsalomon@google.comce7357d2012-06-25 17:49:25 +00001578 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00001579 void SwapBuf() {
1580 DWORD procID = GetCurrentProcessId();
1581 HWND hwnd = GetTopWindow(GetDesktopWindow());
1582 while(hwnd) {
1583 DWORD wndProcID = 0;
1584 GetWindowThreadProcessId(hwnd, &wndProcID);
1585 if(wndProcID == procID) {
1586 SwapBuffers(GetDC(hwnd));
1587 }
1588 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
1589 }
1590 }
1591 #endif
1592#endif
1593
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001594void GrGpuGL::onGpuDraw(const DrawInfo& info) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001595 size_t indexOffsetInBytes;
1596 this->setupGeometry(info, &indexOffsetInBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +00001597
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001598 GrAssert((size_t)info.primitiveType() < GR_ARRAY_COUNT(gPrimitiveType2GLMode));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00001599
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001600 if (info.isIndexed()) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001601 GrGLvoid* indices =
1602 reinterpret_cast<GrGLvoid*>(indexOffsetInBytes + sizeof(uint16_t) * info.startIndex());
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001603 // info.startVertex() was accounted for by setupGeometry.
1604 GL_CALL(DrawElements(gPrimitiveType2GLMode[info.primitiveType()],
1605 info.indexCount(),
1606 GR_GL_UNSIGNED_SHORT,
1607 indices));
1608 } else {
1609 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account for
1610 // startVertex in the DrawElements case. So we always rely on setupGeometry to have
1611 // accounted for startVertex.
1612 GL_CALL(DrawArrays(gPrimitiveType2GLMode[info.primitiveType()], 0, info.vertexCount()));
1613 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00001614#if SWAP_PER_DRAW
1615 glFlush();
1616 #if GR_MAC_BUILD
1617 aglSwapBuffers(aglGetCurrentContext());
1618 int set_a_break_pt_here = 9;
1619 aglSwapBuffers(aglGetCurrentContext());
1620 #elif GR_WIN32_BUILD
1621 SwapBuf();
1622 int set_a_break_pt_here = 9;
1623 SwapBuf();
1624 #endif
1625#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00001626}
1627
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001628namespace {
bsalomon@google.com100abf42012-09-05 17:40:04 +00001629
1630static const uint16_t kOnes16 = static_cast<uint16_t>(~0);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001631const GrStencilSettings& winding_nv_path_stencil_settings() {
1632 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
1633 kIncClamp_StencilOp,
1634 kIncClamp_StencilOp,
1635 kAlwaysIfInClip_StencilFunc,
bsalomon@google.com100abf42012-09-05 17:40:04 +00001636 kOnes16, kOnes16, kOnes16);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001637 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
1638}
1639const GrStencilSettings& even_odd_nv_path_stencil_settings() {
1640 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
1641 kInvert_StencilOp,
1642 kInvert_StencilOp,
1643 kAlwaysIfInClip_StencilFunc,
bsalomon@google.com100abf42012-09-05 17:40:04 +00001644 kOnes16, kOnes16, kOnes16);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001645 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
1646}
1647}
1648
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001649void GrGpuGL::setStencilPathSettings(const GrPath&,
sugoi@google.com12b4e272012-12-06 20:13:11 +00001650 SkPath::FillType fill,
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001651 GrStencilSettings* settings) {
1652 switch (fill) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001653 case SkPath::kEvenOdd_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001654 *settings = even_odd_nv_path_stencil_settings();
1655 return;
sugoi@google.com12b4e272012-12-06 20:13:11 +00001656 case SkPath::kWinding_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001657 *settings = winding_nv_path_stencil_settings();
1658 return;
1659 default:
1660 GrCrash("Unexpected path fill.");
1661 }
1662}
1663
sugoi@google.com12b4e272012-12-06 20:13:11 +00001664void GrGpuGL::onGpuStencilPath(const GrPath* path, SkPath::FillType fill) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001665 GrAssert(this->caps()->pathStencilingSupport());
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001666
1667 GrGLuint id = static_cast<const GrGLPath*>(path)->pathID();
1668 GrDrawState* drawState = this->drawState();
1669 GrAssert(NULL != drawState->getRenderTarget());
1670 if (NULL == drawState->getRenderTarget()->getStencilBuffer()) {
1671 return;
1672 }
1673
1674 // Decide how to manipulate the stencil buffer based on the fill rule.
1675 // Also, assert that the stencil settings we set in setStencilPathSettings
1676 // are present.
1677 GrAssert(!fStencilSettings.isTwoSided());
1678 GrGLenum fillMode;
1679 switch (fill) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001680 case SkPath::kWinding_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001681 fillMode = GR_GL_COUNT_UP;
1682 GrAssert(kIncClamp_StencilOp ==
1683 fStencilSettings.passOp(GrStencilSettings::kFront_Face));
1684 GrAssert(kIncClamp_StencilOp ==
1685 fStencilSettings.failOp(GrStencilSettings::kFront_Face));
1686 break;
sugoi@google.com12b4e272012-12-06 20:13:11 +00001687 case SkPath::kEvenOdd_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001688 fillMode = GR_GL_INVERT;
1689 GrAssert(kInvert_StencilOp ==
1690 fStencilSettings.passOp(GrStencilSettings::kFront_Face));
1691 GrAssert(kInvert_StencilOp ==
1692 fStencilSettings.failOp(GrStencilSettings::kFront_Face));
1693 break;
1694 default:
1695 // Only the above two fill rules are allowed.
1696 GrCrash("Unexpected path fill.");
bsalomon@google.com548a4332012-07-11 19:45:22 +00001697 return; // suppress unused var warning.
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001698 }
1699 GrGLint writeMask = fStencilSettings.writeMask(GrStencilSettings::kFront_Face);
1700 GL_CALL(StencilFillPath(id, fillMode, writeMask));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001701}
1702
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001703void GrGpuGL::onResolveRenderTarget(GrRenderTarget* target) {
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001704 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001705 if (rt->needsResolve()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001706 // Some extensions automatically resolves the texture when it is read.
1707 if (this->glCaps().usesMSAARenderBuffers()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001708 GrAssert(rt->textureFBOID() != rt->renderFBOID());
1709 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()));
1710 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()));
1711 // make sure we go through flushRenderTarget() since we've modified
1712 // the bound DRAW FBO ID.
1713 fHWBoundRenderTarget = NULL;
1714 const GrGLIRect& vp = rt->getViewport();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +00001715 const SkIRect dirtyRect = rt->getResolveRect();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001716 GrGLIRect r;
1717 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
1718 dirtyRect.width(), dirtyRect.height(), target->origin());
reed@google.comac10a2d2010-12-22 21:39:39 +00001719
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001720 GrAutoTRestore<ScissorState> asr;
bsalomon@google.com347c3822013-05-01 20:10:01 +00001721 if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001722 // Apple's extension uses the scissor as the blit bounds.
bsalomon@google.coma3201942012-06-21 19:58:20 +00001723 asr.reset(&fScissorState);
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001724 fScissorState.fEnabled = true;
1725 fScissorState.fRect = dirtyRect;
bsalomon@google.coma3201942012-06-21 19:58:20 +00001726 this->flushScissor();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001727 GL_CALL(ResolveMultisampleFramebuffer());
1728 } else {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001729 if (GrGLCaps::kDesktop_EXT_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001730 // this respects the scissor during the blit, so disable it.
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001731 asr.reset(&fScissorState);
1732 fScissorState.fEnabled = false;
1733 this->flushScissor();
1734 }
1735 int right = r.fLeft + r.fWidth;
1736 int top = r.fBottom + r.fHeight;
1737 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
1738 r.fLeft, r.fBottom, right, top,
1739 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00001740 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001741 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001742 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00001743 }
1744}
1745
bsalomon@google.com411dad02012-06-05 20:24:20 +00001746namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00001747
bsalomon@google.com411dad02012-06-05 20:24:20 +00001748GrGLenum gr_to_gl_stencil_func(GrStencilFunc basicFunc) {
1749 static const GrGLenum gTable[] = {
1750 GR_GL_ALWAYS, // kAlways_StencilFunc
1751 GR_GL_NEVER, // kNever_StencilFunc
1752 GR_GL_GREATER, // kGreater_StencilFunc
1753 GR_GL_GEQUAL, // kGEqual_StencilFunc
1754 GR_GL_LESS, // kLess_StencilFunc
1755 GR_GL_LEQUAL, // kLEqual_StencilFunc,
1756 GR_GL_EQUAL, // kEqual_StencilFunc,
1757 GR_GL_NOTEQUAL, // kNotEqual_StencilFunc,
1758 };
1759 GR_STATIC_ASSERT(GR_ARRAY_COUNT(gTable) == kBasicStencilFuncCount);
1760 GR_STATIC_ASSERT(0 == kAlways_StencilFunc);
1761 GR_STATIC_ASSERT(1 == kNever_StencilFunc);
1762 GR_STATIC_ASSERT(2 == kGreater_StencilFunc);
1763 GR_STATIC_ASSERT(3 == kGEqual_StencilFunc);
1764 GR_STATIC_ASSERT(4 == kLess_StencilFunc);
1765 GR_STATIC_ASSERT(5 == kLEqual_StencilFunc);
1766 GR_STATIC_ASSERT(6 == kEqual_StencilFunc);
1767 GR_STATIC_ASSERT(7 == kNotEqual_StencilFunc);
1768 GrAssert((unsigned) basicFunc < kBasicStencilFuncCount);
1769
1770 return gTable[basicFunc];
1771}
1772
1773GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
1774 static const GrGLenum gTable[] = {
1775 GR_GL_KEEP, // kKeep_StencilOp
1776 GR_GL_REPLACE, // kReplace_StencilOp
1777 GR_GL_INCR_WRAP, // kIncWrap_StencilOp
1778 GR_GL_INCR, // kIncClamp_StencilOp
1779 GR_GL_DECR_WRAP, // kDecWrap_StencilOp
1780 GR_GL_DECR, // kDecClamp_StencilOp
1781 GR_GL_ZERO, // kZero_StencilOp
1782 GR_GL_INVERT, // kInvert_StencilOp
1783 };
1784 GR_STATIC_ASSERT(GR_ARRAY_COUNT(gTable) == kStencilOpCount);
1785 GR_STATIC_ASSERT(0 == kKeep_StencilOp);
1786 GR_STATIC_ASSERT(1 == kReplace_StencilOp);
1787 GR_STATIC_ASSERT(2 == kIncWrap_StencilOp);
1788 GR_STATIC_ASSERT(3 == kIncClamp_StencilOp);
1789 GR_STATIC_ASSERT(4 == kDecWrap_StencilOp);
1790 GR_STATIC_ASSERT(5 == kDecClamp_StencilOp);
1791 GR_STATIC_ASSERT(6 == kZero_StencilOp);
1792 GR_STATIC_ASSERT(7 == kInvert_StencilOp);
1793 GrAssert((unsigned) op < kStencilOpCount);
1794 return gTable[op];
1795}
1796
1797void set_gl_stencil(const GrGLInterface* gl,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001798 const GrStencilSettings& settings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001799 GrGLenum glFace,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001800 GrStencilSettings::Face grFace) {
1801 GrGLenum glFunc = gr_to_gl_stencil_func(settings.func(grFace));
1802 GrGLenum glFailOp = gr_to_gl_stencil_op(settings.failOp(grFace));
1803 GrGLenum glPassOp = gr_to_gl_stencil_op(settings.passOp(grFace));
1804
1805 GrGLint ref = settings.funcRef(grFace);
1806 GrGLint mask = settings.funcMask(grFace);
1807 GrGLint writeMask = settings.writeMask(grFace);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001808
1809 if (GR_GL_FRONT_AND_BACK == glFace) {
1810 // we call the combined func just in case separate stencil is not
1811 // supported.
1812 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
1813 GR_GL_CALL(gl, StencilMask(writeMask));
1814 GR_GL_CALL(gl, StencilOp(glFailOp, glPassOp, glPassOp));
1815 } else {
1816 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
1817 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
1818 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, glPassOp, glPassOp));
1819 }
1820}
1821}
bsalomon@google.comd302f142011-03-03 13:54:13 +00001822
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001823void GrGpuGL::flushStencil(DrawType type) {
1824 if (kStencilPath_DrawType == type) {
1825 GrAssert(!fStencilSettings.isTwoSided());
1826 // Just the func, ref, and mask is set here. The op and write mask are params to the call
1827 // that draws the path to the SB (glStencilFillPath)
1828 GrGLenum func =
1829 gr_to_gl_stencil_func(fStencilSettings.func(GrStencilSettings::kFront_Face));
1830 GL_CALL(PathStencilFunc(func,
1831 fStencilSettings.funcRef(GrStencilSettings::kFront_Face),
1832 fStencilSettings.funcMask(GrStencilSettings::kFront_Face)));
1833 } else if (fHWStencilSettings != fStencilSettings) {
1834 if (fStencilSettings.isDisabled()) {
1835 if (kNo_TriState != fHWStencilTestEnabled) {
1836 GL_CALL(Disable(GR_GL_STENCIL_TEST));
1837 fHWStencilTestEnabled = kNo_TriState;
1838 }
1839 } else {
1840 if (kYes_TriState != fHWStencilTestEnabled) {
1841 GL_CALL(Enable(GR_GL_STENCIL_TEST));
1842 fHWStencilTestEnabled = kYes_TriState;
1843 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001844 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001845 if (!fStencilSettings.isDisabled()) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001846 if (this->caps()->twoSidedStencilSupport()) {
bsalomon@google.com411dad02012-06-05 20:24:20 +00001847 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001848 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001849 GR_GL_FRONT,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001850 GrStencilSettings::kFront_Face);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001851 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001852 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001853 GR_GL_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001854 GrStencilSettings::kBack_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00001855 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00001856 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001857 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001858 GR_GL_FRONT_AND_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001859 GrStencilSettings::kFront_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00001860 }
1861 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001862 fHWStencilSettings = fStencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00001863 }
1864}
1865
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001866void GrGpuGL::flushAAState(DrawType type) {
bsalomon@google.com202d1392013-03-19 18:58:08 +00001867// At least some ATI linux drivers will render GL_LINES incorrectly when MSAA state is enabled but
1868// the target is not multisampled. Single pixel wide lines are rendered thicker than 1 pixel wide.
1869#if 0
1870 // Replace RT_HAS_MSAA with this definition once this driver bug is no longer a relevant concern
1871 #define RT_HAS_MSAA rt->isMultisampled()
1872#else
1873 #define RT_HAS_MSAA (rt->isMultisampled() || kDrawLines_DrawType == type)
1874#endif
1875
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001876 const GrRenderTarget* rt = this->getDrawState().getRenderTarget();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001877 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001878 // ES doesn't support toggling GL_MULTISAMPLE and doesn't have
1879 // smooth lines.
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001880 // we prefer smooth lines over multisampled lines
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001881 bool smoothLines = false;
1882
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001883 if (kDrawLines_DrawType == type) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001884 smoothLines = this->willUseHWAALines();
1885 if (smoothLines) {
1886 if (kYes_TriState != fHWAAState.fSmoothLineEnabled) {
1887 GL_CALL(Enable(GR_GL_LINE_SMOOTH));
1888 fHWAAState.fSmoothLineEnabled = kYes_TriState;
1889 // must disable msaa to use line smoothing
bsalomon@google.com202d1392013-03-19 18:58:08 +00001890 if (RT_HAS_MSAA &&
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001891 kNo_TriState != fHWAAState.fMSAAEnabled) {
1892 GL_CALL(Disable(GR_GL_MULTISAMPLE));
1893 fHWAAState.fMSAAEnabled = kNo_TriState;
1894 }
1895 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001896 } else {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001897 if (kNo_TriState != fHWAAState.fSmoothLineEnabled) {
1898 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
1899 fHWAAState.fSmoothLineEnabled = kNo_TriState;
1900 }
1901 }
1902 }
bsalomon@google.com202d1392013-03-19 18:58:08 +00001903 if (!smoothLines && RT_HAS_MSAA) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001904 // FIXME: GL_NV_pr doesn't seem to like MSAA disabled. The paths
1905 // convex hulls of each segment appear to get filled.
1906 bool enableMSAA = kStencilPath_DrawType == type ||
1907 this->getDrawState().isHWAntialiasState();
1908 if (enableMSAA) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001909 if (kYes_TriState != fHWAAState.fMSAAEnabled) {
1910 GL_CALL(Enable(GR_GL_MULTISAMPLE));
1911 fHWAAState.fMSAAEnabled = kYes_TriState;
1912 }
1913 } else {
1914 if (kNo_TriState != fHWAAState.fMSAAEnabled) {
1915 GL_CALL(Disable(GR_GL_MULTISAMPLE));
1916 fHWAAState.fMSAAEnabled = kNo_TriState;
1917 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001918 }
1919 }
1920 }
1921}
1922
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001923void GrGpuGL::flushBlend(bool isLines,
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001924 GrBlendCoeff srcCoeff,
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001925 GrBlendCoeff dstCoeff) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001926 if (isLines && this->willUseHWAALines()) {
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001927 if (kYes_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001928 GL_CALL(Enable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001929 fHWBlendState.fEnabled = kYes_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001930 }
bsalomon@google.com47059542012-06-06 20:51:20 +00001931 if (kSA_GrBlendCoeff != fHWBlendState.fSrcCoeff ||
1932 kISA_GrBlendCoeff != fHWBlendState.fDstCoeff) {
1933 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[kSA_GrBlendCoeff],
1934 gXfermodeCoeff2Blend[kISA_GrBlendCoeff]));
1935 fHWBlendState.fSrcCoeff = kSA_GrBlendCoeff;
1936 fHWBlendState.fDstCoeff = kISA_GrBlendCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001937 }
1938 } else {
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001939 // any optimization to disable blending should
1940 // have already been applied and tweaked the coeffs
1941 // to (1, 0).
bsalomon@google.com47059542012-06-06 20:51:20 +00001942 bool blendOff = kOne_GrBlendCoeff == srcCoeff &&
1943 kZero_GrBlendCoeff == dstCoeff;
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001944 if (blendOff) {
1945 if (kNo_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001946 GL_CALL(Disable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001947 fHWBlendState.fEnabled = kNo_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001948 }
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001949 } else {
1950 if (kYes_TriState != fHWBlendState.fEnabled) {
1951 GL_CALL(Enable(GR_GL_BLEND));
1952 fHWBlendState.fEnabled = kYes_TriState;
1953 }
1954 if (fHWBlendState.fSrcCoeff != srcCoeff ||
1955 fHWBlendState.fDstCoeff != dstCoeff) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001956 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
1957 gXfermodeCoeff2Blend[dstCoeff]));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001958 fHWBlendState.fSrcCoeff = srcCoeff;
1959 fHWBlendState.fDstCoeff = dstCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001960 }
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00001961 GrColor blendConst = this->getDrawState().getBlendConstant();
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001962 if ((BlendCoeffReferencesConstant(srcCoeff) ||
1963 BlendCoeffReferencesConstant(dstCoeff)) &&
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001964 (!fHWBlendState.fConstColorValid ||
1965 fHWBlendState.fConstColor != blendConst)) {
bsalomon@google.com75347472012-09-17 17:23:21 +00001966 GrGLfloat c[4];
1967 GrColorToRGBAFloat(blendConst, c);
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001968 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001969 fHWBlendState.fConstColor = blendConst;
1970 fHWBlendState.fConstColorValid = true;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001971 }
1972 }
1973 }
1974}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001975namespace {
1976
bsalomon@google.com6d003d12012-09-11 15:45:20 +00001977inline void set_tex_swizzle(GrGLenum swizzle[4], const GrGLInterface* gl) {
bsalomon@google.com4d063de2012-05-31 17:59:23 +00001978 GR_GL_CALL(gl, TexParameteriv(GR_GL_TEXTURE_2D,
1979 GR_GL_TEXTURE_SWIZZLE_RGBA,
1980 reinterpret_cast<const GrGLint*>(swizzle)));
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001981}
bsalomon@google.comb8670992012-07-25 21:27:09 +00001982
bsalomon@google.com6c76d242012-09-07 16:52:24 +00001983inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00001984 static const GrGLenum gWrapModes[] = {
1985 GR_GL_CLAMP_TO_EDGE,
1986 GR_GL_REPEAT,
1987 GR_GL_MIRRORED_REPEAT
1988 };
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +00001989 GR_STATIC_ASSERT(SkShader::kTileModeCount == SK_ARRAY_COUNT(gWrapModes));
bsalomon@google.comb8670992012-07-25 21:27:09 +00001990 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
1991 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
1992 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
1993 return gWrapModes[tm];
1994}
1995
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001996}
1997
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001998void GrGpuGL::bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture) {
1999 GrAssert(NULL != texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00002000
bsalomon@google.comb8670992012-07-25 21:27:09 +00002001 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
2002 // 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 +00002003 // out of the "last != next" check.
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002004 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002005 if (NULL != texRT) {
2006 this->onResolveRenderTarget(texRT);
2007 }
2008
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002009 if (fHWBoundTextures[unitIdx] != texture) {
2010 this->setTextureUnit(unitIdx);
2011 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texture->textureID()));
2012 fHWBoundTextures[unitIdx] = texture;
bsalomon@google.com4c883782012-06-04 19:05:11 +00002013 }
2014
bsalomon@google.com4c883782012-06-04 19:05:11 +00002015 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002016 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002017 bool setAll = timestamp < this->getResetTimestamp();
2018 GrGLTexture::TexParams newTexParams;
2019
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002020 static GrGLenum glMinFilterModes[] = {
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002021 GR_GL_NEAREST,
2022 GR_GL_LINEAR,
2023 GR_GL_LINEAR_MIPMAP_LINEAR
2024 };
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002025 static GrGLenum glMagFilterModes[] = {
2026 GR_GL_NEAREST,
2027 GR_GL_LINEAR,
2028 GR_GL_LINEAR
2029 };
2030 newTexParams.fMinFilter = glMinFilterModes[params.filterMode()];
2031 newTexParams.fMagFilter = glMagFilterModes[params.filterMode()];
commit-bot@chromium.orgcffff792013-07-26 16:36:04 +00002032
2033#ifndef SKIA_IGNORE_GPU_MIPMAPS
2034 if (params.filterMode() == GrTextureParams::kMipMap_FilterMode &&
2035 texture->mipMapsAreDirty()) {
2036// GL_CALL(Hint(GR_GL_GENERATE_MIPMAP_HINT,GR_GL_NICEST));
2037 GL_CALL(GenerateMipmap(GR_GL_TEXTURE_2D));
2038 texture->dirtyMipMaps(false);
2039 }
2040#endif
bsalomon@google.com4c883782012-06-04 19:05:11 +00002041
bsalomon@google.comb8670992012-07-25 21:27:09 +00002042 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
2043 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002044 memcpy(newTexParams.fSwizzleRGBA,
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002045 GrGLShaderBuilder::GetTexParamSwizzle(texture->config(), this->glCaps()),
bsalomon@google.com4c883782012-06-04 19:05:11 +00002046 sizeof(newTexParams.fSwizzleRGBA));
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002047 if (setAll || newTexParams.fMagFilter != oldTexParams.fMagFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002048 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002049 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2050 GR_GL_TEXTURE_MAG_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002051 newTexParams.fMagFilter));
2052 }
2053 if (setAll || newTexParams.fMinFilter != oldTexParams.fMinFilter) {
2054 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002055 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2056 GR_GL_TEXTURE_MIN_FILTER,
commit-bot@chromium.org149f4f52013-07-26 20:40:06 +00002057 newTexParams.fMinFilter));
bsalomon@google.com4c883782012-06-04 19:05:11 +00002058 }
2059 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002060 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002061 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2062 GR_GL_TEXTURE_WRAP_S,
2063 newTexParams.fWrapS));
2064 }
2065 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002066 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002067 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2068 GR_GL_TEXTURE_WRAP_T,
2069 newTexParams.fWrapT));
2070 }
2071 if (this->glCaps().textureSwizzleSupport() &&
2072 (setAll || memcmp(newTexParams.fSwizzleRGBA,
2073 oldTexParams.fSwizzleRGBA,
2074 sizeof(newTexParams.fSwizzleRGBA)))) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002075 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002076 set_tex_swizzle(newTexParams.fSwizzleRGBA,
2077 this->glInterface());
2078 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002079 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002080}
2081
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002082void GrGpuGL::flushMiscFixedFunctionState() {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002083
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002084 const GrDrawState& drawState = this->getDrawState();
reed@google.comac10a2d2010-12-22 21:39:39 +00002085
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002086 if (drawState.isDitherState()) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002087 if (kYes_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002088 GL_CALL(Enable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002089 fHWDitherEnabled = kYes_TriState;
2090 }
2091 } else {
2092 if (kNo_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002093 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002094 fHWDitherEnabled = kNo_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +00002095 }
2096 }
2097
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002098 if (drawState.isColorWriteDisabled()) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002099 if (kNo_TriState != fHWWriteToColor) {
2100 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
2101 GR_GL_FALSE, GR_GL_FALSE));
2102 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002103 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002104 } else {
2105 if (kYes_TriState != fHWWriteToColor) {
2106 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
2107 fHWWriteToColor = kYes_TriState;
2108 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00002109 }
2110
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002111 if (fHWDrawFace != drawState.getDrawFace()) {
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00002112 switch (this->getDrawState().getDrawFace()) {
tomhudson@google.com93813632011-10-27 20:21:16 +00002113 case GrDrawState::kCCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002114 GL_CALL(Enable(GR_GL_CULL_FACE));
2115 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002116 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002117 case GrDrawState::kCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002118 GL_CALL(Enable(GR_GL_CULL_FACE));
2119 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002120 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002121 case GrDrawState::kBoth_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002122 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002123 break;
2124 default:
2125 GrCrash("Unknown draw face.");
2126 }
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002127 fHWDrawFace = drawState.getDrawFace();
bsalomon@google.comd302f142011-03-03 13:54:13 +00002128 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002129}
2130
reed@google.comac10a2d2010-12-22 21:39:39 +00002131void GrGpuGL::notifyRenderTargetDelete(GrRenderTarget* renderTarget) {
2132 GrAssert(NULL != renderTarget);
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002133 if (fHWBoundRenderTarget == renderTarget) {
2134 fHWBoundRenderTarget = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00002135 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002136}
2137
2138void GrGpuGL::notifyTextureDelete(GrGLTexture* texture) {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002139 for (int s = 0; s < fHWBoundTextures.count(); ++s) {
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002140 if (fHWBoundTextures[s] == texture) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002141 // deleting bound texture does implied bind to 0
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002142 fHWBoundTextures[s] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002143 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002144 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002145}
2146
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002147bool GrGpuGL::configToGLFormats(GrPixelConfig config,
2148 bool getSizedInternalFormat,
2149 GrGLenum* internalFormat,
2150 GrGLenum* externalFormat,
2151 GrGLenum* externalType) {
2152 GrGLenum dontCare;
2153 if (NULL == internalFormat) {
2154 internalFormat = &dontCare;
2155 }
2156 if (NULL == externalFormat) {
2157 externalFormat = &dontCare;
2158 }
2159 if (NULL == externalType) {
2160 externalType = &dontCare;
2161 }
2162
reed@google.comac10a2d2010-12-22 21:39:39 +00002163 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00002164 case kRGBA_8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +00002165 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002166 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002167 if (getSizedInternalFormat) {
2168 *internalFormat = GR_GL_RGBA8;
2169 } else {
2170 *internalFormat = GR_GL_RGBA;
2171 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002172 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002173 break;
bsalomon@google.com0342a852012-08-20 19:22:38 +00002174 case kBGRA_8888_GrPixelConfig:
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002175 if (!this->glCaps().bgraFormatSupport()) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00002176 return false;
2177 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002178 if (this->glCaps().bgraIsInternalFormat()) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002179 if (getSizedInternalFormat) {
2180 *internalFormat = GR_GL_BGRA8;
2181 } else {
2182 *internalFormat = GR_GL_BGRA;
2183 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002184 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002185 if (getSizedInternalFormat) {
2186 *internalFormat = GR_GL_RGBA8;
2187 } else {
2188 *internalFormat = GR_GL_RGBA;
2189 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002190 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002191 *externalFormat = GR_GL_BGRA;
bsalomon@google.com6f379512011-11-16 20:36:03 +00002192 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002193 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002194 case kRGB_565_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002195 *internalFormat = GR_GL_RGB;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002196 *externalFormat = GR_GL_RGB;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002197 if (getSizedInternalFormat) {
2198 if (this->glBinding() == kDesktop_GrGLBinding) {
2199 return false;
2200 } else {
2201 *internalFormat = GR_GL_RGB565;
2202 }
2203 } else {
2204 *internalFormat = GR_GL_RGB;
2205 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002206 *externalType = GR_GL_UNSIGNED_SHORT_5_6_5;
reed@google.comac10a2d2010-12-22 21:39:39 +00002207 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002208 case kRGBA_4444_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002209 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002210 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002211 if (getSizedInternalFormat) {
2212 *internalFormat = GR_GL_RGBA4;
2213 } else {
2214 *internalFormat = GR_GL_RGBA;
2215 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002216 *externalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
reed@google.comac10a2d2010-12-22 21:39:39 +00002217 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002218 case kIndex_8_GrPixelConfig:
bsalomon@google.combcce8922013-03-25 15:38:39 +00002219 if (this->caps()->eightBitPaletteSupport()) {
bsalomon@google.comc312bf92011-03-21 21:10:33 +00002220 *internalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002221 // glCompressedTexImage doesn't take external params
2222 *externalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002223 // no sized/unsized internal format distinction here
2224 *internalFormat = GR_GL_PALETTE8_RGBA8;
2225 // unused with CompressedTexImage
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002226 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002227 } else {
2228 return false;
2229 }
2230 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002231 case kAlpha_8_GrPixelConfig:
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002232 if (this->glCaps().textureRedSupport()) {
2233 *internalFormat = GR_GL_RED;
2234 *externalFormat = GR_GL_RED;
2235 if (getSizedInternalFormat) {
2236 *internalFormat = GR_GL_R8;
2237 } else {
2238 *internalFormat = GR_GL_RED;
2239 }
2240 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002241 } else {
2242 *internalFormat = GR_GL_ALPHA;
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002243 *externalFormat = GR_GL_ALPHA;
2244 if (getSizedInternalFormat) {
2245 *internalFormat = GR_GL_ALPHA8;
2246 } else {
2247 *internalFormat = GR_GL_ALPHA;
2248 }
2249 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002250 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002251 break;
2252 default:
2253 return false;
2254 }
2255 return true;
2256}
2257
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002258void GrGpuGL::setTextureUnit(int unit) {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002259 GrAssert(unit >= 0 && unit < fHWBoundTextures.count());
2260 if (unit != fHWActiveTextureUnitIdx) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002261 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00002262 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002263 }
2264}
bsalomon@google.com316f99232011-01-13 21:28:12 +00002265
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002266void GrGpuGL::setScratchTextureUnit() {
2267 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
2268 int lastUnitIdx = fHWBoundTextures.count() - 1;
2269 if (lastUnitIdx != fHWActiveTextureUnitIdx) {
2270 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx));
2271 fHWActiveTextureUnitIdx = lastUnitIdx;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002272 }
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002273 // clear out the this field so that if a program does use this unit it will rebind the correct
2274 // texture.
2275 fHWBoundTextures[lastUnitIdx] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002276}
2277
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002278namespace {
2279// Determines whether glBlitFramebuffer could be used between src and dst.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002280inline bool can_blit_framebuffer(const GrSurface* dst,
2281 const GrSurface* src,
2282 const GrGpuGL* gpu,
2283 bool* wouldNeedTempFBO = NULL) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00002284 if (gpu->isConfigRenderable(dst->config()) &&
2285 gpu->isConfigRenderable(src->config()) &&
2286 gpu->glCaps().usesMSAARenderBuffers()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002287 if (NULL != wouldNeedTempFBO) {
2288 *wouldNeedTempFBO = NULL == dst->asRenderTarget() || NULL == src->asRenderTarget();
2289 }
2290 return true;
2291 } else {
2292 return false;
2293 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002294}
bsalomon@google.comeb851172013-04-15 13:51:00 +00002295
2296inline bool can_copy_texsubimage(const GrSurface* dst,
2297 const GrSurface* src,
2298 const GrGpuGL* gpu,
2299 bool* wouldNeedTempFBO = NULL) {
2300 // Table 3.9 of the ES2 spec indicates the supported formats with CopyTexSubImage
2301 // and BGRA isn't in the spec. There doesn't appear to be any extension that adds it. Perhaps
2302 // many drivers would allow it to work, but ANGLE does not.
2303 if (kES2_GrGLBinding == gpu->glBinding() && gpu->glCaps().bgraIsInternalFormat() &&
2304 (kBGRA_8888_GrPixelConfig == dst->config() || kBGRA_8888_GrPixelConfig == src->config())) {
2305 return false;
2306 }
2307 const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget());
2308 // If dst is multisampled (and uses an extension where there is a separate MSAA renderbuffer)
2309 // then we don't want to copy to the texture but to the MSAA buffer.
2310 if (NULL != dstRT && dstRT->renderFBOID() != dstRT->textureFBOID()) {
2311 return false;
2312 }
bsalomon@google.coma2719852013-04-17 14:25:27 +00002313 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2314 // If the src is multisampled (and uses an extension where there is a separate MSAA
2315 // renderbuffer) then it is an invalid operation to call CopyTexSubImage
2316 if (NULL != srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
2317 return false;
2318 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002319 if (gpu->isConfigRenderable(src->config()) && NULL != dst->asTexture() &&
2320 dst->origin() == src->origin() && kIndex_8_GrPixelConfig != src->config()) {
2321 if (NULL != wouldNeedTempFBO) {
2322 *wouldNeedTempFBO = NULL == src->asRenderTarget();
2323 }
2324 return true;
2325 } else {
2326 return false;
2327 }
2328}
2329
2330// If a temporary FBO was created, its non-zero ID is returned. The viewport that the copy rect is
2331// relative to is output.
2332inline GrGLuint bind_surface_as_fbo(const GrGLInterface* gl,
2333 GrSurface* surface,
2334 GrGLenum fboTarget,
2335 GrGLIRect* viewport) {
2336 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
2337 GrGLuint tempFBOID;
2338 if (NULL == rt) {
2339 GrAssert(NULL != surface->asTexture());
2340 GrGLuint texID = static_cast<GrGLTexture*>(surface->asTexture())->textureID();
2341 GR_GL_CALL(gl, GenFramebuffers(1, &tempFBOID));
2342 GR_GL_CALL(gl, BindFramebuffer(fboTarget, tempFBOID));
2343 GR_GL_CALL(gl, FramebufferTexture2D(fboTarget,
2344 GR_GL_COLOR_ATTACHMENT0,
2345 GR_GL_TEXTURE_2D,
2346 texID,
2347 0));
2348 viewport->fLeft = 0;
2349 viewport->fBottom = 0;
2350 viewport->fWidth = surface->width();
2351 viewport->fHeight = surface->height();
2352 } else {
2353 tempFBOID = 0;
2354 GR_GL_CALL(gl, BindFramebuffer(fboTarget, rt->renderFBOID()));
2355 *viewport = rt->getViewport();
2356 }
2357 return tempFBOID;
2358}
2359
2360}
2361
2362void GrGpuGL::initCopySurfaceDstDesc(const GrSurface* src, GrTextureDesc* desc) {
2363 // Check for format issues with glCopyTexSubImage2D
2364 if (kES2_GrGLBinding == this->glBinding() && this->glCaps().bgraIsInternalFormat() &&
2365 kBGRA_8888_GrPixelConfig == src->config()) {
2366 // glCopyTexSubImage2D doesn't work with this config. We'll want to make it a render target
bsalomon@google.com31c4e892013-04-15 13:55:02 +00002367 // in order to call glBlitFramebuffer or to copy to it by rendering.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002368 INHERITED::initCopySurfaceDstDesc(src, desc);
bsalomon@google.coma2719852013-04-17 14:25:27 +00002369 return;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002370 } else if (NULL == src->asRenderTarget()) {
2371 // We don't want to have to create an FBO just to use glCopyTexSubImage2D. Let the base
2372 // class handle it by rendering.
2373 INHERITED::initCopySurfaceDstDesc(src, desc);
bsalomon@google.coma2719852013-04-17 14:25:27 +00002374 return;
2375 }
2376
2377 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2378 if (NULL != srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
2379 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer.
2380 INHERITED::initCopySurfaceDstDesc(src, desc);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002381 } else {
2382 desc->fConfig = src->config();
2383 desc->fOrigin = src->origin();
2384 desc->fFlags = kNone_GrTextureFlags;
2385 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002386}
2387
2388bool GrGpuGL::onCopySurface(GrSurface* dst,
2389 GrSurface* src,
2390 const SkIRect& srcRect,
2391 const SkIPoint& dstPoint) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002392 bool inheritedCouldCopy = INHERITED::onCanCopySurface(dst, src, srcRect, dstPoint);
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002393 bool copied = false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002394 bool wouldNeedTempFBO = false;
2395 if (can_copy_texsubimage(dst, src, this, &wouldNeedTempFBO) &&
2396 (!wouldNeedTempFBO || !inheritedCouldCopy)) {
2397 GrGLuint srcFBO;
2398 GrGLIRect srcVP;
2399 srcFBO = bind_surface_as_fbo(this->glInterface(), src, GR_GL_FRAMEBUFFER, &srcVP);
2400 GrGLTexture* dstTex = static_cast<GrGLTexture*>(dst->asTexture());
2401 GrAssert(NULL != dstTex);
2402 // We modified the bound FBO
2403 fHWBoundRenderTarget = NULL;
2404 GrGLIRect srcGLRect;
2405 srcGLRect.setRelativeTo(srcVP,
2406 srcRect.fLeft,
2407 srcRect.fTop,
2408 srcRect.width(),
2409 srcRect.height(),
2410 src->origin());
2411
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002412 this->setScratchTextureUnit();
bsalomon@google.comeb851172013-04-15 13:51:00 +00002413 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, dstTex->textureID()));
2414 GrGLint dstY;
2415 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
2416 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
2417 } else {
2418 dstY = dstPoint.fY;
2419 }
2420 GL_CALL(CopyTexSubImage2D(GR_GL_TEXTURE_2D, 0,
2421 dstPoint.fX, dstY,
2422 srcGLRect.fLeft, srcGLRect.fBottom,
2423 srcGLRect.fWidth, srcGLRect.fHeight));
2424 copied = true;
2425 if (srcFBO) {
2426 GL_CALL(DeleteFramebuffers(1, &srcFBO));
2427 }
2428 } else if (can_blit_framebuffer(dst, src, this, &wouldNeedTempFBO) &&
2429 (!wouldNeedTempFBO || !inheritedCouldCopy)) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002430 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2431 srcRect.width(), srcRect.height());
2432 bool selfOverlap = false;
2433 if (dst->isSameAs(src)) {
2434 selfOverlap = SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect);
2435 }
2436
2437 if (!selfOverlap) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002438 GrGLuint dstFBO;
2439 GrGLuint srcFBO;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002440 GrGLIRect dstVP;
2441 GrGLIRect srcVP;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002442 dstFBO = bind_surface_as_fbo(this->glInterface(), dst, GR_GL_DRAW_FRAMEBUFFER, &dstVP);
2443 srcFBO = bind_surface_as_fbo(this->glInterface(), src, GR_GL_READ_FRAMEBUFFER, &srcVP);
2444 // We modified the bound FBO
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002445 fHWBoundRenderTarget = NULL;
2446 GrGLIRect srcGLRect;
2447 GrGLIRect dstGLRect;
2448 srcGLRect.setRelativeTo(srcVP,
2449 srcRect.fLeft,
2450 srcRect.fTop,
2451 srcRect.width(),
2452 srcRect.height(),
2453 src->origin());
2454 dstGLRect.setRelativeTo(dstVP,
2455 dstRect.fLeft,
2456 dstRect.fTop,
2457 dstRect.width(),
2458 dstRect.height(),
2459 dst->origin());
2460
2461 GrAutoTRestore<ScissorState> asr;
bsalomon@google.com347c3822013-05-01 20:10:01 +00002462 if (GrGLCaps::kDesktop_EXT_MSFBOType == this->glCaps().msFBOType()) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002463 // The EXT version applies the scissor during the blit, so disable it.
2464 asr.reset(&fScissorState);
2465 fScissorState.fEnabled = false;
2466 this->flushScissor();
2467 }
2468 GrGLint srcY0;
2469 GrGLint srcY1;
2470 // Does the blit need to y-mirror or not?
2471 if (src->origin() == dst->origin()) {
2472 srcY0 = srcGLRect.fBottom;
2473 srcY1 = srcGLRect.fBottom + srcGLRect.fHeight;
2474 } else {
2475 srcY0 = srcGLRect.fBottom + srcGLRect.fHeight;
2476 srcY1 = srcGLRect.fBottom;
2477 }
2478 GL_CALL(BlitFramebuffer(srcGLRect.fLeft,
2479 srcY0,
2480 srcGLRect.fLeft + srcGLRect.fWidth,
2481 srcY1,
2482 dstGLRect.fLeft,
2483 dstGLRect.fBottom,
2484 dstGLRect.fLeft + dstGLRect.fWidth,
2485 dstGLRect.fBottom + dstGLRect.fHeight,
2486 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
2487 if (dstFBO) {
2488 GL_CALL(DeleteFramebuffers(1, &dstFBO));
2489 }
2490 if (srcFBO) {
2491 GL_CALL(DeleteFramebuffers(1, &srcFBO));
2492 }
2493 copied = true;
2494 }
2495 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002496 if (!copied && inheritedCouldCopy) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002497 copied = INHERITED::onCopySurface(dst, src, srcRect, dstPoint);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002498 GrAssert(copied);
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002499 }
2500 return copied;
2501}
2502
2503bool GrGpuGL::onCanCopySurface(GrSurface* dst,
2504 GrSurface* src,
2505 const SkIRect& srcRect,
2506 const SkIPoint& dstPoint) {
2507 // This mirrors the logic in onCopySurface.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002508 if (can_copy_texsubimage(dst, src, this)) {
2509 return true;
2510 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002511 if (can_blit_framebuffer(dst, src, this)) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002512 if (dst->isSameAs(src)) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002513 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2514 srcRect.width(), srcRect.height());
2515 if(!SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) {
2516 return true;
2517 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002518 } else {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002519 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002520 }
2521 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002522 return INHERITED::onCanCopySurface(dst, src, srcRect, dstPoint);
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002523}
2524
2525
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002526///////////////////////////////////////////////////////////////////////////////
2527
bsalomon@google.com6918d482013-03-07 19:09:11 +00002528GrGLAttribArrayState* GrGpuGL::HWGeometryState::bindArrayAndBuffersToDraw(
2529 GrGpuGL* gpu,
2530 const GrGLVertexBuffer* vbuffer,
2531 const GrGLIndexBuffer* ibuffer) {
2532 GrAssert(NULL != vbuffer);
robertphillips@google.com4f65a272013-03-26 19:40:46 +00002533 GrGLAttribArrayState* attribState;
2534
bsalomon@google.com6918d482013-03-07 19:09:11 +00002535 // We use a vertex array if we're on a core profile and the verts are in a VBO.
2536 if (gpu->glCaps().isCoreProfile() && !vbuffer->isCPUBacked()) {
2537 if (NULL == fVBOVertexArray || !fVBOVertexArray->isValid()) {
2538 SkSafeUnref(fVBOVertexArray);
2539 GrGLuint arrayID;
2540 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID));
2541 int attrCount = gpu->glCaps().maxVertexAttributes();
2542 fVBOVertexArray = SkNEW_ARGS(GrGLVertexArray, (gpu, arrayID, attrCount));
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002543 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002544 attribState = fVBOVertexArray->bindWithIndexBuffer(ibuffer);
2545 } else {
2546 if (NULL != ibuffer) {
2547 this->setIndexBufferIDOnDefaultVertexArray(gpu, ibuffer->bufferID());
2548 } else {
2549 this->setVertexArrayID(gpu, 0);
2550 }
2551 int attrCount = gpu->glCaps().maxVertexAttributes();
2552 if (fDefaultVertexArrayAttribState.count() != attrCount) {
2553 fDefaultVertexArrayAttribState.resize(attrCount);
2554 }
2555 attribState = &fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002556 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002557 return attribState;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002558}