blob: a2ff1fd57618af1709d989c854be164beefd3701 [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;
reed@google.comac10a2d2010-12-22 21:39:39 +0000156}
157
158GrGpuGL::~GrGpuGL() {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000159 if (0 != fHWProgramID) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000160 // detach the current program so there is no confusion on OpenGL's part
161 // that we want it to be deleted
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000162 GrAssert(fHWProgramID == fCurrentProgram->programID());
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000163 GL_CALL(UseProgram(0));
164 }
165
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000166 delete fProgramCache;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000167
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000168 // This must be called by before the GrDrawTarget destructor
169 this->releaseGeometry();
bsalomon@google.com15b11df2011-09-16 21:18:29 +0000170 // This subclass must do this before the base class destructor runs
171 // since we will unref the GrGLInterface.
172 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +0000173}
174
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000175///////////////////////////////////////////////////////////////////////////////
176
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000177void GrGpuGL::fillInConfigRenderableTable() {
178
179 // OpenGL < 3.0
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000180 // no support for render targets unless the GL_ARB_framebuffer_object
181 // extension is supported (in which case we get ALPHA, RED, RG, RGB,
182 // RGBA (ALPHA8, RGBA4, RGBA8) for OpenGL > 1.1). Note that we
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000183 // probably don't get R8 in this case.
184
185 // OpenGL 3.0
186 // base color renderable: ALPHA, RED, RG, RGB, and RGBA
187 // sized derivatives: ALPHA8, R8, RGBA4, RGBA8
188
189 // >= OpenGL 3.1
190 // base color renderable: RED, RG, RGB, and RGBA
191 // sized derivatives: R8, RGBA4, RGBA8
192 // if the GL_ARB_compatibility extension is supported then we get back
193 // support for GL_ALPHA and ALPHA8
194
195 // GL_EXT_bgra adds BGRA render targets to any version
196
197 // ES 2.0
198 // color renderable: RGBA4, RGB5_A1, RGB565
199 // GL_EXT_texture_rg adds support for R8 as a color render target
200 // GL_OES_rgb8_rgba8 and/or GL_ARM_rgba8 adds support for RGBA8
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000201 // GL_EXT_texture_format_BGRA8888 and/or GL_APPLE_texture_format_BGRA8888 added BGRA support
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000202
203 if (kDesktop_GrGLBinding == this->glBinding()) {
204 // Post 3.0 we will get R8
205 // Prior to 3.0 we will get ALPHA8 (with GL_ARB_framebuffer_object)
206 if (this->glVersion() >= GR_GL_VER(3,0) ||
207 this->hasExtension("GL_ARB_framebuffer_object")) {
208 fConfigRenderSupport[kAlpha_8_GrPixelConfig] = true;
209 }
210 } else {
211 // On ES we can only hope for R8
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000212 fConfigRenderSupport[kAlpha_8_GrPixelConfig] =
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000213 this->glCaps().textureRedSupport();
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000214 }
215
216 if (kDesktop_GrGLBinding != this->glBinding()) {
217 // only available in ES
218 fConfigRenderSupport[kRGB_565_GrPixelConfig] = true;
219 }
220
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000221 // Pre 3.0, Ganesh relies on either GL_ARB_framebuffer_object or
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000222 // GL_EXT_framebuffer_object for FBO support. Both of these
223 // allow RGBA4 render targets so this is always supported.
224 fConfigRenderSupport[kRGBA_4444_GrPixelConfig] = true;
225
226 if (this->glCaps().rgba8RenderbufferSupport()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000227 fConfigRenderSupport[kRGBA_8888_GrPixelConfig] = true;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000228 }
229
230 if (this->glCaps().bgraFormatSupport()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000231 fConfigRenderSupport[kBGRA_8888_GrPixelConfig] = true;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000232 }
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000233}
234
bsalomon@google.com9c680582013-02-06 18:17:50 +0000235namespace {
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000236GrPixelConfig preferred_pixel_ops_config(GrPixelConfig cpuConfig, GrPixelConfig surfaceConfig) {
237 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == cpuConfig) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000238 return kBGRA_8888_GrPixelConfig;
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000239 } else if (GrBytesPerPixel(cpuConfig) == 4 &&
240 GrPixelConfigSwapRAndB(cpuConfig) == surfaceConfig) {
241 // Mesa 3D takes a slow path on when reading back BGRA from an RGBA surface and vice-versa.
242 // Perhaps this should be guarded by some compiletime or runtime check.
243 return surfaceConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000244 } else {
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000245 return cpuConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000246 }
247}
bsalomon@google.com9c680582013-02-06 18:17:50 +0000248}
249
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000250GrPixelConfig GrGpuGL::preferredReadPixelsConfig(GrPixelConfig readConfig,
251 GrPixelConfig surfaceConfig) const {
252 return preferred_pixel_ops_config(readConfig, surfaceConfig);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000253}
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000254
commit-bot@chromium.org5d1d79a2013-05-24 18:52:52 +0000255GrPixelConfig GrGpuGL::preferredWritePixelsConfig(GrPixelConfig writeConfig,
256 GrPixelConfig surfaceConfig) const {
257 return preferred_pixel_ops_config(writeConfig, surfaceConfig);
bsalomon@google.com9c680582013-02-06 18:17:50 +0000258}
259
260bool GrGpuGL::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
261 if (kIndex_8_GrPixelConfig == srcConfig || kIndex_8_GrPixelConfig == texture->config()) {
262 return false;
263 }
264 if (srcConfig != texture->config() && kES2_GrGLBinding == this->glBinding()) {
265 // In general ES2 requires the internal format of the texture and the format of the src
266 // pixels to match. However, It may or may not be possible to upload BGRA data to a RGBA
267 // texture. It depends upon which extension added BGRA. The Apple extension allows it
268 // (BGRA's internal format is RGBA) while the EXT extension does not (BGRA is its own
269 // internal format).
270 if (this->glCaps().bgraFormatSupport() &&
271 !this->glCaps().bgraIsInternalFormat() &&
272 kBGRA_8888_GrPixelConfig == srcConfig &&
273 kRGBA_8888_GrPixelConfig == texture->config()) {
274 return true;
275 } else {
276 return false;
277 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000278 } else {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000279 return true;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000280 }
281}
282
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000283bool GrGpuGL::fullReadPixelsIsFasterThanPartial() const {
284 return SkToBool(GR_GL_FULL_READPIXELS_FASTER_THAN_PARTIAL);
285}
286
bsalomon@google.com1bf1c212011-11-05 12:18:58 +0000287void GrGpuGL::onResetContext() {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000288
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000289 // we don't use the zb at all
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000290 GL_CALL(Disable(GR_GL_DEPTH_TEST));
291 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000292
bsalomon@google.com978c8c62012-05-21 14:45:49 +0000293 fHWDrawFace = GrDrawState::kInvalid_DrawFace;
294 fHWDitherEnabled = kUnknown_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000295
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000296 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000297 // Desktop-only state that we never change
bsalomon@google.com2b1b8c02013-02-28 22:06:02 +0000298 if (!this->glCaps().isCoreProfile()) {
299 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
300 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
301 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
302 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
303 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
304 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
305 }
commit-bot@chromium.orgdd4400b2013-03-21 19:58:22 +0000306 // The windows NVIDIA driver has GL_ARB_imaging in the extension string when using a core
307 // profile. This seems like a bug since the core spec removes any mention of GL_ARB_imaging.
308 if (this->glCaps().imagingSupport() && !this->glCaps().isCoreProfile()) {
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000309 GL_CALL(Disable(GR_GL_COLOR_TABLE));
310 }
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000311 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
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000317 // currently part of our gl interface. There are probably others as
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000318 // well.
twiz@google.comb65e0cb2011-03-18 20:41:44 +0000319 }
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +0000320 fHWAAState.invalidate();
bsalomon@google.com978c8c62012-05-21 14:45:49 +0000321 fHWWriteToColor = kUnknown_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000322
reed@google.comac10a2d2010-12-22 21:39:39 +0000323 // we only ever use lines in hairline mode
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000324 GL_CALL(LineWidth(1));
reed@google.comac10a2d2010-12-22 21:39:39 +0000325
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000326 // invalid
bsalomon@google.com49209392012-06-05 15:13:46 +0000327 fHWActiveTextureUnitIdx = -1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000328
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +0000329 fHWBlendState.invalidate();
bsalomon@google.com080773c2011-03-15 19:09:25 +0000330
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000331 for (int s = 0; s < fHWBoundTextures.count(); ++s) {
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000332 fHWBoundTextures[s] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000333 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000334
bsalomon@google.coma3201942012-06-21 19:58:20 +0000335 fHWScissorSettings.invalidate();
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000336
bsalomon@google.coma3201942012-06-21 19:58:20 +0000337 fHWViewport.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +0000338
bsalomon@google.com457b8a32012-05-21 21:19:58 +0000339 fHWStencilSettings.invalidate();
bsalomon@google.coma3201942012-06-21 19:58:20 +0000340 fHWStencilTestEnabled = kUnknown_TriState;
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000341
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000342 fHWGeometryState.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +0000343
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000344 fHWBoundRenderTarget = NULL;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000345
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000346 fHWPathStencilMatrixState.invalidate();
bsalomon@google.combcce8922013-03-25 15:38:39 +0000347 if (this->caps()->pathStencilingSupport()) {
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000348 // we don't use the model view matrix.
349 GL_CALL(MatrixMode(GR_GL_MODELVIEW));
350 GL_CALL(LoadIdentity());
351 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000352
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000353 // we assume these values
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000354 if (this->glCaps().unpackRowLengthSupport()) {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000355 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
356 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000357 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000358 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
359 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000360 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000361 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
362 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000363 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000364 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
365 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000366
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000367 fHWProgramID = 0;
bsalomon@google.com91207482013-02-12 21:45:24 +0000368 fSharedGLProgramState.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +0000369}
370
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000371namespace {
372
373GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
374 // By default, GrRenderTargets are GL's normal orientation so that they
375 // can be drawn to by the outside world without the client having
376 // to render upside down.
377 if (kDefault_GrSurfaceOrigin == origin) {
378 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
379 } else {
380 return origin;
381 }
382}
383
384}
385
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000386GrTexture* GrGpuGL::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000387 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000388 return NULL;
389 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000390
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000391 if (0 == desc.fTextureHandle) {
392 return NULL;
393 }
394
bsalomon@google.combcce8922013-03-25 15:38:39 +0000395 int maxSize = this->caps()->maxTextureSize();
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000396 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
397 return NULL;
398 }
399
400 GrGLTexture::Desc glTexDesc;
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000401 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
robertphillips@google.com32716282012-06-04 12:48:45 +0000402 glTexDesc.fFlags = (GrTextureFlags) desc.fFlags;
bsalomon@google.com99621082011-11-15 16:47:16 +0000403 glTexDesc.fWidth = desc.fWidth;
404 glTexDesc.fHeight = desc.fHeight;
bsalomon@google.come269f212011-11-07 13:29:52 +0000405 glTexDesc.fConfig = desc.fConfig;
robertphillips@google.com32716282012-06-04 12:48:45 +0000406 glTexDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.come269f212011-11-07 13:29:52 +0000407 glTexDesc.fTextureID = static_cast<GrGLuint>(desc.fTextureHandle);
bsalomon@google.com72830222013-01-23 20:25:22 +0000408 glTexDesc.fIsWrapped = true;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000409 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrBackendTextureFlag);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000410 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
411 // assuming the old behaviour, which is that backend textures are always
412 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
413 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
414 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
415 glTexDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
416 } else {
417 glTexDesc.fOrigin = desc.fOrigin;
418 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000419
420 GrGLTexture* texture = NULL;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000421 if (renderTarget) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000422 GrGLRenderTarget::Desc glRTDesc;
423 glRTDesc.fRTFBOID = 0;
424 glRTDesc.fTexFBOID = 0;
425 glRTDesc.fMSColorRenderbufferID = 0;
bsalomon@google.come269f212011-11-07 13:29:52 +0000426 glRTDesc.fConfig = desc.fConfig;
427 glRTDesc.fSampleCnt = desc.fSampleCnt;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000428 glRTDesc.fOrigin = glTexDesc.fOrigin;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000429 glRTDesc.fCheckAllocation = false;
bsalomon@google.com99621082011-11-15 16:47:16 +0000430 if (!this->createRenderTargetObjects(glTexDesc.fWidth,
431 glTexDesc.fHeight,
bsalomon@google.come269f212011-11-07 13:29:52 +0000432 glTexDesc.fTextureID,
433 &glRTDesc)) {
434 return NULL;
435 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000436 texture = SkNEW_ARGS(GrGLTexture, (this, glTexDesc, glRTDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000437 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000438 texture = SkNEW_ARGS(GrGLTexture, (this, glTexDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000439 }
440 if (NULL == texture) {
441 return NULL;
442 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000443
bsalomon@google.come269f212011-11-07 13:29:52 +0000444 return texture;
445}
446
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000447GrRenderTarget* GrGpuGL::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000448 GrGLRenderTarget::Desc glDesc;
449 glDesc.fConfig = desc.fConfig;
450 glDesc.fRTFBOID = static_cast<GrGLuint>(desc.fRenderTargetHandle);
451 glDesc.fMSColorRenderbufferID = 0;
452 glDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
453 glDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.com72830222013-01-23 20:25:22 +0000454 glDesc.fIsWrapped = true;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000455 glDesc.fCheckAllocation = false;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000456
457 glDesc.fOrigin = resolve_origin(desc.fOrigin, true);
bsalomon@google.come269f212011-11-07 13:29:52 +0000458 GrGLIRect viewport;
459 viewport.fLeft = 0;
460 viewport.fBottom = 0;
461 viewport.fWidth = desc.fWidth;
462 viewport.fHeight = desc.fHeight;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000463
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000464 GrRenderTarget* tgt = SkNEW_ARGS(GrGLRenderTarget,
465 (this, glDesc, viewport));
bsalomon@google.come269f212011-11-07 13:29:52 +0000466 if (desc.fStencilBits) {
467 GrGLStencilBuffer::Format format;
468 format.fInternalFormat = GrGLStencilBuffer::kUnknownInternalFormat;
469 format.fPacked = false;
470 format.fStencilBits = desc.fStencilBits;
471 format.fTotalBits = desc.fStencilBits;
bsalomon@google.com1f0f1a32013-01-23 21:32:32 +0000472 static const bool kIsSBWrapped = false;
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000473 GrGLStencilBuffer* sb = SkNEW_ARGS(GrGLStencilBuffer,
474 (this,
bsalomon@google.com1f0f1a32013-01-23 21:32:32 +0000475 kIsSBWrapped,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000476 0,
477 desc.fWidth,
478 desc.fHeight,
479 desc.fSampleCnt,
480 format));
bsalomon@google.come269f212011-11-07 13:29:52 +0000481 tgt->setStencilBuffer(sb);
482 sb->unref();
483 }
484 return tgt;
485}
486
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000487////////////////////////////////////////////////////////////////////////////////
488
bsalomon@google.com9c680582013-02-06 18:17:50 +0000489bool GrGpuGL::onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000490 int left, int top, int width, int height,
491 GrPixelConfig config, const void* buffer,
492 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000493 if (NULL == buffer) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000494 return false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000495 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000496 GrGLTexture* glTex = static_cast<GrGLTexture*>(texture);
497
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000498 this->setScratchTextureUnit();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000499 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTex->textureID()));
500 GrGLTexture::Desc desc;
robertphillips@google.com32716282012-06-04 12:48:45 +0000501 desc.fFlags = glTex->desc().fFlags;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000502 desc.fWidth = glTex->width();
503 desc.fHeight = glTex->height();
robertphillips@google.com32716282012-06-04 12:48:45 +0000504 desc.fConfig = glTex->config();
505 desc.fSampleCnt = glTex->desc().fSampleCnt;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000506 desc.fTextureID = glTex->textureID();
bsalomon@google.com2d0bade2012-10-26 19:01:17 +0000507 desc.fOrigin = glTex->origin();
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000508
bsalomon@google.com9c680582013-02-06 18:17:50 +0000509 return this->uploadTexData(desc, false,
510 left, top, width, height,
511 config, buffer, rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000512}
513
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000514namespace {
515bool adjust_pixel_ops_params(int surfaceWidth,
516 int surfaceHeight,
517 size_t bpp,
518 int* left, int* top, int* width, int* height,
519 const void** data,
520 size_t* rowBytes) {
521 if (!*rowBytes) {
522 *rowBytes = *width * bpp;
523 }
524
525 GrIRect subRect = GrIRect::MakeXYWH(*left, *top, *width, *height);
526 GrIRect bounds = GrIRect::MakeWH(surfaceWidth, surfaceHeight);
527
528 if (!subRect.intersect(bounds)) {
529 return false;
530 }
531 *data = reinterpret_cast<const void*>(reinterpret_cast<intptr_t>(*data) +
532 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
533
534 *left = subRect.fLeft;
535 *top = subRect.fTop;
536 *width = subRect.width();
537 *height = subRect.height();
538 return true;
539}
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000540
541GrGLenum check_alloc_error(const GrTextureDesc& desc, const GrGLInterface* interface) {
542 if (SkToBool(desc.fFlags & kCheckAllocation_GrTextureFlagBit)) {
543 return GR_GL_GET_ERROR(interface);
544 } else {
545 return CHECK_ALLOC_ERROR(interface);
546 }
547}
548
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000549}
550
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000551bool GrGpuGL::uploadTexData(const GrGLTexture::Desc& desc,
552 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000553 int left, int top, int width, int height,
554 GrPixelConfig dataConfig,
555 const void* data,
556 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000557 GrAssert(NULL != data || isNewTexture);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000558
559 size_t bpp = GrBytesPerPixel(dataConfig);
560 if (!adjust_pixel_ops_params(desc.fWidth, desc.fHeight, bpp, &left, &top,
561 &width, &height, &data, &rowBytes)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000562 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000563 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000564 size_t trimRowBytes = width * bpp;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000565
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000566 // in case we need a temporary, trimmed copy of the src pixels
567 SkAutoSMalloc<128 * 128> tempStorage;
568
bsalomon@google.com313f0192012-07-10 17:21:02 +0000569 // paletted textures cannot be partially updated
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000570 bool useTexStorage = isNewTexture &&
bsalomon@google.com313f0192012-07-10 17:21:02 +0000571 desc.fConfig != kIndex_8_GrPixelConfig &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000572 this->glCaps().texStorageSupport();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000573
bsalomon@google.com313f0192012-07-10 17:21:02 +0000574 if (useTexStorage && kDesktop_GrGLBinding == this->glBinding()) {
575 // 565 is not a sized internal format on desktop GL. So on desktop with
576 // 565 we always use an unsized internal format to let the system pick
577 // the best sized format to convert the 565 data to. Since TexStorage
578 // only allows sized internal formats we will instead use TexImage2D.
579 useTexStorage = desc.fConfig != kRGB_565_GrPixelConfig;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000580 }
581
582 GrGLenum internalFormat;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000583 GrGLenum externalFormat;
584 GrGLenum externalType;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000585 // glTexStorage requires sized internal formats on both desktop and ES. ES
586 // glTexImage requires an unsized format.
587 if (!this->configToGLFormats(dataConfig, useTexStorage, &internalFormat,
588 &externalFormat, &externalType)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000589 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000590 }
591
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000592 if (!isNewTexture && GR_GL_PALETTE8_RGBA8 == internalFormat) {
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000593 // paletted textures cannot be updated
594 return false;
595 }
596
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000597 /*
bsalomon@google.com6f379512011-11-16 20:36:03 +0000598 * check whether to allocate a temporary buffer for flipping y or
599 * because our srcData has extra bytes past each row. If so, we need
600 * to trim those off here, since GL ES may not let us specify
601 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000602 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000603 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000604 bool swFlipY = false;
605 bool glFlipY = false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000606 if (NULL != data) {
senorblanco@chromium.orgef5dbe12013-01-28 16:42:38 +0000607 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000608 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000609 glFlipY = true;
610 } else {
611 swFlipY = true;
612 }
613 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000614 if (this->glCaps().unpackRowLengthSupport() && !swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000615 // can't use this for flipping, only non-neg values allowed. :(
616 if (rowBytes != trimRowBytes) {
617 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
618 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
619 restoreGLRowLength = true;
620 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000621 } else {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000622 if (trimRowBytes != rowBytes || swFlipY) {
623 // copy data into our new storage, skipping the trailing bytes
624 size_t trimSize = height * trimRowBytes;
625 const char* src = (const char*)data;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000626 if (swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000627 src += (height - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000628 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000629 char* dst = (char*)tempStorage.reset(trimSize);
630 for (int y = 0; y < height; y++) {
631 memcpy(dst, src, trimRowBytes);
632 if (swFlipY) {
633 src -= rowBytes;
634 } else {
635 src += rowBytes;
636 }
637 dst += trimRowBytes;
638 }
639 // now point data to our copied version
640 data = tempStorage.get();
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000641 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000642 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000643 if (glFlipY) {
644 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
645 }
646 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, static_cast<GrGLint>(bpp)));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000647 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000648 bool succeeded = true;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000649 if (isNewTexture &&
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000650 0 == left && 0 == top &&
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000651 desc.fWidth == width && desc.fHeight == height) {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000652 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000653 if (useTexStorage) {
654 // We never resize or change formats of textures. We don't use
655 // mipmaps currently.
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000656 GL_ALLOC_CALL(this->glInterface(),
657 TexStorage2D(GR_GL_TEXTURE_2D,
658 1, // levels
659 internalFormat,
660 desc.fWidth, desc.fHeight));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000661 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000662 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
663 GrGLsizei imageSize = desc.fWidth * desc.fHeight +
664 kGrColorTableSize;
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000665 GL_ALLOC_CALL(this->glInterface(),
666 CompressedTexImage2D(GR_GL_TEXTURE_2D,
667 0, // level
668 internalFormat,
669 desc.fWidth, desc.fHeight,
670 0, // border
671 imageSize,
672 data));
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000673 } else {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000674 GL_ALLOC_CALL(this->glInterface(),
675 TexImage2D(GR_GL_TEXTURE_2D,
676 0, // level
677 internalFormat,
678 desc.fWidth, desc.fHeight,
679 0, // border
680 externalFormat, externalType,
681 data));
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000682 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000683 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000684 GrGLenum error = check_alloc_error(desc, this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000685 if (error != GR_GL_NO_ERROR) {
686 succeeded = false;
687 } else {
688 // if we have data and we used TexStorage to create the texture, we
689 // now upload with TexSubImage.
690 if (NULL != data && useTexStorage) {
691 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
692 0, // level
693 left, top,
694 width, height,
695 externalFormat, externalType,
696 data));
697 }
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000698 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000699 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000700 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000701 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000702 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000703 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
704 0, // level
705 left, top,
706 width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000707 externalFormat, externalType, data));
708 }
709
710 if (restoreGLRowLength) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000711 GrAssert(this->glCaps().unpackRowLengthSupport());
bsalomon@google.com6f379512011-11-16 20:36:03 +0000712 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000713 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000714 if (glFlipY) {
715 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
716 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000717 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000718}
719
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000720namespace {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000721bool renderbuffer_storage_msaa(GrGLContext& ctx,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000722 int sampleCount,
723 GrGLenum format,
724 int width, int height) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000725 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
bsalomon@google.combcce8922013-03-25 15:38:39 +0000726 GrAssert(GrGLCaps::kNone_MSFBOType != ctx.info().caps()->msFBOType());
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000727 bool created = false;
728 if (GrGLCaps::kNVDesktop_CoverageAAType ==
bsalomon@google.combcce8922013-03-25 15:38:39 +0000729 ctx.info().caps()->coverageAAType()) {
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000730 const GrGLCaps::MSAACoverageMode& mode =
bsalomon@google.combcce8922013-03-25 15:38:39 +0000731 ctx.info().caps()->getMSAACoverageMode(sampleCount);
robertphillips@google.com6177e692013-02-28 20:16:25 +0000732 GL_ALLOC_CALL(ctx.interface(),
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000733 RenderbufferStorageMultisampleCoverage(GR_GL_RENDERBUFFER,
734 mode.fCoverageSampleCnt,
735 mode.fColorSampleCnt,
736 format,
737 width, height));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000738 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000739 }
740 if (!created) {
robertphillips@google.com6177e692013-02-28 20:16:25 +0000741 GL_ALLOC_CALL(ctx.interface(),
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000742 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
743 sampleCount,
744 format,
745 width, height));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000746 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000747 }
748 return created;
749}
750}
751
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000752bool GrGpuGL::createRenderTargetObjects(int width, int height,
753 GrGLuint texID,
754 GrGLRenderTarget::Desc* desc) {
755 desc->fMSColorRenderbufferID = 0;
756 desc->fRTFBOID = 0;
757 desc->fTexFBOID = 0;
bsalomon@google.com72830222013-01-23 20:25:22 +0000758 desc->fIsWrapped = false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000759
760 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000761
bsalomon@google.comab15d612011-08-09 12:57:56 +0000762 GrGLenum msColorFormat = 0; // suppress warning
763
bsalomon@google.com347c3822013-05-01 20:10:01 +0000764 if (desc->fSampleCnt > 0 && GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
765 goto FAILED;
766 }
767
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000768 GL_CALL(GenFramebuffers(1, &desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000769 if (!desc->fTexFBOID) {
770 goto FAILED;
771 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000772
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000773
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000774 // If we are using multisampling we will create two FBOS. We render to one and then resolve to
775 // the texture bound to the other. The exception is the IMG multisample extension. With this
776 // extension the texture is multisampled when rendered to and then auto-resolves it when it is
777 // rendered from.
bsalomon@google.com347c3822013-05-01 20:10:01 +0000778 if (desc->fSampleCnt > 0 && this->glCaps().usesMSAARenderBuffers()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000779 GL_CALL(GenFramebuffers(1, &desc->fRTFBOID));
780 GL_CALL(GenRenderbuffers(1, &desc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000781 if (!desc->fRTFBOID ||
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000782 !desc->fMSColorRenderbufferID ||
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000783 !this->configToGLFormats(desc->fConfig,
784 // GLES requires sized internal formats
785 kES2_GrGLBinding == this->glBinding(),
bsalomon@google.com347c3822013-05-01 20:10:01 +0000786 &msColorFormat,
787 NULL,
788 NULL)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000789 goto FAILED;
790 }
791 } else {
792 desc->fRTFBOID = desc->fTexFBOID;
793 }
794
bsalomon@google.com0e9b41a2012-01-04 22:11:43 +0000795 // below here we may bind the FBO
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000796 fHWBoundRenderTarget = NULL;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000797 if (desc->fRTFBOID != desc->fTexFBOID) {
bsalomon@google.com13ac3a32013-01-09 23:29:39 +0000798 GrAssert(desc->fSampleCnt > 0);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000799 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000800 desc->fMSColorRenderbufferID));
robertphillips@google.com6177e692013-02-28 20:16:25 +0000801 if (!renderbuffer_storage_msaa(fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000802 desc->fSampleCnt,
803 msColorFormat,
804 width, height)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000805 goto FAILED;
806 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000807 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, desc->fRTFBOID));
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000808 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000809 GR_GL_COLOR_ATTACHMENT0,
810 GR_GL_RENDERBUFFER,
811 desc->fMSColorRenderbufferID));
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000812 if (desc->fCheckAllocation ||
813 !this->glCaps().isConfigVerifiedColorAttachment(desc->fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000814 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
815 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
816 goto FAILED;
817 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000818 fGLContext.info().caps()->markConfigAsValidColorAttachment(desc->fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000819 }
820 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000821 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000822
bsalomon@google.com347c3822013-05-01 20:10:01 +0000823 if (this->glCaps().usesImplicitMSAAResolve() && desc->fSampleCnt > 0) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +0000824 GL_CALL(FramebufferTexture2DMultisample(GR_GL_FRAMEBUFFER,
825 GR_GL_COLOR_ATTACHMENT0,
826 GR_GL_TEXTURE_2D,
827 texID, 0, desc->fSampleCnt));
828 } else {
829 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
830 GR_GL_COLOR_ATTACHMENT0,
831 GR_GL_TEXTURE_2D,
832 texID, 0));
833 }
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000834 if (desc->fCheckAllocation ||
835 !this->glCaps().isConfigVerifiedColorAttachment(desc->fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000836 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
837 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
838 goto FAILED;
839 }
bsalomon@google.combcce8922013-03-25 15:38:39 +0000840 fGLContext.info().caps()->markConfigAsValidColorAttachment(desc->fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000841 }
842
843 return true;
844
845FAILED:
846 if (desc->fMSColorRenderbufferID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000847 GL_CALL(DeleteRenderbuffers(1, &desc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000848 }
849 if (desc->fRTFBOID != desc->fTexFBOID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000850 GL_CALL(DeleteFramebuffers(1, &desc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000851 }
852 if (desc->fTexFBOID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000853 GL_CALL(DeleteFramebuffers(1, &desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000854 }
855 return false;
856}
857
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000858// good to set a break-point here to know when createTexture fails
859static GrTexture* return_null_texture() {
860// GrAssert(!"null texture");
861 return NULL;
862}
863
caryclark@google.comcf6285b2012-06-06 12:09:01 +0000864#if 0 && GR_DEBUG
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000865static size_t as_size_t(int x) {
866 return x;
867}
868#endif
869
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000870GrTexture* GrGpuGL::onCreateTexture(const GrTextureDesc& desc,
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000871 const void* srcData,
872 size_t rowBytes) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000873
bsalomon@google.com5bfc2172011-07-29 20:29:05 +0000874 GrGLTexture::Desc glTexDesc;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000875 GrGLRenderTarget::Desc glRTDesc;
reed@google.comac10a2d2010-12-22 21:39:39 +0000876
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000877 // Attempt to catch un- or wrongly initialized sample counts;
878 GrAssert(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000879 // We fail if the MSAA was requested and is not available.
880 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() && desc.fSampleCnt) {
881 //GrPrintf("MSAA RT requested but not supported on this platform.");
882 return return_null_texture();
883 }
884 // If the sample count exceeds the max then we clamp it.
bsalomon@google.combcce8922013-03-25 15:38:39 +0000885 glTexDesc.fSampleCnt = GrMin(desc.fSampleCnt, this->caps()->maxSampleCount());
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000886
robertphillips@google.com32716282012-06-04 12:48:45 +0000887 glTexDesc.fFlags = desc.fFlags;
bsalomon@google.com99621082011-11-15 16:47:16 +0000888 glTexDesc.fWidth = desc.fWidth;
889 glTexDesc.fHeight = desc.fHeight;
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000890 glTexDesc.fConfig = desc.fConfig;
bsalomon@google.com72830222013-01-23 20:25:22 +0000891 glTexDesc.fIsWrapped = false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000892
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000893 glRTDesc.fMSColorRenderbufferID = 0;
894 glRTDesc.fRTFBOID = 0;
895 glRTDesc.fTexFBOID = 0;
bsalomon@google.com72830222013-01-23 20:25:22 +0000896 glRTDesc.fIsWrapped = false;
bsalomon@google.com64c4fe42011-11-05 14:51:01 +0000897 glRTDesc.fConfig = glTexDesc.fConfig;
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000898 glRTDesc.fCheckAllocation = SkToBool(desc.fFlags & kCheckAllocation_GrTextureFlagBit);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000899
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +0000900 bool renderTarget = SkToBool(desc.fFlags & kRenderTarget_GrTextureFlagBit);
reed@google.comac10a2d2010-12-22 21:39:39 +0000901
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000902 glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
903 glRTDesc.fOrigin = glTexDesc.fOrigin;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000904
bsalomon@google.com8a70eef2013-03-19 13:58:55 +0000905 glRTDesc.fSampleCnt = glTexDesc.fSampleCnt;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000906 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() &&
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000907 desc.fSampleCnt) {
bsalomon@google.com945bbe12012-06-15 14:30:34 +0000908 //GrPrintf("MSAA RT requested but not supported on this platform.");
909 return return_null_texture();
reed@google.comac10a2d2010-12-22 21:39:39 +0000910 }
911
reed@google.comac10a2d2010-12-22 21:39:39 +0000912 if (renderTarget) {
bsalomon@google.combcce8922013-03-25 15:38:39 +0000913 int maxRTSize = this->caps()->maxRenderTargetSize();
914 if (glTexDesc.fWidth > maxRTSize || glTexDesc.fHeight > maxRTSize) {
bsalomon@google.com91958362011-06-13 17:58:13 +0000915 return return_null_texture();
916 }
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +0000917 } else {
918 int maxSize = this->caps()->maxTextureSize();
919 if (glTexDesc.fWidth > maxSize || glTexDesc.fHeight > maxSize) {
920 return return_null_texture();
921 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000922 }
923
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000924 GL_CALL(GenTextures(1, &glTexDesc.fTextureID));
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000925 if (renderTarget && this->glCaps().textureUsageSupport()) {
bsalomon@google.com07dd2bf2011-12-09 19:40:36 +0000926 // provides a hint about how this texture will be used
927 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
928 GR_GL_TEXTURE_USAGE,
929 GR_GL_FRAMEBUFFER_ATTACHMENT));
930 }
bsalomon@google.com5bfc2172011-07-29 20:29:05 +0000931 if (!glTexDesc.fTextureID) {
bsalomon@google.comd9f826c2011-07-18 15:25:04 +0000932 return return_null_texture();
933 }
934
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +0000935 this->setScratchTextureUnit();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000936 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTexDesc.fTextureID));
bsalomon@google.come269f212011-11-07 13:29:52 +0000937
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000938 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
939 // drivers have a bug where an FBO won't be complete if it includes a
940 // texture that is not mipmap complete (considering the filter in use).
941 GrGLTexture::TexParams initialTexParams;
942 // we only set a subset here so invalidate first
943 initialTexParams.invalidate();
944 initialTexParams.fFilter = GR_GL_NEAREST;
945 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
946 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000947 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
948 GR_GL_TEXTURE_MAG_FILTER,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000949 initialTexParams.fFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000950 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
951 GR_GL_TEXTURE_MIN_FILTER,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000952 initialTexParams.fFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000953 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
954 GR_GL_TEXTURE_WRAP_S,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000955 initialTexParams.fWrapS));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000956 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
957 GR_GL_TEXTURE_WRAP_T,
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000958 initialTexParams.fWrapT));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000959 if (!this->uploadTexData(glTexDesc, true, 0, 0,
960 glTexDesc.fWidth, glTexDesc.fHeight,
961 desc.fConfig, srcData, rowBytes)) {
962 GL_CALL(DeleteTextures(1, &glTexDesc.fTextureID));
963 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +0000964 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000965
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000966 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +0000967 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +0000968 // unbind the texture from the texture unit before binding it to the frame buffer
969 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
970
bsalomon@google.com99621082011-11-15 16:47:16 +0000971 if (!this->createRenderTargetObjects(glTexDesc.fWidth,
972 glTexDesc.fHeight,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000973 glTexDesc.fTextureID,
974 &glRTDesc)) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000975 GL_CALL(DeleteTextures(1, &glTexDesc.fTextureID));
reed@google.comac10a2d2010-12-22 21:39:39 +0000976 return return_null_texture();
977 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000978 tex = SkNEW_ARGS(GrGLTexture, (this, glTexDesc, glRTDesc));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000979 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000980 tex = SkNEW_ARGS(GrGLTexture, (this, glTexDesc));
reed@google.comac10a2d2010-12-22 21:39:39 +0000981 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000982 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +0000983#ifdef TRACE_TEXTURE_CREATION
bsalomon@google.com64c4fe42011-11-05 14:51:01 +0000984 GrPrintf("--- new texture [%d] size=(%d %d) config=%d\n",
985 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +0000986#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000987 return tex;
988}
989
990namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000991
992const GrGLuint kUnknownBitCount = GrGLStencilBuffer::kUnknownBitCount;
993
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000994void inline get_stencil_rb_sizes(const GrGLInterface* gl,
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000995 GrGLStencilBuffer::Format* format) {
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +0000996
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000997 // we shouldn't ever know one size and not the other
998 GrAssert((kUnknownBitCount == format->fStencilBits) ==
999 (kUnknownBitCount == format->fTotalBits));
1000 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001001 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001002 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1003 (GrGLint*)&format->fStencilBits);
1004 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001005 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001006 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1007 (GrGLint*)&format->fTotalBits);
1008 format->fTotalBits += format->fStencilBits;
1009 } else {
1010 format->fTotalBits = format->fStencilBits;
1011 }
1012 }
1013}
1014}
1015
1016bool GrGpuGL::createStencilBufferForRenderTarget(GrRenderTarget* rt,
1017 int width, int height) {
1018
1019 // All internally created RTs are also textures. We don't create
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001020 // 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 +00001021 GrAssert(rt->asTexture());
bsalomon@google.com99621082011-11-15 16:47:16 +00001022 GrAssert(width >= rt->width());
1023 GrAssert(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001024
1025 int samples = rt->numSamples();
1026 GrGLuint sbID;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001027 GL_CALL(GenRenderbuffers(1, &sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001028 if (!sbID) {
1029 return false;
1030 }
1031
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001032 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001033 for (int i = 0; i < stencilFmtCnt; ++i) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001034 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001035 // we start with the last stencil format that succeeded in hopes
1036 // that we won't go through this loop more than once after the
1037 // first (painful) stencil creation.
1038 int sIdx = (i + fLastSuccessfulStencilFmtIdx) % stencilFmtCnt;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001039 const GrGLCaps::StencilFormat& sFmt =
1040 this->glCaps().stencilFormats()[sIdx];
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001041 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001042 // we do this "if" so that we don't call the multisample
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001043 // version on a GL that doesn't have an MSAA extension.
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001044 bool created;
1045 if (samples > 0) {
robertphillips@google.com6177e692013-02-28 20:16:25 +00001046 created = renderbuffer_storage_msaa(fGLContext,
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001047 samples,
1048 sFmt.fInternalFormat,
1049 width, height);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001050 } else {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001051 GL_ALLOC_CALL(this->glInterface(),
1052 RenderbufferStorage(GR_GL_RENDERBUFFER,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001053 sFmt.fInternalFormat,
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001054 width, height));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001055 created =
senorblanco@chromium.orgd0925242013-06-10 15:06:09 +00001056 (GR_GL_NO_ERROR == check_alloc_error(rt->desc(), this->glInterface()));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001057 }
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001058 if (created) {
1059 // After sized formats we attempt an unsized format and take
1060 // whatever sizes GL gives us. In that case we query for the size.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001061 GrGLStencilBuffer::Format format = sFmt;
sugoi@google.com6ba0b0f2013-05-03 13:52:32 +00001062 get_stencil_rb_sizes(this->glInterface(), &format);
bsalomon@google.com72830222013-01-23 20:25:22 +00001063 static const bool kIsWrapped = false;
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001064 SkAutoTUnref<GrStencilBuffer> sb(SkNEW_ARGS(GrGLStencilBuffer,
bsalomon@google.com72830222013-01-23 20:25:22 +00001065 (this, kIsWrapped, sbID, width, height,
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001066 samples, format)));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001067 if (this->attachStencilBufferToRenderTarget(sb, rt)) {
1068 fLastSuccessfulStencilFmtIdx = sIdx;
robertphillips@google.com9fbcad02012-09-09 14:44:15 +00001069 sb->transferToCache();
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001070 rt->setStencilBuffer(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001071 return true;
1072 }
1073 sb->abandon(); // otherwise we lose sbID
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001074 }
1075 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001076 GL_CALL(DeleteRenderbuffers(1, &sbID));
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001077 return false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001078}
1079
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001080bool GrGpuGL::attachStencilBufferToRenderTarget(GrStencilBuffer* sb, GrRenderTarget* rt) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001081 GrGLRenderTarget* glrt = (GrGLRenderTarget*) rt;
1082
1083 GrGLuint fbo = glrt->renderFBOID();
1084
1085 if (NULL == sb) {
1086 if (NULL != rt->getStencilBuffer()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001087 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001088 GR_GL_STENCIL_ATTACHMENT,
1089 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001090 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001091 GR_GL_DEPTH_ATTACHMENT,
1092 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001093#if GR_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001094 GrGLenum status;
1095 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001096 GrAssert(GR_GL_FRAMEBUFFER_COMPLETE == status);
1097#endif
1098 }
1099 return true;
1100 } else {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001101 GrGLStencilBuffer* glsb = static_cast<GrGLStencilBuffer*>(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001102 GrGLuint rb = glsb->renderbufferID();
1103
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001104 fHWBoundRenderTarget = NULL;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001105 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fbo));
1106 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001107 GR_GL_STENCIL_ATTACHMENT,
1108 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001109 if (glsb->format().fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001110 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001111 GR_GL_DEPTH_ATTACHMENT,
1112 GR_GL_RENDERBUFFER, rb));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001113 } else {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001114 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001115 GR_GL_DEPTH_ATTACHMENT,
1116 GR_GL_RENDERBUFFER, 0));
reed@google.comac10a2d2010-12-22 21:39:39 +00001117 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001118
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001119 GrGLenum status;
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001120 if (!this->glCaps().isColorConfigAndStencilFormatVerified(rt->config(), glsb->format())) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001121 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1122 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001123 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001124 GR_GL_STENCIL_ATTACHMENT,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001125 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001126 if (glsb->format().fPacked) {
1127 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1128 GR_GL_DEPTH_ATTACHMENT,
1129 GR_GL_RENDERBUFFER, 0));
1130 }
1131 return false;
1132 } else {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001133 fGLContext.info().caps()->markColorConfigAndStencilFormatAsVerified(
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001134 rt->config(),
1135 glsb->format());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001136 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001137 }
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001138 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001139 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001140}
1141
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001142////////////////////////////////////////////////////////////////////////////////
1143
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001144GrVertexBuffer* GrGpuGL::onCreateVertexBuffer(uint32_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001145 GrGLVertexBuffer::Desc desc;
1146 desc.fDynamic = dynamic;
1147 desc.fSizeInBytes = size;
1148 desc.fIsWrapped = false;
1149
bsalomon@google.com96966a52013-02-21 16:34:21 +00001150 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001151 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001152 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001153 return vertexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001154 } else {
1155 GL_CALL(GenBuffers(1, &desc.fID));
1156 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001157 fHWGeometryState.setVertexBufferID(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001158 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1159 // make sure driver can allocate memory for this buffer
1160 GL_ALLOC_CALL(this->glInterface(),
1161 BufferData(GR_GL_ARRAY_BUFFER,
1162 desc.fSizeInBytes,
1163 NULL, // data ptr
1164 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1165 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1166 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001167 this->notifyVertexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001168 return NULL;
1169 }
1170 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer, (this, desc));
1171 return vertexBuffer;
1172 }
1173 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001174 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001175}
1176
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001177GrIndexBuffer* GrGpuGL::onCreateIndexBuffer(uint32_t size, bool dynamic) {
bsalomon@google.come49ad452013-02-20 19:33:20 +00001178 GrGLIndexBuffer::Desc desc;
1179 desc.fDynamic = dynamic;
1180 desc.fSizeInBytes = size;
1181 desc.fIsWrapped = false;
1182
bsalomon@google.com96966a52013-02-21 16:34:21 +00001183 if (this->glCaps().useNonVBOVertexAndIndexDynamicData() && desc.fDynamic) {
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001184 desc.fID = 0;
bsalomon@google.come49ad452013-02-20 19:33:20 +00001185 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001186 return indexBuffer;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001187 } else {
1188 GL_CALL(GenBuffers(1, &desc.fID));
1189 if (desc.fID) {
bsalomon@google.com6918d482013-03-07 19:09:11 +00001190 fHWGeometryState.setIndexBufferIDOnDefaultVertexArray(this, desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001191 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
1192 // make sure driver can allocate memory for this buffer
1193 GL_ALLOC_CALL(this->glInterface(),
1194 BufferData(GR_GL_ELEMENT_ARRAY_BUFFER,
1195 desc.fSizeInBytes,
1196 NULL, // data ptr
1197 desc.fDynamic ? GR_GL_DYNAMIC_DRAW : GR_GL_STATIC_DRAW));
1198 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
1199 GL_CALL(DeleteBuffers(1, &desc.fID));
bsalomon@google.com6918d482013-03-07 19:09:11 +00001200 this->notifyIndexBufferDelete(desc.fID);
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +00001201 return NULL;
1202 }
1203 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer, (this, desc));
1204 return indexBuffer;
1205 }
1206 return NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00001207 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001208}
1209
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001210GrPath* GrGpuGL::onCreatePath(const SkPath& inPath) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001211 GrAssert(this->caps()->pathStencilingSupport());
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001212 return SkNEW_ARGS(GrGLPath, (this, inPath));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001213}
1214
bsalomon@google.coma3201942012-06-21 19:58:20 +00001215void GrGpuGL::flushScissor() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001216 const GrDrawState& drawState = this->getDrawState();
1217 const GrGLRenderTarget* rt =
1218 static_cast<const GrGLRenderTarget*>(drawState.getRenderTarget());
1219
1220 GrAssert(NULL != rt);
1221 const GrGLIRect& vp = rt->getViewport();
reed@google.comac10a2d2010-12-22 21:39:39 +00001222
bsalomon@google.coma3201942012-06-21 19:58:20 +00001223 if (fScissorState.fEnabled) {
1224 GrGLIRect scissor;
1225 scissor.setRelativeTo(vp,
1226 fScissorState.fRect.fLeft,
1227 fScissorState.fRect.fTop,
1228 fScissorState.fRect.width(),
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001229 fScissorState.fRect.height(),
1230 rt->origin());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001231 // if the scissor fully contains the viewport then we fall through and
1232 // disable the scissor test.
1233 if (!scissor.contains(vp)) {
1234 if (fHWScissorSettings.fRect != scissor) {
1235 scissor.pushToGLScissor(this->glInterface());
1236 fHWScissorSettings.fRect = scissor;
1237 }
1238 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1239 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1240 fHWScissorSettings.fEnabled = kYes_TriState;
1241 }
1242 return;
1243 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001244 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001245 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001246 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001247 fHWScissorSettings.fEnabled = kNo_TriState;
1248 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001249 }
1250}
1251
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001252void GrGpuGL::onClear(const GrIRect* rect, GrColor color) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001253 const GrDrawState& drawState = this->getDrawState();
1254 const GrRenderTarget* rt = drawState.getRenderTarget();
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001255 // parent class should never let us get here with no RT
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001256 GrAssert(NULL != rt);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001257
bsalomon@google.com74b98712011-11-11 19:46:16 +00001258 GrIRect clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001259 if (NULL != rect) {
1260 // flushScissor expects rect to be clipped to the target.
bsalomon@google.com74b98712011-11-11 19:46:16 +00001261 clippedRect = *rect;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001262 GrIRect rtRect = SkIRect::MakeWH(rt->width(), rt->height());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001263 if (clippedRect.intersect(rtRect)) {
1264 rect = &clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001265 } else {
1266 return;
1267 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001268 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001269 this->flushRenderTarget(rect);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001270 GrAutoTRestore<ScissorState> asr(&fScissorState);
1271 fScissorState.fEnabled = (NULL != rect);
1272 if (fScissorState.fEnabled) {
1273 fScissorState.fRect = *rect;
1274 }
1275 this->flushScissor();
bsalomon@google.com74b98712011-11-11 19:46:16 +00001276
1277 GrGLfloat r, g, b, a;
1278 static const GrGLfloat scale255 = 1.f / 255.f;
1279 a = GrColorUnpackA(color) * scale255;
1280 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001281 r = GrColorUnpackR(color) * scaleRGB;
1282 g = GrColorUnpackG(color) * scaleRGB;
1283 b = GrColorUnpackB(color) * scaleRGB;
1284
1285 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00001286 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001287 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001288 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00001289}
1290
bsalomon@google.comedc177d2011-08-05 15:46:40 +00001291void GrGpuGL::clearStencil() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001292 if (NULL == this->getDrawState().getRenderTarget()) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00001293 return;
1294 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001295
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001296 this->flushRenderTarget(&GrIRect::EmptyIRect());
1297
bsalomon@google.coma3201942012-06-21 19:58:20 +00001298 GrAutoTRestore<ScissorState> asr(&fScissorState);
1299 fScissorState.fEnabled = false;
1300 this->flushScissor();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001301
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001302 GL_CALL(StencilMask(0xffffffff));
1303 GL_CALL(ClearStencil(0));
1304 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001305 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001306}
1307
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001308void GrGpuGL::clearStencilClip(const GrIRect& rect, bool insideClip) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001309 const GrDrawState& drawState = this->getDrawState();
1310 const GrRenderTarget* rt = drawState.getRenderTarget();
1311 GrAssert(NULL != rt);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001312
1313 // this should only be called internally when we know we have a
1314 // stencil buffer.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001315 GrAssert(NULL != rt->getStencilBuffer());
1316 GrGLint stencilBitCount = rt->getStencilBuffer()->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001317#if 0
reed@google.comac10a2d2010-12-22 21:39:39 +00001318 GrAssert(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00001319 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001320#else
1321 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001322 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001323 // turned into draws. Our contract on GrDrawTarget says that
1324 // changing the clip between stencil passes may or may not
1325 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00001326 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001327#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001328 GrGLint value;
1329 if (insideClip) {
1330 value = (1 << (stencilBitCount - 1));
1331 } else {
1332 value = 0;
1333 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001334 this->flushRenderTarget(&GrIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001335
1336 GrAutoTRestore<ScissorState> asr(&fScissorState);
1337 fScissorState.fEnabled = true;
1338 fScissorState.fRect = rect;
1339 this->flushScissor();
1340
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001341 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001342 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001343 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001344 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001345}
1346
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001347void GrGpuGL::onForceRenderTargetFlush() {
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001348 this->flushRenderTarget(&GrIRect::EmptyIRect());
reed@google.comac10a2d2010-12-22 21:39:39 +00001349}
1350
bsalomon@google.comc4364992011-11-07 15:54:49 +00001351bool GrGpuGL::readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
1352 int left, int top,
1353 int width, int height,
1354 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001355 size_t rowBytes) const {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001356 // If this rendertarget is aready TopLeft, we don't need to flip.
1357 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
1358 return false;
1359 }
1360
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001361 // if GL can do the flip then we'll never pay for it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001362 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001363 return false;
1364 }
1365
1366 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00001367 // get the flip for free. Otherwise it costs.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001368 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001369 return true;
1370 }
1371 // If we have to do memcpys to handle rowBytes then y-flip is free
1372 // Note the rowBytes might be tight to the passed in data, but if data
1373 // gets clipped in x to the target the rowBytes will no longer be tight.
1374 if (left >= 0 && (left + width) < renderTarget->width()) {
1375 return 0 == rowBytes ||
1376 GrBytesPerPixel(config) * width == rowBytes;
1377 } else {
1378 return false;
1379 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001380}
1381
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001382bool GrGpuGL::onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001383 int left, int top,
1384 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001385 GrPixelConfig config,
1386 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001387 size_t rowBytes) {
twiz@google.com0f31ca72011-03-18 17:38:11 +00001388 GrGLenum format;
1389 GrGLenum type;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001390 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin();
bsalomon@google.com280e99f2012-01-05 16:17:38 +00001391 if (!this->configToGLFormats(config, false, NULL, &format, &type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001392 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001393 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001394 size_t bpp = GrBytesPerPixel(config);
1395 if (!adjust_pixel_ops_params(target->width(), target->height(), bpp,
1396 &left, &top, &width, &height,
1397 const_cast<const void**>(&buffer),
1398 &rowBytes)) {
1399 return false;
1400 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001401
bsalomon@google.comc6980972011-11-02 19:57:21 +00001402 // resolve the render target if necessary
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001403 GrGLRenderTarget* tgt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001404 GrDrawState::AutoRenderTargetRestore artr;
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001405 switch (tgt->getResolveType()) {
1406 case GrGLRenderTarget::kCantResolve_ResolveType:
1407 return false;
1408 case GrGLRenderTarget::kAutoResolves_ResolveType:
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001409 artr.set(this->drawState(), target);
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001410 this->flushRenderTarget(&GrIRect::EmptyIRect());
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001411 break;
1412 case GrGLRenderTarget::kCanResolve_ResolveType:
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001413 this->onResolveRenderTarget(tgt);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001414 // we don't track the state of the READ FBO ID.
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001415 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1416 tgt->textureFBOID()));
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001417 break;
1418 default:
1419 GrCrash("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00001420 }
1421
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001422 const GrGLIRect& glvp = tgt->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00001423
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00001424 // the read rect is viewport-relative
1425 GrGLIRect readRect;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001426 readRect.setRelativeTo(glvp, left, top, width, height, target->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001427
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001428 size_t tightRowBytes = bpp * width;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001429 if (0 == rowBytes) {
1430 rowBytes = tightRowBytes;
1431 }
1432 size_t readDstRowBytes = tightRowBytes;
1433 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001434
bsalomon@google.comc6980972011-11-02 19:57:21 +00001435 // determine if GL can read using the passed rowBytes or if we need
1436 // a scratch buffer.
1437 SkAutoSMalloc<32 * sizeof(GrColor)> scratch;
1438 if (rowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001439 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.comc6980972011-11-02 19:57:21 +00001440 GrAssert(!(rowBytes % sizeof(GrColor)));
1441 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, rowBytes / sizeof(GrColor)));
1442 readDstRowBytes = rowBytes;
1443 } else {
1444 scratch.reset(tightRowBytes * height);
1445 readDst = scratch.get();
1446 }
1447 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001448 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001449 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
1450 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001451 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
1452 readRect.fWidth, readRect.fHeight,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001453 format, type, readDst));
1454 if (readDstRowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001455 GrAssert(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00001456 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
1457 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001458 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001459 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001460 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001461 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001462
1463 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00001464 // API presents top-to-bottom. We must preserve the padding contents. Note
1465 // that the above readPixels did not overwrite the padding.
1466 if (readDst == buffer) {
1467 GrAssert(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001468 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001469 scratch.reset(tightRowBytes);
1470 void* tmpRow = scratch.get();
1471 // flip y in-place by rows
1472 const int halfY = height >> 1;
1473 char* top = reinterpret_cast<char*>(buffer);
1474 char* bottom = top + (height - 1) * rowBytes;
1475 for (int y = 0; y < halfY; y++) {
1476 memcpy(tmpRow, top, tightRowBytes);
1477 memcpy(top, bottom, tightRowBytes);
1478 memcpy(bottom, tmpRow, tightRowBytes);
1479 top += rowBytes;
1480 bottom -= rowBytes;
1481 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001482 }
1483 } else {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001484 GrAssert(readDst != buffer); GrAssert(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00001485 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001486 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001487 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001488 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001489 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001490 dst += (height-1) * rowBytes;
1491 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001492 for (int y = 0; y < height; y++) {
1493 memcpy(dst, src, tightRowBytes);
1494 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001495 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001496 dst += rowBytes;
1497 } else {
1498 dst -= rowBytes;
1499 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001500 }
1501 }
1502 return true;
1503}
1504
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001505void GrGpuGL::flushRenderTarget(const GrIRect* bound) {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001506
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001507 GrGLRenderTarget* rt =
1508 static_cast<GrGLRenderTarget*>(this->drawState()->getRenderTarget());
1509 GrAssert(NULL != rt);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001510
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001511 if (fHWBoundRenderTarget != rt) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001512 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, rt->renderFBOID()));
robertphillips@google.coma6ffb582013-04-29 16:50:17 +00001513#if GR_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001514 GrGLenum status;
1515 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.comc312bf92011-03-21 21:10:33 +00001516 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
reed@google.comb9255d52011-06-13 18:54:59 +00001517 GrPrintf("GrGpuGL::flushRenderTarget glCheckFramebufferStatus %x\n", status);
reed@google.comac10a2d2010-12-22 21:39:39 +00001518 }
robertphillips@google.coma6ffb582013-04-29 16:50:17 +00001519#endif
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001520 fHWBoundRenderTarget = rt;
bsalomon@google.comd302f142011-03-03 13:54:13 +00001521 const GrGLIRect& vp = rt->getViewport();
bsalomon@google.coma3201942012-06-21 19:58:20 +00001522 if (fHWViewport != vp) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001523 vp.pushToGLViewport(this->glInterface());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001524 fHWViewport = vp;
reed@google.comac10a2d2010-12-22 21:39:39 +00001525 }
1526 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001527 if (NULL == bound || !bound->isEmpty()) {
1528 rt->flagAsNeedingResolve(bound);
1529 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001530}
1531
twiz@google.com0f31ca72011-03-18 17:38:11 +00001532GrGLenum gPrimitiveType2GLMode[] = {
1533 GR_GL_TRIANGLES,
1534 GR_GL_TRIANGLE_STRIP,
1535 GR_GL_TRIANGLE_FAN,
1536 GR_GL_POINTS,
1537 GR_GL_LINES,
1538 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00001539};
1540
bsalomon@google.comd302f142011-03-03 13:54:13 +00001541#define SWAP_PER_DRAW 0
1542
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001543#if SWAP_PER_DRAW
bsalomon@google.comd302f142011-03-03 13:54:13 +00001544 #if GR_MAC_BUILD
1545 #include <AGL/agl.h>
1546 #elif GR_WIN32_BUILD
bsalomon@google.comce7357d2012-06-25 17:49:25 +00001547 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00001548 void SwapBuf() {
1549 DWORD procID = GetCurrentProcessId();
1550 HWND hwnd = GetTopWindow(GetDesktopWindow());
1551 while(hwnd) {
1552 DWORD wndProcID = 0;
1553 GetWindowThreadProcessId(hwnd, &wndProcID);
1554 if(wndProcID == procID) {
1555 SwapBuffers(GetDC(hwnd));
1556 }
1557 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
1558 }
1559 }
1560 #endif
1561#endif
1562
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001563void GrGpuGL::onGpuDraw(const DrawInfo& info) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001564 size_t indexOffsetInBytes;
1565 this->setupGeometry(info, &indexOffsetInBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +00001566
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001567 GrAssert((size_t)info.primitiveType() < GR_ARRAY_COUNT(gPrimitiveType2GLMode));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00001568
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001569 if (info.isIndexed()) {
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00001570 GrGLvoid* indices =
1571 reinterpret_cast<GrGLvoid*>(indexOffsetInBytes + sizeof(uint16_t) * info.startIndex());
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001572 // info.startVertex() was accounted for by setupGeometry.
1573 GL_CALL(DrawElements(gPrimitiveType2GLMode[info.primitiveType()],
1574 info.indexCount(),
1575 GR_GL_UNSIGNED_SHORT,
1576 indices));
1577 } else {
1578 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account for
1579 // startVertex in the DrawElements case. So we always rely on setupGeometry to have
1580 // accounted for startVertex.
1581 GL_CALL(DrawArrays(gPrimitiveType2GLMode[info.primitiveType()], 0, info.vertexCount()));
1582 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00001583#if SWAP_PER_DRAW
1584 glFlush();
1585 #if GR_MAC_BUILD
1586 aglSwapBuffers(aglGetCurrentContext());
1587 int set_a_break_pt_here = 9;
1588 aglSwapBuffers(aglGetCurrentContext());
1589 #elif GR_WIN32_BUILD
1590 SwapBuf();
1591 int set_a_break_pt_here = 9;
1592 SwapBuf();
1593 #endif
1594#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00001595}
1596
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001597namespace {
bsalomon@google.com100abf42012-09-05 17:40:04 +00001598
1599static const uint16_t kOnes16 = static_cast<uint16_t>(~0);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001600const GrStencilSettings& winding_nv_path_stencil_settings() {
1601 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
1602 kIncClamp_StencilOp,
1603 kIncClamp_StencilOp,
1604 kAlwaysIfInClip_StencilFunc,
bsalomon@google.com100abf42012-09-05 17:40:04 +00001605 kOnes16, kOnes16, kOnes16);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001606 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
1607}
1608const GrStencilSettings& even_odd_nv_path_stencil_settings() {
1609 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
1610 kInvert_StencilOp,
1611 kInvert_StencilOp,
1612 kAlwaysIfInClip_StencilFunc,
bsalomon@google.com100abf42012-09-05 17:40:04 +00001613 kOnes16, kOnes16, kOnes16);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001614 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
1615}
1616}
1617
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001618void GrGpuGL::setStencilPathSettings(const GrPath&,
sugoi@google.com12b4e272012-12-06 20:13:11 +00001619 SkPath::FillType fill,
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001620 GrStencilSettings* settings) {
1621 switch (fill) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001622 case SkPath::kEvenOdd_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001623 *settings = even_odd_nv_path_stencil_settings();
1624 return;
sugoi@google.com12b4e272012-12-06 20:13:11 +00001625 case SkPath::kWinding_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001626 *settings = winding_nv_path_stencil_settings();
1627 return;
1628 default:
1629 GrCrash("Unexpected path fill.");
1630 }
1631}
1632
sugoi@google.com12b4e272012-12-06 20:13:11 +00001633void GrGpuGL::onGpuStencilPath(const GrPath* path, SkPath::FillType fill) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001634 GrAssert(this->caps()->pathStencilingSupport());
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001635
1636 GrGLuint id = static_cast<const GrGLPath*>(path)->pathID();
1637 GrDrawState* drawState = this->drawState();
1638 GrAssert(NULL != drawState->getRenderTarget());
1639 if (NULL == drawState->getRenderTarget()->getStencilBuffer()) {
1640 return;
1641 }
1642
1643 // Decide how to manipulate the stencil buffer based on the fill rule.
1644 // Also, assert that the stencil settings we set in setStencilPathSettings
1645 // are present.
1646 GrAssert(!fStencilSettings.isTwoSided());
1647 GrGLenum fillMode;
1648 switch (fill) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001649 case SkPath::kWinding_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001650 fillMode = GR_GL_COUNT_UP;
1651 GrAssert(kIncClamp_StencilOp ==
1652 fStencilSettings.passOp(GrStencilSettings::kFront_Face));
1653 GrAssert(kIncClamp_StencilOp ==
1654 fStencilSettings.failOp(GrStencilSettings::kFront_Face));
1655 break;
sugoi@google.com12b4e272012-12-06 20:13:11 +00001656 case SkPath::kEvenOdd_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001657 fillMode = GR_GL_INVERT;
1658 GrAssert(kInvert_StencilOp ==
1659 fStencilSettings.passOp(GrStencilSettings::kFront_Face));
1660 GrAssert(kInvert_StencilOp ==
1661 fStencilSettings.failOp(GrStencilSettings::kFront_Face));
1662 break;
1663 default:
1664 // Only the above two fill rules are allowed.
1665 GrCrash("Unexpected path fill.");
bsalomon@google.com548a4332012-07-11 19:45:22 +00001666 return; // suppress unused var warning.
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001667 }
1668 GrGLint writeMask = fStencilSettings.writeMask(GrStencilSettings::kFront_Face);
1669 GL_CALL(StencilFillPath(id, fillMode, writeMask));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001670}
1671
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001672void GrGpuGL::onResolveRenderTarget(GrRenderTarget* target) {
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001673 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001674 if (rt->needsResolve()) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001675 // Some extensions automatically resolves the texture when it is read.
1676 if (this->glCaps().usesMSAARenderBuffers()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001677 GrAssert(rt->textureFBOID() != rt->renderFBOID());
1678 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER, rt->renderFBOID()));
1679 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER, rt->textureFBOID()));
1680 // make sure we go through flushRenderTarget() since we've modified
1681 // the bound DRAW FBO ID.
1682 fHWBoundRenderTarget = NULL;
1683 const GrGLIRect& vp = rt->getViewport();
1684 const GrIRect dirtyRect = rt->getResolveRect();
1685 GrGLIRect r;
1686 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
1687 dirtyRect.width(), dirtyRect.height(), target->origin());
reed@google.comac10a2d2010-12-22 21:39:39 +00001688
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001689 GrAutoTRestore<ScissorState> asr;
bsalomon@google.com347c3822013-05-01 20:10:01 +00001690 if (GrGLCaps::kES_Apple_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001691 // Apple's extension uses the scissor as the blit bounds.
bsalomon@google.coma3201942012-06-21 19:58:20 +00001692 asr.reset(&fScissorState);
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001693 fScissorState.fEnabled = true;
1694 fScissorState.fRect = dirtyRect;
bsalomon@google.coma3201942012-06-21 19:58:20 +00001695 this->flushScissor();
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001696 GL_CALL(ResolveMultisampleFramebuffer());
1697 } else {
bsalomon@google.com347c3822013-05-01 20:10:01 +00001698 if (GrGLCaps::kDesktop_EXT_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001699 // this respects the scissor during the blit, so disable it.
bsalomon@google.comf3a60c02013-03-19 19:06:09 +00001700 asr.reset(&fScissorState);
1701 fScissorState.fEnabled = false;
1702 this->flushScissor();
1703 }
1704 int right = r.fLeft + r.fWidth;
1705 int top = r.fBottom + r.fHeight;
1706 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
1707 r.fLeft, r.fBottom, right, top,
1708 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00001709 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001710 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001711 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00001712 }
1713}
1714
bsalomon@google.com411dad02012-06-05 20:24:20 +00001715namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00001716
bsalomon@google.com411dad02012-06-05 20:24:20 +00001717GrGLenum gr_to_gl_stencil_func(GrStencilFunc basicFunc) {
1718 static const GrGLenum gTable[] = {
1719 GR_GL_ALWAYS, // kAlways_StencilFunc
1720 GR_GL_NEVER, // kNever_StencilFunc
1721 GR_GL_GREATER, // kGreater_StencilFunc
1722 GR_GL_GEQUAL, // kGEqual_StencilFunc
1723 GR_GL_LESS, // kLess_StencilFunc
1724 GR_GL_LEQUAL, // kLEqual_StencilFunc,
1725 GR_GL_EQUAL, // kEqual_StencilFunc,
1726 GR_GL_NOTEQUAL, // kNotEqual_StencilFunc,
1727 };
1728 GR_STATIC_ASSERT(GR_ARRAY_COUNT(gTable) == kBasicStencilFuncCount);
1729 GR_STATIC_ASSERT(0 == kAlways_StencilFunc);
1730 GR_STATIC_ASSERT(1 == kNever_StencilFunc);
1731 GR_STATIC_ASSERT(2 == kGreater_StencilFunc);
1732 GR_STATIC_ASSERT(3 == kGEqual_StencilFunc);
1733 GR_STATIC_ASSERT(4 == kLess_StencilFunc);
1734 GR_STATIC_ASSERT(5 == kLEqual_StencilFunc);
1735 GR_STATIC_ASSERT(6 == kEqual_StencilFunc);
1736 GR_STATIC_ASSERT(7 == kNotEqual_StencilFunc);
1737 GrAssert((unsigned) basicFunc < kBasicStencilFuncCount);
1738
1739 return gTable[basicFunc];
1740}
1741
1742GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
1743 static const GrGLenum gTable[] = {
1744 GR_GL_KEEP, // kKeep_StencilOp
1745 GR_GL_REPLACE, // kReplace_StencilOp
1746 GR_GL_INCR_WRAP, // kIncWrap_StencilOp
1747 GR_GL_INCR, // kIncClamp_StencilOp
1748 GR_GL_DECR_WRAP, // kDecWrap_StencilOp
1749 GR_GL_DECR, // kDecClamp_StencilOp
1750 GR_GL_ZERO, // kZero_StencilOp
1751 GR_GL_INVERT, // kInvert_StencilOp
1752 };
1753 GR_STATIC_ASSERT(GR_ARRAY_COUNT(gTable) == kStencilOpCount);
1754 GR_STATIC_ASSERT(0 == kKeep_StencilOp);
1755 GR_STATIC_ASSERT(1 == kReplace_StencilOp);
1756 GR_STATIC_ASSERT(2 == kIncWrap_StencilOp);
1757 GR_STATIC_ASSERT(3 == kIncClamp_StencilOp);
1758 GR_STATIC_ASSERT(4 == kDecWrap_StencilOp);
1759 GR_STATIC_ASSERT(5 == kDecClamp_StencilOp);
1760 GR_STATIC_ASSERT(6 == kZero_StencilOp);
1761 GR_STATIC_ASSERT(7 == kInvert_StencilOp);
1762 GrAssert((unsigned) op < kStencilOpCount);
1763 return gTable[op];
1764}
1765
1766void set_gl_stencil(const GrGLInterface* gl,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001767 const GrStencilSettings& settings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001768 GrGLenum glFace,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001769 GrStencilSettings::Face grFace) {
1770 GrGLenum glFunc = gr_to_gl_stencil_func(settings.func(grFace));
1771 GrGLenum glFailOp = gr_to_gl_stencil_op(settings.failOp(grFace));
1772 GrGLenum glPassOp = gr_to_gl_stencil_op(settings.passOp(grFace));
1773
1774 GrGLint ref = settings.funcRef(grFace);
1775 GrGLint mask = settings.funcMask(grFace);
1776 GrGLint writeMask = settings.writeMask(grFace);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001777
1778 if (GR_GL_FRONT_AND_BACK == glFace) {
1779 // we call the combined func just in case separate stencil is not
1780 // supported.
1781 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
1782 GR_GL_CALL(gl, StencilMask(writeMask));
1783 GR_GL_CALL(gl, StencilOp(glFailOp, glPassOp, glPassOp));
1784 } else {
1785 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
1786 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
1787 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, glPassOp, glPassOp));
1788 }
1789}
1790}
bsalomon@google.comd302f142011-03-03 13:54:13 +00001791
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001792void GrGpuGL::flushStencil(DrawType type) {
1793 if (kStencilPath_DrawType == type) {
1794 GrAssert(!fStencilSettings.isTwoSided());
1795 // Just the func, ref, and mask is set here. The op and write mask are params to the call
1796 // that draws the path to the SB (glStencilFillPath)
1797 GrGLenum func =
1798 gr_to_gl_stencil_func(fStencilSettings.func(GrStencilSettings::kFront_Face));
1799 GL_CALL(PathStencilFunc(func,
1800 fStencilSettings.funcRef(GrStencilSettings::kFront_Face),
1801 fStencilSettings.funcMask(GrStencilSettings::kFront_Face)));
1802 } else if (fHWStencilSettings != fStencilSettings) {
1803 if (fStencilSettings.isDisabled()) {
1804 if (kNo_TriState != fHWStencilTestEnabled) {
1805 GL_CALL(Disable(GR_GL_STENCIL_TEST));
1806 fHWStencilTestEnabled = kNo_TriState;
1807 }
1808 } else {
1809 if (kYes_TriState != fHWStencilTestEnabled) {
1810 GL_CALL(Enable(GR_GL_STENCIL_TEST));
1811 fHWStencilTestEnabled = kYes_TriState;
1812 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001813 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001814 if (!fStencilSettings.isDisabled()) {
bsalomon@google.combcce8922013-03-25 15:38:39 +00001815 if (this->caps()->twoSidedStencilSupport()) {
bsalomon@google.com411dad02012-06-05 20:24:20 +00001816 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001817 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001818 GR_GL_FRONT,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001819 GrStencilSettings::kFront_Face);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001820 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001821 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001822 GR_GL_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001823 GrStencilSettings::kBack_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00001824 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00001825 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001826 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001827 GR_GL_FRONT_AND_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001828 GrStencilSettings::kFront_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00001829 }
1830 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001831 fHWStencilSettings = fStencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00001832 }
1833}
1834
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001835void GrGpuGL::flushAAState(DrawType type) {
bsalomon@google.com202d1392013-03-19 18:58:08 +00001836// At least some ATI linux drivers will render GL_LINES incorrectly when MSAA state is enabled but
1837// the target is not multisampled. Single pixel wide lines are rendered thicker than 1 pixel wide.
1838#if 0
1839 // Replace RT_HAS_MSAA with this definition once this driver bug is no longer a relevant concern
1840 #define RT_HAS_MSAA rt->isMultisampled()
1841#else
1842 #define RT_HAS_MSAA (rt->isMultisampled() || kDrawLines_DrawType == type)
1843#endif
1844
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001845 const GrRenderTarget* rt = this->getDrawState().getRenderTarget();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001846 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001847 // ES doesn't support toggling GL_MULTISAMPLE and doesn't have
1848 // smooth lines.
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001849 // we prefer smooth lines over multisampled lines
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001850 bool smoothLines = false;
1851
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001852 if (kDrawLines_DrawType == type) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001853 smoothLines = this->willUseHWAALines();
1854 if (smoothLines) {
1855 if (kYes_TriState != fHWAAState.fSmoothLineEnabled) {
1856 GL_CALL(Enable(GR_GL_LINE_SMOOTH));
1857 fHWAAState.fSmoothLineEnabled = kYes_TriState;
1858 // must disable msaa to use line smoothing
bsalomon@google.com202d1392013-03-19 18:58:08 +00001859 if (RT_HAS_MSAA &&
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001860 kNo_TriState != fHWAAState.fMSAAEnabled) {
1861 GL_CALL(Disable(GR_GL_MULTISAMPLE));
1862 fHWAAState.fMSAAEnabled = kNo_TriState;
1863 }
1864 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001865 } else {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001866 if (kNo_TriState != fHWAAState.fSmoothLineEnabled) {
1867 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
1868 fHWAAState.fSmoothLineEnabled = kNo_TriState;
1869 }
1870 }
1871 }
bsalomon@google.com202d1392013-03-19 18:58:08 +00001872 if (!smoothLines && RT_HAS_MSAA) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001873 // FIXME: GL_NV_pr doesn't seem to like MSAA disabled. The paths
1874 // convex hulls of each segment appear to get filled.
1875 bool enableMSAA = kStencilPath_DrawType == type ||
1876 this->getDrawState().isHWAntialiasState();
1877 if (enableMSAA) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001878 if (kYes_TriState != fHWAAState.fMSAAEnabled) {
1879 GL_CALL(Enable(GR_GL_MULTISAMPLE));
1880 fHWAAState.fMSAAEnabled = kYes_TriState;
1881 }
1882 } else {
1883 if (kNo_TriState != fHWAAState.fMSAAEnabled) {
1884 GL_CALL(Disable(GR_GL_MULTISAMPLE));
1885 fHWAAState.fMSAAEnabled = kNo_TriState;
1886 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001887 }
1888 }
1889 }
1890}
1891
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001892void GrGpuGL::flushBlend(bool isLines,
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001893 GrBlendCoeff srcCoeff,
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001894 GrBlendCoeff dstCoeff) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001895 if (isLines && this->willUseHWAALines()) {
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001896 if (kYes_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001897 GL_CALL(Enable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001898 fHWBlendState.fEnabled = kYes_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001899 }
bsalomon@google.com47059542012-06-06 20:51:20 +00001900 if (kSA_GrBlendCoeff != fHWBlendState.fSrcCoeff ||
1901 kISA_GrBlendCoeff != fHWBlendState.fDstCoeff) {
1902 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[kSA_GrBlendCoeff],
1903 gXfermodeCoeff2Blend[kISA_GrBlendCoeff]));
1904 fHWBlendState.fSrcCoeff = kSA_GrBlendCoeff;
1905 fHWBlendState.fDstCoeff = kISA_GrBlendCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001906 }
1907 } else {
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001908 // any optimization to disable blending should
1909 // have already been applied and tweaked the coeffs
1910 // to (1, 0).
bsalomon@google.com47059542012-06-06 20:51:20 +00001911 bool blendOff = kOne_GrBlendCoeff == srcCoeff &&
1912 kZero_GrBlendCoeff == dstCoeff;
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001913 if (blendOff) {
1914 if (kNo_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001915 GL_CALL(Disable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001916 fHWBlendState.fEnabled = kNo_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001917 }
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001918 } else {
1919 if (kYes_TriState != fHWBlendState.fEnabled) {
1920 GL_CALL(Enable(GR_GL_BLEND));
1921 fHWBlendState.fEnabled = kYes_TriState;
1922 }
1923 if (fHWBlendState.fSrcCoeff != srcCoeff ||
1924 fHWBlendState.fDstCoeff != dstCoeff) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001925 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
1926 gXfermodeCoeff2Blend[dstCoeff]));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001927 fHWBlendState.fSrcCoeff = srcCoeff;
1928 fHWBlendState.fDstCoeff = dstCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001929 }
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00001930 GrColor blendConst = this->getDrawState().getBlendConstant();
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001931 if ((BlendCoeffReferencesConstant(srcCoeff) ||
1932 BlendCoeffReferencesConstant(dstCoeff)) &&
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001933 (!fHWBlendState.fConstColorValid ||
1934 fHWBlendState.fConstColor != blendConst)) {
bsalomon@google.com75347472012-09-17 17:23:21 +00001935 GrGLfloat c[4];
1936 GrColorToRGBAFloat(blendConst, c);
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001937 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001938 fHWBlendState.fConstColor = blendConst;
1939 fHWBlendState.fConstColorValid = true;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001940 }
1941 }
1942 }
1943}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001944namespace {
1945
bsalomon@google.com6d003d12012-09-11 15:45:20 +00001946inline void set_tex_swizzle(GrGLenum swizzle[4], const GrGLInterface* gl) {
bsalomon@google.com4d063de2012-05-31 17:59:23 +00001947 GR_GL_CALL(gl, TexParameteriv(GR_GL_TEXTURE_2D,
1948 GR_GL_TEXTURE_SWIZZLE_RGBA,
1949 reinterpret_cast<const GrGLint*>(swizzle)));
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001950}
bsalomon@google.comb8670992012-07-25 21:27:09 +00001951
bsalomon@google.com6c76d242012-09-07 16:52:24 +00001952inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00001953 static const GrGLenum gWrapModes[] = {
1954 GR_GL_CLAMP_TO_EDGE,
1955 GR_GL_REPEAT,
1956 GR_GL_MIRRORED_REPEAT
1957 };
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +00001958 GR_STATIC_ASSERT(SkShader::kTileModeCount == SK_ARRAY_COUNT(gWrapModes));
bsalomon@google.comb8670992012-07-25 21:27:09 +00001959 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
1960 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
1961 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
1962 return gWrapModes[tm];
1963}
1964
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001965}
1966
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001967void GrGpuGL::bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture) {
1968 GrAssert(NULL != texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00001969
bsalomon@google.comb8670992012-07-25 21:27:09 +00001970 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
1971 // 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 +00001972 // out of the "last != next" check.
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001973 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon@google.com4c883782012-06-04 19:05:11 +00001974 if (NULL != texRT) {
1975 this->onResolveRenderTarget(texRT);
1976 }
1977
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001978 if (fHWBoundTextures[unitIdx] != texture) {
1979 this->setTextureUnit(unitIdx);
1980 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texture->textureID()));
1981 fHWBoundTextures[unitIdx] = texture;
bsalomon@google.com4c883782012-06-04 19:05:11 +00001982 }
1983
bsalomon@google.com4c883782012-06-04 19:05:11 +00001984 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001985 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00001986 bool setAll = timestamp < this->getResetTimestamp();
1987 GrGLTexture::TexParams newTexParams;
1988
bsalomon@google.comb8670992012-07-25 21:27:09 +00001989 newTexParams.fFilter = params.isBilerp() ? GR_GL_LINEAR : GR_GL_NEAREST;
bsalomon@google.com4c883782012-06-04 19:05:11 +00001990
bsalomon@google.comb8670992012-07-25 21:27:09 +00001991 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
1992 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomon@google.com4c883782012-06-04 19:05:11 +00001993 memcpy(newTexParams.fSwizzleRGBA,
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001994 GrGLShaderBuilder::GetTexParamSwizzle(texture->config(), this->glCaps()),
bsalomon@google.com4c883782012-06-04 19:05:11 +00001995 sizeof(newTexParams.fSwizzleRGBA));
1996 if (setAll || newTexParams.fFilter != oldTexParams.fFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00001997 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00001998 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1999 GR_GL_TEXTURE_MAG_FILTER,
2000 newTexParams.fFilter));
2001 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2002 GR_GL_TEXTURE_MIN_FILTER,
2003 newTexParams.fFilter));
2004 }
2005 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002006 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002007 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2008 GR_GL_TEXTURE_WRAP_S,
2009 newTexParams.fWrapS));
2010 }
2011 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002012 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002013 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2014 GR_GL_TEXTURE_WRAP_T,
2015 newTexParams.fWrapT));
2016 }
2017 if (this->glCaps().textureSwizzleSupport() &&
2018 (setAll || memcmp(newTexParams.fSwizzleRGBA,
2019 oldTexParams.fSwizzleRGBA,
2020 sizeof(newTexParams.fSwizzleRGBA)))) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002021 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002022 set_tex_swizzle(newTexParams.fSwizzleRGBA,
2023 this->glInterface());
2024 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002025 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002026}
2027
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002028void GrGpuGL::flushMiscFixedFunctionState() {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002029
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002030 const GrDrawState& drawState = this->getDrawState();
reed@google.comac10a2d2010-12-22 21:39:39 +00002031
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002032 if (drawState.isDitherState()) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002033 if (kYes_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002034 GL_CALL(Enable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002035 fHWDitherEnabled = kYes_TriState;
2036 }
2037 } else {
2038 if (kNo_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002039 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002040 fHWDitherEnabled = kNo_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +00002041 }
2042 }
2043
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002044 if (drawState.isColorWriteDisabled()) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002045 if (kNo_TriState != fHWWriteToColor) {
2046 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
2047 GR_GL_FALSE, GR_GL_FALSE));
2048 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002049 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002050 } else {
2051 if (kYes_TriState != fHWWriteToColor) {
2052 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
2053 fHWWriteToColor = kYes_TriState;
2054 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00002055 }
2056
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002057 if (fHWDrawFace != drawState.getDrawFace()) {
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00002058 switch (this->getDrawState().getDrawFace()) {
tomhudson@google.com93813632011-10-27 20:21:16 +00002059 case GrDrawState::kCCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002060 GL_CALL(Enable(GR_GL_CULL_FACE));
2061 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002062 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002063 case GrDrawState::kCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002064 GL_CALL(Enable(GR_GL_CULL_FACE));
2065 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002066 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002067 case GrDrawState::kBoth_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002068 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002069 break;
2070 default:
2071 GrCrash("Unknown draw face.");
2072 }
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002073 fHWDrawFace = drawState.getDrawFace();
bsalomon@google.comd302f142011-03-03 13:54:13 +00002074 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002075}
2076
reed@google.comac10a2d2010-12-22 21:39:39 +00002077void GrGpuGL::notifyRenderTargetDelete(GrRenderTarget* renderTarget) {
2078 GrAssert(NULL != renderTarget);
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002079 if (fHWBoundRenderTarget == renderTarget) {
2080 fHWBoundRenderTarget = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00002081 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002082}
2083
2084void GrGpuGL::notifyTextureDelete(GrGLTexture* texture) {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002085 for (int s = 0; s < fHWBoundTextures.count(); ++s) {
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002086 if (fHWBoundTextures[s] == texture) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002087 // deleting bound texture does implied bind to 0
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002088 fHWBoundTextures[s] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002089 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002090 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002091}
2092
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002093bool GrGpuGL::configToGLFormats(GrPixelConfig config,
2094 bool getSizedInternalFormat,
2095 GrGLenum* internalFormat,
2096 GrGLenum* externalFormat,
2097 GrGLenum* externalType) {
2098 GrGLenum dontCare;
2099 if (NULL == internalFormat) {
2100 internalFormat = &dontCare;
2101 }
2102 if (NULL == externalFormat) {
2103 externalFormat = &dontCare;
2104 }
2105 if (NULL == externalType) {
2106 externalType = &dontCare;
2107 }
2108
reed@google.comac10a2d2010-12-22 21:39:39 +00002109 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00002110 case kRGBA_8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +00002111 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002112 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002113 if (getSizedInternalFormat) {
2114 *internalFormat = GR_GL_RGBA8;
2115 } else {
2116 *internalFormat = GR_GL_RGBA;
2117 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002118 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002119 break;
bsalomon@google.com0342a852012-08-20 19:22:38 +00002120 case kBGRA_8888_GrPixelConfig:
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002121 if (!this->glCaps().bgraFormatSupport()) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00002122 return false;
2123 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002124 if (this->glCaps().bgraIsInternalFormat()) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002125 if (getSizedInternalFormat) {
2126 *internalFormat = GR_GL_BGRA8;
2127 } else {
2128 *internalFormat = GR_GL_BGRA;
2129 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002130 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002131 if (getSizedInternalFormat) {
2132 *internalFormat = GR_GL_RGBA8;
2133 } else {
2134 *internalFormat = GR_GL_RGBA;
2135 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002136 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002137 *externalFormat = GR_GL_BGRA;
bsalomon@google.com6f379512011-11-16 20:36:03 +00002138 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002139 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002140 case kRGB_565_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002141 *internalFormat = GR_GL_RGB;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002142 *externalFormat = GR_GL_RGB;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002143 if (getSizedInternalFormat) {
2144 if (this->glBinding() == kDesktop_GrGLBinding) {
2145 return false;
2146 } else {
2147 *internalFormat = GR_GL_RGB565;
2148 }
2149 } else {
2150 *internalFormat = GR_GL_RGB;
2151 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002152 *externalType = GR_GL_UNSIGNED_SHORT_5_6_5;
reed@google.comac10a2d2010-12-22 21:39:39 +00002153 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002154 case kRGBA_4444_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002155 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002156 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002157 if (getSizedInternalFormat) {
2158 *internalFormat = GR_GL_RGBA4;
2159 } else {
2160 *internalFormat = GR_GL_RGBA;
2161 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002162 *externalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
reed@google.comac10a2d2010-12-22 21:39:39 +00002163 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002164 case kIndex_8_GrPixelConfig:
bsalomon@google.combcce8922013-03-25 15:38:39 +00002165 if (this->caps()->eightBitPaletteSupport()) {
bsalomon@google.comc312bf92011-03-21 21:10:33 +00002166 *internalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002167 // glCompressedTexImage doesn't take external params
2168 *externalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002169 // no sized/unsized internal format distinction here
2170 *internalFormat = GR_GL_PALETTE8_RGBA8;
2171 // unused with CompressedTexImage
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002172 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002173 } else {
2174 return false;
2175 }
2176 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002177 case kAlpha_8_GrPixelConfig:
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002178 if (this->glCaps().textureRedSupport()) {
2179 *internalFormat = GR_GL_RED;
2180 *externalFormat = GR_GL_RED;
2181 if (getSizedInternalFormat) {
2182 *internalFormat = GR_GL_R8;
2183 } else {
2184 *internalFormat = GR_GL_RED;
2185 }
2186 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002187 } else {
2188 *internalFormat = GR_GL_ALPHA;
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002189 *externalFormat = GR_GL_ALPHA;
2190 if (getSizedInternalFormat) {
2191 *internalFormat = GR_GL_ALPHA8;
2192 } else {
2193 *internalFormat = GR_GL_ALPHA;
2194 }
2195 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002196 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002197 break;
2198 default:
2199 return false;
2200 }
2201 return true;
2202}
2203
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002204void GrGpuGL::setTextureUnit(int unit) {
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002205 GrAssert(unit >= 0 && unit < fHWBoundTextures.count());
2206 if (unit != fHWActiveTextureUnitIdx) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002207 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00002208 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002209 }
2210}
bsalomon@google.com316f99232011-01-13 21:28:12 +00002211
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002212void GrGpuGL::setScratchTextureUnit() {
2213 // Bind the last texture unit since it is the least likely to be used by GrGLProgram.
2214 int lastUnitIdx = fHWBoundTextures.count() - 1;
2215 if (lastUnitIdx != fHWActiveTextureUnitIdx) {
2216 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + lastUnitIdx));
2217 fHWActiveTextureUnitIdx = lastUnitIdx;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002218 }
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002219 // clear out the this field so that if a program does use this unit it will rebind the correct
2220 // texture.
2221 fHWBoundTextures[lastUnitIdx] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002222}
2223
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002224namespace {
2225// Determines whether glBlitFramebuffer could be used between src and dst.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002226inline bool can_blit_framebuffer(const GrSurface* dst,
2227 const GrSurface* src,
2228 const GrGpuGL* gpu,
2229 bool* wouldNeedTempFBO = NULL) {
bsalomon@google.com347c3822013-05-01 20:10:01 +00002230 if (gpu->isConfigRenderable(dst->config()) &&
2231 gpu->isConfigRenderable(src->config()) &&
2232 gpu->glCaps().usesMSAARenderBuffers()) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002233 if (NULL != wouldNeedTempFBO) {
2234 *wouldNeedTempFBO = NULL == dst->asRenderTarget() || NULL == src->asRenderTarget();
2235 }
2236 return true;
2237 } else {
2238 return false;
2239 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002240}
bsalomon@google.comeb851172013-04-15 13:51:00 +00002241
2242inline bool can_copy_texsubimage(const GrSurface* dst,
2243 const GrSurface* src,
2244 const GrGpuGL* gpu,
2245 bool* wouldNeedTempFBO = NULL) {
2246 // Table 3.9 of the ES2 spec indicates the supported formats with CopyTexSubImage
2247 // and BGRA isn't in the spec. There doesn't appear to be any extension that adds it. Perhaps
2248 // many drivers would allow it to work, but ANGLE does not.
2249 if (kES2_GrGLBinding == gpu->glBinding() && gpu->glCaps().bgraIsInternalFormat() &&
2250 (kBGRA_8888_GrPixelConfig == dst->config() || kBGRA_8888_GrPixelConfig == src->config())) {
2251 return false;
2252 }
2253 const GrGLRenderTarget* dstRT = static_cast<const GrGLRenderTarget*>(dst->asRenderTarget());
2254 // If dst is multisampled (and uses an extension where there is a separate MSAA renderbuffer)
2255 // then we don't want to copy to the texture but to the MSAA buffer.
2256 if (NULL != dstRT && dstRT->renderFBOID() != dstRT->textureFBOID()) {
2257 return false;
2258 }
bsalomon@google.coma2719852013-04-17 14:25:27 +00002259 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2260 // If the src is multisampled (and uses an extension where there is a separate MSAA
2261 // renderbuffer) then it is an invalid operation to call CopyTexSubImage
2262 if (NULL != srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
2263 return false;
2264 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002265 if (gpu->isConfigRenderable(src->config()) && NULL != dst->asTexture() &&
2266 dst->origin() == src->origin() && kIndex_8_GrPixelConfig != src->config()) {
2267 if (NULL != wouldNeedTempFBO) {
2268 *wouldNeedTempFBO = NULL == src->asRenderTarget();
2269 }
2270 return true;
2271 } else {
2272 return false;
2273 }
2274}
2275
2276// If a temporary FBO was created, its non-zero ID is returned. The viewport that the copy rect is
2277// relative to is output.
2278inline GrGLuint bind_surface_as_fbo(const GrGLInterface* gl,
2279 GrSurface* surface,
2280 GrGLenum fboTarget,
2281 GrGLIRect* viewport) {
2282 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(surface->asRenderTarget());
2283 GrGLuint tempFBOID;
2284 if (NULL == rt) {
2285 GrAssert(NULL != surface->asTexture());
2286 GrGLuint texID = static_cast<GrGLTexture*>(surface->asTexture())->textureID();
2287 GR_GL_CALL(gl, GenFramebuffers(1, &tempFBOID));
2288 GR_GL_CALL(gl, BindFramebuffer(fboTarget, tempFBOID));
2289 GR_GL_CALL(gl, FramebufferTexture2D(fboTarget,
2290 GR_GL_COLOR_ATTACHMENT0,
2291 GR_GL_TEXTURE_2D,
2292 texID,
2293 0));
2294 viewport->fLeft = 0;
2295 viewport->fBottom = 0;
2296 viewport->fWidth = surface->width();
2297 viewport->fHeight = surface->height();
2298 } else {
2299 tempFBOID = 0;
2300 GR_GL_CALL(gl, BindFramebuffer(fboTarget, rt->renderFBOID()));
2301 *viewport = rt->getViewport();
2302 }
2303 return tempFBOID;
2304}
2305
2306}
2307
2308void GrGpuGL::initCopySurfaceDstDesc(const GrSurface* src, GrTextureDesc* desc) {
2309 // Check for format issues with glCopyTexSubImage2D
2310 if (kES2_GrGLBinding == this->glBinding() && this->glCaps().bgraIsInternalFormat() &&
2311 kBGRA_8888_GrPixelConfig == src->config()) {
2312 // glCopyTexSubImage2D doesn't work with this config. We'll want to make it a render target
bsalomon@google.com31c4e892013-04-15 13:55:02 +00002313 // in order to call glBlitFramebuffer or to copy to it by rendering.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002314 INHERITED::initCopySurfaceDstDesc(src, desc);
bsalomon@google.coma2719852013-04-17 14:25:27 +00002315 return;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002316 } else if (NULL == src->asRenderTarget()) {
2317 // We don't want to have to create an FBO just to use glCopyTexSubImage2D. Let the base
2318 // class handle it by rendering.
2319 INHERITED::initCopySurfaceDstDesc(src, desc);
bsalomon@google.coma2719852013-04-17 14:25:27 +00002320 return;
2321 }
2322
2323 const GrGLRenderTarget* srcRT = static_cast<const GrGLRenderTarget*>(src->asRenderTarget());
2324 if (NULL != srcRT && srcRT->renderFBOID() != srcRT->textureFBOID()) {
2325 // It's illegal to call CopyTexSubImage2D on a MSAA renderbuffer.
2326 INHERITED::initCopySurfaceDstDesc(src, desc);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002327 } else {
2328 desc->fConfig = src->config();
2329 desc->fOrigin = src->origin();
2330 desc->fFlags = kNone_GrTextureFlags;
2331 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002332}
2333
2334bool GrGpuGL::onCopySurface(GrSurface* dst,
2335 GrSurface* src,
2336 const SkIRect& srcRect,
2337 const SkIPoint& dstPoint) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002338 bool inheritedCouldCopy = INHERITED::onCanCopySurface(dst, src, srcRect, dstPoint);
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002339 bool copied = false;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002340 bool wouldNeedTempFBO = false;
2341 if (can_copy_texsubimage(dst, src, this, &wouldNeedTempFBO) &&
2342 (!wouldNeedTempFBO || !inheritedCouldCopy)) {
2343 GrGLuint srcFBO;
2344 GrGLIRect srcVP;
2345 srcFBO = bind_surface_as_fbo(this->glInterface(), src, GR_GL_FRAMEBUFFER, &srcVP);
2346 GrGLTexture* dstTex = static_cast<GrGLTexture*>(dst->asTexture());
2347 GrAssert(NULL != dstTex);
2348 // We modified the bound FBO
2349 fHWBoundRenderTarget = NULL;
2350 GrGLIRect srcGLRect;
2351 srcGLRect.setRelativeTo(srcVP,
2352 srcRect.fLeft,
2353 srcRect.fTop,
2354 srcRect.width(),
2355 srcRect.height(),
2356 src->origin());
2357
commit-bot@chromium.orga15f7e52013-06-05 23:29:25 +00002358 this->setScratchTextureUnit();
bsalomon@google.comeb851172013-04-15 13:51:00 +00002359 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, dstTex->textureID()));
2360 GrGLint dstY;
2361 if (kBottomLeft_GrSurfaceOrigin == dst->origin()) {
2362 dstY = dst->height() - (dstPoint.fY + srcGLRect.fHeight);
2363 } else {
2364 dstY = dstPoint.fY;
2365 }
2366 GL_CALL(CopyTexSubImage2D(GR_GL_TEXTURE_2D, 0,
2367 dstPoint.fX, dstY,
2368 srcGLRect.fLeft, srcGLRect.fBottom,
2369 srcGLRect.fWidth, srcGLRect.fHeight));
2370 copied = true;
2371 if (srcFBO) {
2372 GL_CALL(DeleteFramebuffers(1, &srcFBO));
2373 }
2374 } else if (can_blit_framebuffer(dst, src, this, &wouldNeedTempFBO) &&
2375 (!wouldNeedTempFBO || !inheritedCouldCopy)) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002376 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2377 srcRect.width(), srcRect.height());
2378 bool selfOverlap = false;
2379 if (dst->isSameAs(src)) {
2380 selfOverlap = SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect);
2381 }
2382
2383 if (!selfOverlap) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002384 GrGLuint dstFBO;
2385 GrGLuint srcFBO;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002386 GrGLIRect dstVP;
2387 GrGLIRect srcVP;
bsalomon@google.comeb851172013-04-15 13:51:00 +00002388 dstFBO = bind_surface_as_fbo(this->glInterface(), dst, GR_GL_DRAW_FRAMEBUFFER, &dstVP);
2389 srcFBO = bind_surface_as_fbo(this->glInterface(), src, GR_GL_READ_FRAMEBUFFER, &srcVP);
2390 // We modified the bound FBO
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002391 fHWBoundRenderTarget = NULL;
2392 GrGLIRect srcGLRect;
2393 GrGLIRect dstGLRect;
2394 srcGLRect.setRelativeTo(srcVP,
2395 srcRect.fLeft,
2396 srcRect.fTop,
2397 srcRect.width(),
2398 srcRect.height(),
2399 src->origin());
2400 dstGLRect.setRelativeTo(dstVP,
2401 dstRect.fLeft,
2402 dstRect.fTop,
2403 dstRect.width(),
2404 dstRect.height(),
2405 dst->origin());
2406
2407 GrAutoTRestore<ScissorState> asr;
bsalomon@google.com347c3822013-05-01 20:10:01 +00002408 if (GrGLCaps::kDesktop_EXT_MSFBOType == this->glCaps().msFBOType()) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002409 // The EXT version applies the scissor during the blit, so disable it.
2410 asr.reset(&fScissorState);
2411 fScissorState.fEnabled = false;
2412 this->flushScissor();
2413 }
2414 GrGLint srcY0;
2415 GrGLint srcY1;
2416 // Does the blit need to y-mirror or not?
2417 if (src->origin() == dst->origin()) {
2418 srcY0 = srcGLRect.fBottom;
2419 srcY1 = srcGLRect.fBottom + srcGLRect.fHeight;
2420 } else {
2421 srcY0 = srcGLRect.fBottom + srcGLRect.fHeight;
2422 srcY1 = srcGLRect.fBottom;
2423 }
2424 GL_CALL(BlitFramebuffer(srcGLRect.fLeft,
2425 srcY0,
2426 srcGLRect.fLeft + srcGLRect.fWidth,
2427 srcY1,
2428 dstGLRect.fLeft,
2429 dstGLRect.fBottom,
2430 dstGLRect.fLeft + dstGLRect.fWidth,
2431 dstGLRect.fBottom + dstGLRect.fHeight,
2432 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
2433 if (dstFBO) {
2434 GL_CALL(DeleteFramebuffers(1, &dstFBO));
2435 }
2436 if (srcFBO) {
2437 GL_CALL(DeleteFramebuffers(1, &srcFBO));
2438 }
2439 copied = true;
2440 }
2441 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002442 if (!copied && inheritedCouldCopy) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002443 copied = INHERITED::onCopySurface(dst, src, srcRect, dstPoint);
bsalomon@google.comeb851172013-04-15 13:51:00 +00002444 GrAssert(copied);
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002445 }
2446 return copied;
2447}
2448
2449bool GrGpuGL::onCanCopySurface(GrSurface* dst,
2450 GrSurface* src,
2451 const SkIRect& srcRect,
2452 const SkIPoint& dstPoint) {
2453 // This mirrors the logic in onCopySurface.
bsalomon@google.comeb851172013-04-15 13:51:00 +00002454 if (can_copy_texsubimage(dst, src, this)) {
2455 return true;
2456 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002457 if (can_blit_framebuffer(dst, src, this)) {
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002458 if (dst->isSameAs(src)) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002459 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY,
2460 srcRect.width(), srcRect.height());
2461 if(!SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) {
2462 return true;
2463 }
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002464 } else {
bsalomon@google.comeb851172013-04-15 13:51:00 +00002465 return true;
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002466 }
2467 }
bsalomon@google.comeb851172013-04-15 13:51:00 +00002468 return INHERITED::onCanCopySurface(dst, src, srcRect, dstPoint);
commit-bot@chromium.org63150af2013-04-11 22:00:22 +00002469}
2470
2471
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002472///////////////////////////////////////////////////////////////////////////////
2473
bsalomon@google.com6918d482013-03-07 19:09:11 +00002474GrGLAttribArrayState* GrGpuGL::HWGeometryState::bindArrayAndBuffersToDraw(
2475 GrGpuGL* gpu,
2476 const GrGLVertexBuffer* vbuffer,
2477 const GrGLIndexBuffer* ibuffer) {
2478 GrAssert(NULL != vbuffer);
robertphillips@google.com4f65a272013-03-26 19:40:46 +00002479 GrGLAttribArrayState* attribState;
2480
bsalomon@google.com6918d482013-03-07 19:09:11 +00002481 // We use a vertex array if we're on a core profile and the verts are in a VBO.
2482 if (gpu->glCaps().isCoreProfile() && !vbuffer->isCPUBacked()) {
2483 if (NULL == fVBOVertexArray || !fVBOVertexArray->isValid()) {
2484 SkSafeUnref(fVBOVertexArray);
2485 GrGLuint arrayID;
2486 GR_GL_CALL(gpu->glInterface(), GenVertexArrays(1, &arrayID));
2487 int attrCount = gpu->glCaps().maxVertexAttributes();
2488 fVBOVertexArray = SkNEW_ARGS(GrGLVertexArray, (gpu, arrayID, attrCount));
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002489 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002490 attribState = fVBOVertexArray->bindWithIndexBuffer(ibuffer);
2491 } else {
2492 if (NULL != ibuffer) {
2493 this->setIndexBufferIDOnDefaultVertexArray(gpu, ibuffer->bufferID());
2494 } else {
2495 this->setVertexArrayID(gpu, 0);
2496 }
2497 int attrCount = gpu->glCaps().maxVertexAttributes();
2498 if (fDefaultVertexArrayAttribState.count() != attrCount) {
2499 fDefaultVertexArrayAttribState.resize(attrCount);
2500 }
2501 attribState = &fDefaultVertexArrayAttribState;
bsalomon@google.com880b8fc2013-02-19 20:17:28 +00002502 }
bsalomon@google.com6918d482013-03-07 19:09:11 +00002503 return attribState;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002504}