blob: f14238cdd91ecdf7ca773ce60976d7b44fa2b3ff [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.com316f99232011-01-13 21:28:12 +000023// we use a spare texture unit to avoid
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000024// mucking with the state of any of the stages.
tomhudson@google.com93813632011-10-27 20:21:16 +000025static const int SPARE_TEX_UNIT = GrDrawState::kNumStages;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +000026
reed@google.comac10a2d2010-12-22 21:39:39 +000027#define SKIP_CACHE_CHECK true
28
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000029#if GR_GL_CHECK_ALLOC_WITH_GET_ERROR
30 #define CLEAR_ERROR_BEFORE_ALLOC(iface) GrGLClearErr(iface)
31 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL_NOERRCHECK(iface, call)
32 #define CHECK_ALLOC_ERROR(iface) GR_GL_GET_ERROR(iface)
rmistry@google.comfbfcd562012-08-23 18:09:54 +000033#else
bsalomon@google.com4f3c2532012-01-19 16:16:52 +000034 #define CLEAR_ERROR_BEFORE_ALLOC(iface)
35 #define GL_ALLOC_CALL(iface, call) GR_GL_CALL(iface, call)
36 #define CHECK_ALLOC_ERROR(iface) GR_GL_NO_ERROR
37#endif
38
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +000039
40///////////////////////////////////////////////////////////////////////////////
41
twiz@google.com0f31ca72011-03-18 17:38:11 +000042static const GrGLenum gXfermodeCoeff2Blend[] = {
43 GR_GL_ZERO,
44 GR_GL_ONE,
45 GR_GL_SRC_COLOR,
46 GR_GL_ONE_MINUS_SRC_COLOR,
47 GR_GL_DST_COLOR,
48 GR_GL_ONE_MINUS_DST_COLOR,
49 GR_GL_SRC_ALPHA,
50 GR_GL_ONE_MINUS_SRC_ALPHA,
51 GR_GL_DST_ALPHA,
52 GR_GL_ONE_MINUS_DST_ALPHA,
53 GR_GL_CONSTANT_COLOR,
54 GR_GL_ONE_MINUS_CONSTANT_COLOR,
55 GR_GL_CONSTANT_ALPHA,
56 GR_GL_ONE_MINUS_CONSTANT_ALPHA,
bsalomon@google.com271cffc2011-05-20 14:13:56 +000057
58 // extended blend coeffs
59 GR_GL_SRC1_COLOR,
60 GR_GL_ONE_MINUS_SRC1_COLOR,
61 GR_GL_SRC1_ALPHA,
62 GR_GL_ONE_MINUS_SRC1_ALPHA,
reed@google.comac10a2d2010-12-22 21:39:39 +000063};
64
bsalomon@google.com271cffc2011-05-20 14:13:56 +000065bool GrGpuGL::BlendCoeffReferencesConstant(GrBlendCoeff coeff) {
bsalomon@google.com080773c2011-03-15 19:09:25 +000066 static const bool gCoeffReferencesBlendConst[] = {
67 false,
68 false,
69 false,
70 false,
71 false,
72 false,
73 false,
74 false,
75 false,
76 false,
77 true,
78 true,
79 true,
80 true,
bsalomon@google.com271cffc2011-05-20 14:13:56 +000081
82 // extended blend coeffs
83 false,
84 false,
85 false,
86 false,
bsalomon@google.com080773c2011-03-15 19:09:25 +000087 };
88 return gCoeffReferencesBlendConst[coeff];
bsalomon@google.com47059542012-06-06 20:51:20 +000089 GR_STATIC_ASSERT(kTotalGrBlendCoeffCount ==
90 GR_ARRAY_COUNT(gCoeffReferencesBlendConst));
bsalomon@google.com271cffc2011-05-20 14:13:56 +000091
bsalomon@google.com47059542012-06-06 20:51:20 +000092 GR_STATIC_ASSERT(0 == kZero_GrBlendCoeff);
93 GR_STATIC_ASSERT(1 == kOne_GrBlendCoeff);
94 GR_STATIC_ASSERT(2 == kSC_GrBlendCoeff);
95 GR_STATIC_ASSERT(3 == kISC_GrBlendCoeff);
96 GR_STATIC_ASSERT(4 == kDC_GrBlendCoeff);
97 GR_STATIC_ASSERT(5 == kIDC_GrBlendCoeff);
98 GR_STATIC_ASSERT(6 == kSA_GrBlendCoeff);
99 GR_STATIC_ASSERT(7 == kISA_GrBlendCoeff);
100 GR_STATIC_ASSERT(8 == kDA_GrBlendCoeff);
101 GR_STATIC_ASSERT(9 == kIDA_GrBlendCoeff);
102 GR_STATIC_ASSERT(10 == kConstC_GrBlendCoeff);
103 GR_STATIC_ASSERT(11 == kIConstC_GrBlendCoeff);
104 GR_STATIC_ASSERT(12 == kConstA_GrBlendCoeff);
105 GR_STATIC_ASSERT(13 == kIConstA_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000106
bsalomon@google.com47059542012-06-06 20:51:20 +0000107 GR_STATIC_ASSERT(14 == kS2C_GrBlendCoeff);
108 GR_STATIC_ASSERT(15 == kIS2C_GrBlendCoeff);
109 GR_STATIC_ASSERT(16 == kS2A_GrBlendCoeff);
110 GR_STATIC_ASSERT(17 == kIS2A_GrBlendCoeff);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000111
112 // assertion for gXfermodeCoeff2Blend have to be in GrGpu scope
bsalomon@google.com47059542012-06-06 20:51:20 +0000113 GR_STATIC_ASSERT(kTotalGrBlendCoeffCount ==
114 GR_ARRAY_COUNT(gXfermodeCoeff2Blend));
bsalomon@google.com080773c2011-03-15 19:09:25 +0000115}
116
reed@google.comac10a2d2010-12-22 21:39:39 +0000117///////////////////////////////////////////////////////////////////////////////
118
rileya@google.come38160c2012-07-03 18:03:04 +0000119static bool gPrintStartupSpew;
bsalomon@google.com42ab7ea2011-01-19 17:19:40 +0000120
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000121static bool fbo_test(const GrGLInterface* gl, int w, int h) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000122
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000123 GR_GL_CALL(gl, ActiveTexture(GR_GL_TEXTURE0 + SPARE_TEX_UNIT));
bsalomon@google.com316f99232011-01-13 21:28:12 +0000124
twiz@google.com0f31ca72011-03-18 17:38:11 +0000125 GrGLuint testFBO;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000126 GR_GL_CALL(gl, GenFramebuffers(1, &testFBO));
127 GR_GL_CALL(gl, BindFramebuffer(GR_GL_FRAMEBUFFER, testFBO));
twiz@google.com0f31ca72011-03-18 17:38:11 +0000128 GrGLuint testRTTex;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000129 GR_GL_CALL(gl, GenTextures(1, &testRTTex));
130 GR_GL_CALL(gl, BindTexture(GR_GL_TEXTURE_2D, testRTTex));
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +0000131 // some implementations require texture to be mip-map complete before
132 // FBO with level 0 bound as color attachment will be framebuffer complete.
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000133 GR_GL_CALL(gl, TexParameteri(GR_GL_TEXTURE_2D,
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000134 GR_GL_TEXTURE_MIN_FILTER,
135 GR_GL_NEAREST));
136 GR_GL_CALL(gl, TexImage2D(GR_GL_TEXTURE_2D, 0, GR_GL_RGBA, w, h,
137 0, GR_GL_RGBA, GR_GL_UNSIGNED_BYTE, NULL));
138 GR_GL_CALL(gl, BindTexture(GR_GL_TEXTURE_2D, 0));
139 GR_GL_CALL(gl, FramebufferTexture2D(GR_GL_FRAMEBUFFER,
140 GR_GL_COLOR_ATTACHMENT0,
141 GR_GL_TEXTURE_2D, testRTTex, 0));
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000142 GrGLenum status;
143 GR_GL_CALL_RET(gl, status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000144 GR_GL_CALL(gl, DeleteFramebuffers(1, &testFBO));
145 GR_GL_CALL(gl, DeleteTextures(1, &testRTTex));
bsalomon@google.com316f99232011-01-13 21:28:12 +0000146
bsalomon@google.comc312bf92011-03-21 21:10:33 +0000147 return status == GR_GL_FRAMEBUFFER_COMPLETE;
reed@google.comac10a2d2010-12-22 21:39:39 +0000148}
149
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000150GrGpuGL::GrGpuGL(const GrGLContextInfo& ctxInfo) : fGLContextInfo(ctxInfo) {
151
152 GrAssert(ctxInfo.isInitialized());
tomhudson@google.com747bf292011-06-14 18:16:52 +0000153
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000154 fillInConfigRenderableTable();
155
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000156 fPrintedCaps = false;
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000157
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000158 GrGLClearErr(fGLContextInfo.interface());
reed@google.comac10a2d2010-12-22 21:39:39 +0000159
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000160 if (gPrintStartupSpew) {
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000161 const GrGLubyte* ext;
162 GL_CALL_RET(ext, GetString(GR_GL_EXTENSIONS));
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +0000163 const GrGLubyte* vendor;
164 const GrGLubyte* renderer;
165 const GrGLubyte* version;
166 GL_CALL_RET(vendor, GetString(GR_GL_VENDOR));
167 GL_CALL_RET(renderer, GetString(GR_GL_RENDERER));
168 GL_CALL_RET(version, GetString(GR_GL_VERSION));
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000169 GrPrintf("------------------------- create GrGpuGL %p --------------\n",
170 this);
171 GrPrintf("------ VENDOR %s\n", vendor);
172 GrPrintf("------ RENDERER %s\n", renderer);
173 GrPrintf("------ VERSION %s\n", version);
174 GrPrintf("------ EXTENSIONS\n %s \n", ext);
175 }
176
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000177 this->initCaps();
tomhudson@google.com747bf292011-06-14 18:16:52 +0000178
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000179 fProgramCache = SkNEW_ARGS(ProgramCache, (this->glContextInfo()));
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000180
bsalomon@google.comfe676522011-06-17 18:12:21 +0000181 fLastSuccessfulStencilFmtIdx = 0;
caryclark@google.comcf6285b2012-06-06 12:09:01 +0000182 if (false) { // avoid bit rot, suppress warning
183 fbo_test(this->glInterface(), 0, 0);
184 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000185}
186
187GrGpuGL::~GrGpuGL() {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000188 if (0 != fHWProgramID) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000189 // detach the current program so there is no confusion on OpenGL's part
190 // that we want it to be deleted
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000191 GrAssert(fHWProgramID == fCurrentProgram->programID());
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000192 GL_CALL(UseProgram(0));
193 }
194
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000195 delete fProgramCache;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000196
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000197 // This must be called by before the GrDrawTarget destructor
198 this->releaseGeometry();
bsalomon@google.com15b11df2011-09-16 21:18:29 +0000199 // This subclass must do this before the base class destructor runs
200 // since we will unref the GrGLInterface.
201 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +0000202}
203
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000204///////////////////////////////////////////////////////////////////////////////
205
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000206void GrGpuGL::initCaps() {
207 GrGLint maxTextureUnits;
208 // check FS and fixed-function texture unit limits
209 // we only use textures in the fragment stage currently.
210 // checks are > to make sure we have a spare unit.
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000211 const GrGLInterface* gl = this->glInterface();
212 GR_GL_GetIntegerv(gl, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxTextureUnits);
bsalomon@google.com1dcf5062011-11-14 19:29:53 +0000213 GrAssert(maxTextureUnits > GrDrawState::kNumStages);
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000214
bsalomon@google.comf6601872012-08-28 21:11:35 +0000215 CapsInternals* caps = this->capsInternals();
216
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000217 GrGLint numFormats;
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000218 GR_GL_GetIntegerv(gl, GR_GL_NUM_COMPRESSED_TEXTURE_FORMATS, &numFormats);
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000219 SkAutoSTMalloc<10, GrGLint> formats(numFormats);
bsalomon@google.com89ec61e2012-02-10 20:05:18 +0000220 GR_GL_GetIntegerv(gl, GR_GL_COMPRESSED_TEXTURE_FORMATS, formats);
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000221 for (int i = 0; i < numFormats; ++i) {
222 if (formats[i] == GR_GL_PALETTE8_RGBA8) {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000223 caps->f8BitPaletteSupport = true;
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000224 break;
225 }
226 }
227
228 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000229 // we could also look for GL_ATI_separate_stencil extension or
230 // GL_EXT_stencil_two_side but they use different function signatures
231 // than GL2.0+ (and than each other).
bsalomon@google.comf6601872012-08-28 21:11:35 +0000232 caps->fTwoSidedStencilSupport = (this->glVersion() >= GR_GL_VER(2,0));
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000233 // supported on GL 1.4 and higher or by extension
bsalomon@google.comf6601872012-08-28 21:11:35 +0000234 caps->fStencilWrapOpsSupport = (this->glVersion() >= GR_GL_VER(1,4)) ||
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000235 this->hasExtension("GL_EXT_stencil_wrap");
236 } else {
bsalomon@google.com1dcf5062011-11-14 19:29:53 +0000237 // ES 2 has two sided stencil and stencil wrap
bsalomon@google.comf6601872012-08-28 21:11:35 +0000238 caps->fTwoSidedStencilSupport = true;
239 caps->fStencilWrapOpsSupport = true;
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000240 }
241
242 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000243 caps->fBufferLockSupport = true; // we require VBO support and the desktop VBO
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000244 // extension includes glMapBuffer.
245 } else {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000246 caps->fBufferLockSupport = this->hasExtension("GL_OES_mapbuffer");
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000247 }
248
249 if (kDesktop_GrGLBinding == this->glBinding()) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000250 if (this->glVersion() >= GR_GL_VER(2,0) ||
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000251 this->hasExtension("GL_ARB_texture_non_power_of_two")) {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000252 caps->fNPOTTextureTileSupport = true;
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000253 } else {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000254 caps->fNPOTTextureTileSupport = false;
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000255 }
256 } else {
bsalomon@google.com1dcf5062011-11-14 19:29:53 +0000257 // Unextended ES2 supports NPOT textures with clamp_to_edge and non-mip filters only
bsalomon@google.comf6601872012-08-28 21:11:35 +0000258 caps->fNPOTTextureTileSupport = this->hasExtension("GL_OES_texture_npot");
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000259 }
260
bsalomon@google.comf6601872012-08-28 21:11:35 +0000261 caps->fHWAALineSupport = (kDesktop_GrGLBinding == this->glBinding());
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000262
bsalomon@google.comf6601872012-08-28 21:11:35 +0000263 GR_GL_GetIntegerv(gl, GR_GL_MAX_TEXTURE_SIZE, &caps->fMaxTextureSize);
264 GR_GL_GetIntegerv(gl, GR_GL_MAX_RENDERBUFFER_SIZE, &caps->fMaxRenderTargetSize);
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000265 // Our render targets are always created with textures as the color
266 // attachment, hence this min:
bsalomon@google.comf6601872012-08-28 21:11:35 +0000267 caps->fMaxRenderTargetSize = GrMin(caps->fMaxTextureSize, caps->fMaxRenderTargetSize);
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000268
bsalomon@google.comf6601872012-08-28 21:11:35 +0000269 caps->fFSAASupport = GrGLCaps::kNone_MSFBOType != this->glCaps().msFBOType();
270 caps->fPathStencilingSupport = GR_GL_USE_NV_PATH_RENDERING &&
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000271 this->hasExtension("GL_NV_path_rendering");
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000272
273 // Enable supported shader-related caps
274 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000275 caps->fDualSourceBlendingSupport =
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000276 this->glVersion() >= GR_GL_VER(3,3) ||
277 this->hasExtension("GL_ARB_blend_func_extended");
bsalomon@google.comf6601872012-08-28 21:11:35 +0000278 caps->fShaderDerivativeSupport = true;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000279 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
bsalomon@google.comf6601872012-08-28 21:11:35 +0000280 caps->fGeometryShaderSupport =
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000281 this->glVersion() >= GR_GL_VER(3,2) &&
282 this->glslGeneration() >= k150_GrGLSLGeneration;
283 } else {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000284 caps->fShaderDerivativeSupport =
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000285 this->hasExtension("GL_OES_standard_derivatives");
286 }
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000287}
288
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000289void GrGpuGL::fillInConfigRenderableTable() {
290
291 // OpenGL < 3.0
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000292 // no support for render targets unless the GL_ARB_framebuffer_object
293 // extension is supported (in which case we get ALPHA, RED, RG, RGB,
294 // RGBA (ALPHA8, RGBA4, RGBA8) for OpenGL > 1.1). Note that we
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000295 // probably don't get R8 in this case.
296
297 // OpenGL 3.0
298 // base color renderable: ALPHA, RED, RG, RGB, and RGBA
299 // sized derivatives: ALPHA8, R8, RGBA4, RGBA8
300
301 // >= OpenGL 3.1
302 // base color renderable: RED, RG, RGB, and RGBA
303 // sized derivatives: R8, RGBA4, RGBA8
304 // if the GL_ARB_compatibility extension is supported then we get back
305 // support for GL_ALPHA and ALPHA8
306
307 // GL_EXT_bgra adds BGRA render targets to any version
308
309 // ES 2.0
310 // color renderable: RGBA4, RGB5_A1, RGB565
311 // GL_EXT_texture_rg adds support for R8 as a color render target
312 // GL_OES_rgb8_rgba8 and/or GL_ARM_rgba8 adds support for RGBA8
313 // GL_EXT_texture_format_BGRA8888 and/or GL_APPLE_texture_format_BGRA8888
314 // added BGRA support
315
316 if (kDesktop_GrGLBinding == this->glBinding()) {
317 // Post 3.0 we will get R8
318 // Prior to 3.0 we will get ALPHA8 (with GL_ARB_framebuffer_object)
319 if (this->glVersion() >= GR_GL_VER(3,0) ||
320 this->hasExtension("GL_ARB_framebuffer_object")) {
321 fConfigRenderSupport[kAlpha_8_GrPixelConfig] = true;
322 }
323 } else {
324 // On ES we can only hope for R8
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000325 fConfigRenderSupport[kAlpha_8_GrPixelConfig] =
robertphillips@google.com443e5a52012-04-30 20:01:21 +0000326 this->glCaps().textureRedSupport();
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000327 }
328
329 if (kDesktop_GrGLBinding != this->glBinding()) {
330 // only available in ES
331 fConfigRenderSupport[kRGB_565_GrPixelConfig] = true;
332 }
333
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000334 // Pre 3.0, Ganesh relies on either GL_ARB_framebuffer_object or
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000335 // GL_EXT_framebuffer_object for FBO support. Both of these
336 // allow RGBA4 render targets so this is always supported.
337 fConfigRenderSupport[kRGBA_4444_GrPixelConfig] = true;
338
339 if (this->glCaps().rgba8RenderbufferSupport()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000340 fConfigRenderSupport[kRGBA_8888_GrPixelConfig] = true;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000341 }
342
343 if (this->glCaps().bgraFormatSupport()) {
bsalomon@google.com0342a852012-08-20 19:22:38 +0000344 fConfigRenderSupport[kBGRA_8888_GrPixelConfig] = true;
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000345 }
robertphillips@google.com99a5ac02012-04-10 19:26:38 +0000346}
347
bsalomon@google.com9c680582013-02-06 18:17:50 +0000348namespace {
349GrPixelConfig preferred_pixel_ops_config(GrPixelConfig config) {
350 if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == config) {
351 return kBGRA_8888_GrPixelConfig;
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000352 } else {
353 return config;
354 }
355}
bsalomon@google.com9c680582013-02-06 18:17:50 +0000356}
357
358GrPixelConfig GrGpuGL::preferredReadPixelsConfig(GrPixelConfig config) const {
359 return preferred_pixel_ops_config(config);
360}
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000361
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000362GrPixelConfig GrGpuGL::preferredWritePixelsConfig(GrPixelConfig config) const {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000363 return preferred_pixel_ops_config(config);
364}
365
366bool GrGpuGL::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
367 if (kIndex_8_GrPixelConfig == srcConfig || kIndex_8_GrPixelConfig == texture->config()) {
368 return false;
369 }
370 if (srcConfig != texture->config() && kES2_GrGLBinding == this->glBinding()) {
371 // In general ES2 requires the internal format of the texture and the format of the src
372 // pixels to match. However, It may or may not be possible to upload BGRA data to a RGBA
373 // texture. It depends upon which extension added BGRA. The Apple extension allows it
374 // (BGRA's internal format is RGBA) while the EXT extension does not (BGRA is its own
375 // internal format).
376 if (this->glCaps().bgraFormatSupport() &&
377 !this->glCaps().bgraIsInternalFormat() &&
378 kBGRA_8888_GrPixelConfig == srcConfig &&
379 kRGBA_8888_GrPixelConfig == texture->config()) {
380 return true;
381 } else {
382 return false;
383 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000384 } else {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000385 return true;
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000386 }
387}
388
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000389bool GrGpuGL::fullReadPixelsIsFasterThanPartial() const {
390 return SkToBool(GR_GL_FULL_READPIXELS_FASTER_THAN_PARTIAL);
391}
392
bsalomon@google.com1bf1c212011-11-05 12:18:58 +0000393void GrGpuGL::onResetContext() {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000394 if (gPrintStartupSpew && !fPrintedCaps) {
395 fPrintedCaps = true;
396 this->getCaps().print();
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000397 this->glCaps().print();
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000398 }
399
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000400 // we don't use the zb at all
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000401 GL_CALL(Disable(GR_GL_DEPTH_TEST));
402 GL_CALL(DepthMask(GR_GL_FALSE));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +0000403
bsalomon@google.com978c8c62012-05-21 14:45:49 +0000404 fHWDrawFace = GrDrawState::kInvalid_DrawFace;
405 fHWDitherEnabled = kUnknown_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +0000406
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000407 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000408 // Desktop-only state that we never change
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000409 GL_CALL(Disable(GR_GL_POINT_SMOOTH));
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000410 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
411 GL_CALL(Disable(GR_GL_POLYGON_SMOOTH));
412 GL_CALL(Disable(GR_GL_POLYGON_STIPPLE));
413 GL_CALL(Disable(GR_GL_COLOR_LOGIC_OP));
bsalomon@google.come76b7cc2012-06-18 12:47:06 +0000414 if (this->glCaps().imagingSupport()) {
415 GL_CALL(Disable(GR_GL_COLOR_TABLE));
416 }
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000417 GL_CALL(Disable(GR_GL_INDEX_LOGIC_OP));
418 GL_CALL(Disable(GR_GL_POLYGON_OFFSET_FILL));
419 // Since ES doesn't support glPointSize at all we always use the VS to
420 // set the point size
421 GL_CALL(Enable(GR_GL_VERTEX_PROGRAM_POINT_SIZE));
422
423 // We should set glPolygonMode(FRONT_AND_BACK,FILL) here, too. It isn't
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000424 // currently part of our gl interface. There are probably others as
bsalomon@google.com469d0dd2012-05-21 20:14:29 +0000425 // well.
twiz@google.comb65e0cb2011-03-18 20:41:44 +0000426 }
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +0000427 fHWAAState.invalidate();
bsalomon@google.com978c8c62012-05-21 14:45:49 +0000428 fHWWriteToColor = kUnknown_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000429
reed@google.comac10a2d2010-12-22 21:39:39 +0000430 // we only ever use lines in hairline mode
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000431 GL_CALL(LineWidth(1));
reed@google.comac10a2d2010-12-22 21:39:39 +0000432
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000433 // invalid
bsalomon@google.com49209392012-06-05 15:13:46 +0000434 fHWActiveTextureUnitIdx = -1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000435
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +0000436 fHWBlendState.invalidate();
bsalomon@google.com080773c2011-03-15 19:09:25 +0000437
tomhudson@google.com93813632011-10-27 20:21:16 +0000438 for (int s = 0; s < GrDrawState::kNumStages; ++s) {
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000439 fHWBoundTextures[s] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +0000440 }
bsalomon@google.com316f99232011-01-13 21:28:12 +0000441
bsalomon@google.coma3201942012-06-21 19:58:20 +0000442 fHWScissorSettings.invalidate();
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000443
bsalomon@google.coma3201942012-06-21 19:58:20 +0000444 fHWViewport.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +0000445
bsalomon@google.com457b8a32012-05-21 21:19:58 +0000446 fHWStencilSettings.invalidate();
bsalomon@google.coma3201942012-06-21 19:58:20 +0000447 fHWStencilTestEnabled = kUnknown_TriState;
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000448
reed@google.comac10a2d2010-12-22 21:39:39 +0000449 fHWGeometryState.fIndexBuffer = NULL;
450 fHWGeometryState.fVertexBuffer = NULL;
bsalomon@google.coma3201942012-06-21 19:58:20 +0000451
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +0000452 fHWGeometryState.fArrayPtrsDirty = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000453
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000454 fHWBoundRenderTarget = NULL;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000455
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000456 fHWPathStencilMatrixState.invalidate();
bsalomon@google.comf6601872012-08-28 21:11:35 +0000457 if (fCaps.pathStencilingSupport()) {
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000458 // we don't use the model view matrix.
459 GL_CALL(MatrixMode(GR_GL_MODELVIEW));
460 GL_CALL(LoadIdentity());
461 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000462
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000463 // we assume these values
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000464 if (this->glCaps().unpackRowLengthSupport()) {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000465 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
466 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000467 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000468 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
469 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000470 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000471 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
472 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000473 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +0000474 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, GR_GL_FALSE));
475 }
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000476
caryclark@google.comcf6285b2012-06-06 12:09:01 +0000477 fHWGeometryState.fVertexOffset = ~0U;
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000478
479 // Third party GL code may have left vertex attributes enabled. Some GL
480 // implementations (osmesa) may read vetex attributes that are not required
481 // by the current shader. Therefore, we have to ensure that only the
482 // attributes we require for the current draw are enabled or we may cause an
483 // invalid read.
484
485 // Disable all vertex layout bits so that next flush will assume all
486 // optional vertex attributes are disabled.
487 fHWGeometryState.fVertexLayout = 0;
488
489 // We always use the this attribute and assume it is always enabled.
490 int posAttrIdx = GrGLProgram::PositionAttributeIdx();
491 GL_CALL(EnableVertexAttribArray(posAttrIdx));
492 // Disable all other vertex attributes.
bsalomon@google.com60da4172012-06-01 19:25:00 +0000493 for (int va = 0; va < this->glCaps().maxVertexAttributes(); ++va) {
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000494 if (va != posAttrIdx) {
495 GL_CALL(DisableVertexAttribArray(va));
496 }
497 }
498
499 fHWProgramID = 0;
bsalomon@google.com91207482013-02-12 21:45:24 +0000500 fSharedGLProgramState.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +0000501}
502
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000503namespace {
504
505GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
506 // By default, GrRenderTargets are GL's normal orientation so that they
507 // can be drawn to by the outside world without the client having
508 // to render upside down.
509 if (kDefault_GrSurfaceOrigin == origin) {
510 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
511 } else {
512 return origin;
513 }
514}
515
516}
517
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000518GrTexture* GrGpuGL::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000519 if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000520 return NULL;
521 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000522
robertphillips@google.comb72e5d32012-10-30 15:18:10 +0000523 if (0 == desc.fTextureHandle) {
524 return NULL;
525 }
526
527 int maxSize = this->getCaps().maxTextureSize();
528 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
529 return NULL;
530 }
531
532 GrGLTexture::Desc glTexDesc;
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000533 // next line relies on GrBackendTextureDesc's flags matching GrTexture's
robertphillips@google.com32716282012-06-04 12:48:45 +0000534 glTexDesc.fFlags = (GrTextureFlags) desc.fFlags;
bsalomon@google.com99621082011-11-15 16:47:16 +0000535 glTexDesc.fWidth = desc.fWidth;
536 glTexDesc.fHeight = desc.fHeight;
bsalomon@google.come269f212011-11-07 13:29:52 +0000537 glTexDesc.fConfig = desc.fConfig;
robertphillips@google.com32716282012-06-04 12:48:45 +0000538 glTexDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.come269f212011-11-07 13:29:52 +0000539 glTexDesc.fTextureID = static_cast<GrGLuint>(desc.fTextureHandle);
bsalomon@google.com72830222013-01-23 20:25:22 +0000540 glTexDesc.fIsWrapped = true;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000541 bool renderTarget = 0 != (desc.fFlags & kRenderTarget_GrBackendTextureFlag);
542 // FIXME: this should be calling resolve_origin(), but Chrome code is currently
543 // assuming the old behaviour, which is that backend textures are always
544 // BottomLeft, even for non-RT's. Once Chrome is fixed, change this to:
545 // glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
546 if (kDefault_GrSurfaceOrigin == desc.fOrigin) {
547 glTexDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
548 } else {
549 glTexDesc.fOrigin = desc.fOrigin;
550 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000551
552 GrGLTexture* texture = NULL;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000553 if (renderTarget) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000554 GrGLRenderTarget::Desc glRTDesc;
555 glRTDesc.fRTFBOID = 0;
556 glRTDesc.fTexFBOID = 0;
557 glRTDesc.fMSColorRenderbufferID = 0;
bsalomon@google.come269f212011-11-07 13:29:52 +0000558 glRTDesc.fConfig = desc.fConfig;
559 glRTDesc.fSampleCnt = desc.fSampleCnt;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000560 glRTDesc.fOrigin = glTexDesc.fOrigin;
bsalomon@google.com99621082011-11-15 16:47:16 +0000561 if (!this->createRenderTargetObjects(glTexDesc.fWidth,
562 glTexDesc.fHeight,
bsalomon@google.come269f212011-11-07 13:29:52 +0000563 glTexDesc.fTextureID,
564 &glRTDesc)) {
565 return NULL;
566 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000567 texture = SkNEW_ARGS(GrGLTexture, (this, glTexDesc, glRTDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000568 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000569 texture = SkNEW_ARGS(GrGLTexture, (this, glTexDesc));
bsalomon@google.come269f212011-11-07 13:29:52 +0000570 }
571 if (NULL == texture) {
572 return NULL;
573 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000574
bsalomon@google.come269f212011-11-07 13:29:52 +0000575 this->setSpareTextureUnit();
576 return texture;
577}
578
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000579GrRenderTarget* GrGpuGL::onWrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000580 GrGLRenderTarget::Desc glDesc;
581 glDesc.fConfig = desc.fConfig;
582 glDesc.fRTFBOID = static_cast<GrGLuint>(desc.fRenderTargetHandle);
583 glDesc.fMSColorRenderbufferID = 0;
584 glDesc.fTexFBOID = GrGLRenderTarget::kUnresolvableFBOID;
585 glDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.com72830222013-01-23 20:25:22 +0000586 glDesc.fIsWrapped = true;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000587 glDesc.fOrigin = desc.fOrigin;
588 if (glDesc.fRTFBOID == 0) {
589 GrAssert(desc.fOrigin == kBottomLeft_GrSurfaceOrigin);
590 }
591
592 glDesc.fOrigin = resolve_origin(desc.fOrigin, true);
bsalomon@google.come269f212011-11-07 13:29:52 +0000593 GrGLIRect viewport;
594 viewport.fLeft = 0;
595 viewport.fBottom = 0;
596 viewport.fWidth = desc.fWidth;
597 viewport.fHeight = desc.fHeight;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000598
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000599 GrRenderTarget* tgt = SkNEW_ARGS(GrGLRenderTarget,
600 (this, glDesc, viewport));
bsalomon@google.come269f212011-11-07 13:29:52 +0000601 if (desc.fStencilBits) {
602 GrGLStencilBuffer::Format format;
603 format.fInternalFormat = GrGLStencilBuffer::kUnknownInternalFormat;
604 format.fPacked = false;
605 format.fStencilBits = desc.fStencilBits;
606 format.fTotalBits = desc.fStencilBits;
bsalomon@google.com1f0f1a32013-01-23 21:32:32 +0000607 static const bool kIsSBWrapped = false;
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000608 GrGLStencilBuffer* sb = SkNEW_ARGS(GrGLStencilBuffer,
609 (this,
bsalomon@google.com1f0f1a32013-01-23 21:32:32 +0000610 kIsSBWrapped,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000611 0,
612 desc.fWidth,
613 desc.fHeight,
614 desc.fSampleCnt,
615 format));
bsalomon@google.come269f212011-11-07 13:29:52 +0000616 tgt->setStencilBuffer(sb);
617 sb->unref();
618 }
619 return tgt;
620}
621
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000622////////////////////////////////////////////////////////////////////////////////
623
bsalomon@google.com9c680582013-02-06 18:17:50 +0000624bool GrGpuGL::onWriteTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000625 int left, int top, int width, int height,
626 GrPixelConfig config, const void* buffer,
627 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000628 if (NULL == buffer) {
bsalomon@google.com9c680582013-02-06 18:17:50 +0000629 return false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000630 }
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000631 GrGLTexture* glTex = static_cast<GrGLTexture*>(texture);
632
bsalomon@google.com6f379512011-11-16 20:36:03 +0000633 this->setSpareTextureUnit();
634 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTex->textureID()));
635 GrGLTexture::Desc desc;
robertphillips@google.com32716282012-06-04 12:48:45 +0000636 desc.fFlags = glTex->desc().fFlags;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000637 desc.fWidth = glTex->width();
638 desc.fHeight = glTex->height();
robertphillips@google.com32716282012-06-04 12:48:45 +0000639 desc.fConfig = glTex->config();
640 desc.fSampleCnt = glTex->desc().fSampleCnt;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000641 desc.fTextureID = glTex->textureID();
bsalomon@google.com2d0bade2012-10-26 19:01:17 +0000642 desc.fOrigin = glTex->origin();
bsalomon@google.com9d6cfd82011-11-05 13:25:21 +0000643
bsalomon@google.com9c680582013-02-06 18:17:50 +0000644 return this->uploadTexData(desc, false,
645 left, top, width, height,
646 config, buffer, rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000647}
648
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000649namespace {
650bool adjust_pixel_ops_params(int surfaceWidth,
651 int surfaceHeight,
652 size_t bpp,
653 int* left, int* top, int* width, int* height,
654 const void** data,
655 size_t* rowBytes) {
656 if (!*rowBytes) {
657 *rowBytes = *width * bpp;
658 }
659
660 GrIRect subRect = GrIRect::MakeXYWH(*left, *top, *width, *height);
661 GrIRect bounds = GrIRect::MakeWH(surfaceWidth, surfaceHeight);
662
663 if (!subRect.intersect(bounds)) {
664 return false;
665 }
666 *data = reinterpret_cast<const void*>(reinterpret_cast<intptr_t>(*data) +
667 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
668
669 *left = subRect.fLeft;
670 *top = subRect.fTop;
671 *width = subRect.width();
672 *height = subRect.height();
673 return true;
674}
675}
676
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000677bool GrGpuGL::uploadTexData(const GrGLTexture::Desc& desc,
678 bool isNewTexture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000679 int left, int top, int width, int height,
680 GrPixelConfig dataConfig,
681 const void* data,
682 size_t rowBytes) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000683 GrAssert(NULL != data || isNewTexture);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000684
685 size_t bpp = GrBytesPerPixel(dataConfig);
686 if (!adjust_pixel_ops_params(desc.fWidth, desc.fHeight, bpp, &left, &top,
687 &width, &height, &data, &rowBytes)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000688 return false;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000689 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000690 size_t trimRowBytes = width * bpp;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000691
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000692 // in case we need a temporary, trimmed copy of the src pixels
693 SkAutoSMalloc<128 * 128> tempStorage;
694
bsalomon@google.com313f0192012-07-10 17:21:02 +0000695 // paletted textures cannot be partially updated
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000696 bool useTexStorage = isNewTexture &&
bsalomon@google.com313f0192012-07-10 17:21:02 +0000697 desc.fConfig != kIndex_8_GrPixelConfig &&
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000698 this->glCaps().texStorageSupport();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000699
bsalomon@google.com313f0192012-07-10 17:21:02 +0000700 if (useTexStorage && kDesktop_GrGLBinding == this->glBinding()) {
701 // 565 is not a sized internal format on desktop GL. So on desktop with
702 // 565 we always use an unsized internal format to let the system pick
703 // the best sized format to convert the 565 data to. Since TexStorage
704 // only allows sized internal formats we will instead use TexImage2D.
705 useTexStorage = desc.fConfig != kRGB_565_GrPixelConfig;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000706 }
707
708 GrGLenum internalFormat;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000709 GrGLenum externalFormat;
710 GrGLenum externalType;
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000711 // glTexStorage requires sized internal formats on both desktop and ES. ES
712 // glTexImage requires an unsized format.
713 if (!this->configToGLFormats(dataConfig, useTexStorage, &internalFormat,
714 &externalFormat, &externalType)) {
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000715 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000716 }
717
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000718 if (!isNewTexture && GR_GL_PALETTE8_RGBA8 == internalFormat) {
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000719 // paletted textures cannot be updated
720 return false;
721 }
722
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000723 /*
bsalomon@google.com6f379512011-11-16 20:36:03 +0000724 * check whether to allocate a temporary buffer for flipping y or
725 * because our srcData has extra bytes past each row. If so, we need
726 * to trim those off here, since GL ES may not let us specify
727 * GL_UNPACK_ROW_LENGTH.
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000728 */
bsalomon@google.com6f379512011-11-16 20:36:03 +0000729 bool restoreGLRowLength = false;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000730 bool swFlipY = false;
731 bool glFlipY = false;
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000732 if (NULL != data) {
senorblanco@chromium.orgef5dbe12013-01-28 16:42:38 +0000733 if (kBottomLeft_GrSurfaceOrigin == desc.fOrigin) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000734 if (this->glCaps().unpackFlipYSupport()) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000735 glFlipY = true;
736 } else {
737 swFlipY = true;
738 }
739 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000740 if (this->glCaps().unpackRowLengthSupport() && !swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000741 // can't use this for flipping, only non-neg values allowed. :(
742 if (rowBytes != trimRowBytes) {
743 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
744 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, rowLength));
745 restoreGLRowLength = true;
746 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000747 } else {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000748 if (trimRowBytes != rowBytes || swFlipY) {
749 // copy data into our new storage, skipping the trailing bytes
750 size_t trimSize = height * trimRowBytes;
751 const char* src = (const char*)data;
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000752 if (swFlipY) {
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000753 src += (height - 1) * rowBytes;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000754 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000755 char* dst = (char*)tempStorage.reset(trimSize);
756 for (int y = 0; y < height; y++) {
757 memcpy(dst, src, trimRowBytes);
758 if (swFlipY) {
759 src -= rowBytes;
760 } else {
761 src += rowBytes;
762 }
763 dst += trimRowBytes;
764 }
765 // now point data to our copied version
766 data = tempStorage.get();
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000767 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000768 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000769 if (glFlipY) {
770 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_TRUE));
771 }
772 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, static_cast<GrGLint>(bpp)));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000773 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000774 bool succeeded = true;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000775 if (isNewTexture &&
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000776 0 == left && 0 == top &&
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000777 desc.fWidth == width && desc.fHeight == height) {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000778 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000779 if (useTexStorage) {
780 // We never resize or change formats of textures. We don't use
781 // mipmaps currently.
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000782 GL_ALLOC_CALL(this->glInterface(),
783 TexStorage2D(GR_GL_TEXTURE_2D,
784 1, // levels
785 internalFormat,
786 desc.fWidth, desc.fHeight));
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000787 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000788 if (GR_GL_PALETTE8_RGBA8 == internalFormat) {
789 GrGLsizei imageSize = desc.fWidth * desc.fHeight +
790 kGrColorTableSize;
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000791 GL_ALLOC_CALL(this->glInterface(),
792 CompressedTexImage2D(GR_GL_TEXTURE_2D,
793 0, // level
794 internalFormat,
795 desc.fWidth, desc.fHeight,
796 0, // border
797 imageSize,
798 data));
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000799 } else {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000800 GL_ALLOC_CALL(this->glInterface(),
801 TexImage2D(GR_GL_TEXTURE_2D,
802 0, // level
803 internalFormat,
804 desc.fWidth, desc.fHeight,
805 0, // border
806 externalFormat, externalType,
807 data));
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000808 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +0000809 }
bsalomon@google.com4f3c2532012-01-19 16:16:52 +0000810 GrGLenum error = CHECK_ALLOC_ERROR(this->glInterface());
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000811 if (error != GR_GL_NO_ERROR) {
812 succeeded = false;
813 } else {
814 // if we have data and we used TexStorage to create the texture, we
815 // now upload with TexSubImage.
816 if (NULL != data && useTexStorage) {
817 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
818 0, // level
819 left, top,
820 width, height,
821 externalFormat, externalType,
822 data));
823 }
bsalomon@google.com136f55b2011-11-28 18:34:44 +0000824 }
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000825 } else {
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000826 if (swFlipY || glFlipY) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000827 top = desc.fHeight - (top + height);
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000828 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000829 GL_CALL(TexSubImage2D(GR_GL_TEXTURE_2D,
830 0, // level
831 left, top,
832 width, height,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000833 externalFormat, externalType, data));
834 }
835
836 if (restoreGLRowLength) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000837 GrAssert(this->glCaps().unpackRowLengthSupport());
bsalomon@google.com6f379512011-11-16 20:36:03 +0000838 GL_CALL(PixelStorei(GR_GL_UNPACK_ROW_LENGTH, 0));
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000839 }
bsalomon@google.com8ef3fd02011-11-21 15:53:13 +0000840 if (glFlipY) {
841 GL_CALL(PixelStorei(GR_GL_UNPACK_FLIP_Y, GR_GL_FALSE));
842 }
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +0000843 return succeeded;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000844}
845
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000846namespace {
847bool renderbuffer_storage_msaa(GrGLContextInfo& ctxInfo,
848 int sampleCount,
849 GrGLenum format,
850 int width, int height) {
851 CLEAR_ERROR_BEFORE_ALLOC(ctxInfo.interface());
852 GrAssert(GrGLCaps::kNone_MSFBOType != ctxInfo.caps().msFBOType());
853 bool created = false;
854 if (GrGLCaps::kNVDesktop_CoverageAAType ==
855 ctxInfo.caps().coverageAAType()) {
856 const GrGLCaps::MSAACoverageMode& mode =
857 ctxInfo.caps().getMSAACoverageMode(sampleCount);
858 GL_ALLOC_CALL(ctxInfo.interface(),
859 RenderbufferStorageMultisampleCoverage(GR_GL_RENDERBUFFER,
860 mode.fCoverageSampleCnt,
861 mode.fColorSampleCnt,
862 format,
863 width, height));
864 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctxInfo.interface()));
865 }
866 if (!created) {
bsalomon@google.comf6b070d2012-04-27 14:25:44 +0000867 // glRBMS will fail if requested samples is > max samples.
868 sampleCount = GrMin(sampleCount, ctxInfo.caps().maxSampleCount());
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000869 GL_ALLOC_CALL(ctxInfo.interface(),
870 RenderbufferStorageMultisample(GR_GL_RENDERBUFFER,
871 sampleCount,
872 format,
873 width, height));
874 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctxInfo.interface()));
875 }
876 return created;
877}
878}
879
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000880bool GrGpuGL::createRenderTargetObjects(int width, int height,
881 GrGLuint texID,
882 GrGLRenderTarget::Desc* desc) {
883 desc->fMSColorRenderbufferID = 0;
884 desc->fRTFBOID = 0;
885 desc->fTexFBOID = 0;
bsalomon@google.com72830222013-01-23 20:25:22 +0000886 desc->fIsWrapped = false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000887
888 GrGLenum status;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000889
bsalomon@google.comab15d612011-08-09 12:57:56 +0000890 GrGLenum msColorFormat = 0; // suppress warning
891
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000892 GL_CALL(GenFramebuffers(1, &desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000893 if (!desc->fTexFBOID) {
894 goto FAILED;
895 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000896
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000897
898 // If we are using multisampling we will create two FBOS. We render
899 // to one and then resolve to the texture bound to the other.
bsalomon@google.come269f212011-11-07 13:29:52 +0000900 if (desc->fSampleCnt > 0) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000901 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000902 goto FAILED;
903 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000904 GL_CALL(GenFramebuffers(1, &desc->fRTFBOID));
905 GL_CALL(GenRenderbuffers(1, &desc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000906 if (!desc->fRTFBOID ||
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000907 !desc->fMSColorRenderbufferID ||
bsalomon@google.com280e99f2012-01-05 16:17:38 +0000908 !this->configToGLFormats(desc->fConfig,
909 // GLES requires sized internal formats
910 kES2_GrGLBinding == this->glBinding(),
911 &msColorFormat, NULL, NULL)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000912 goto FAILED;
913 }
914 } else {
915 desc->fRTFBOID = desc->fTexFBOID;
916 }
917
bsalomon@google.com0e9b41a2012-01-04 22:11:43 +0000918 // below here we may bind the FBO
bsalomon@google.comc811ea32012-05-21 15:33:09 +0000919 fHWBoundRenderTarget = NULL;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000920 if (desc->fRTFBOID != desc->fTexFBOID) {
bsalomon@google.com13ac3a32013-01-09 23:29:39 +0000921 GrAssert(desc->fSampleCnt > 0);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000922 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000923 desc->fMSColorRenderbufferID));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +0000924 if (!renderbuffer_storage_msaa(fGLContextInfo,
925 desc->fSampleCnt,
926 msColorFormat,
927 width, height)) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000928 goto FAILED;
929 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000930 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, desc->fRTFBOID));
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000931 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000932 GR_GL_COLOR_ATTACHMENT0,
933 GR_GL_RENDERBUFFER,
934 desc->fMSColorRenderbufferID));
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000935 if (!this->glCaps().isConfigVerifiedColorAttachment(desc->fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000936 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
937 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
938 goto FAILED;
939 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000940 fGLContextInfo.caps().markConfigAsValidColorAttachment(
941 desc->fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000942 }
943 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000944 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000945
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000946 GL_CALL(FramebufferTexture2D(GR_GL_FRAMEBUFFER,
947 GR_GL_COLOR_ATTACHMENT0,
948 GR_GL_TEXTURE_2D,
949 texID, 0));
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000950 if (!this->glCaps().isConfigVerifiedColorAttachment(desc->fConfig)) {
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +0000951 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
952 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
953 goto FAILED;
954 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +0000955 fGLContextInfo.caps().markConfigAsValidColorAttachment(desc->fConfig);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000956 }
957
958 return true;
959
960FAILED:
961 if (desc->fMSColorRenderbufferID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000962 GL_CALL(DeleteRenderbuffers(1, &desc->fMSColorRenderbufferID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000963 }
964 if (desc->fRTFBOID != desc->fTexFBOID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000965 GL_CALL(DeleteFramebuffers(1, &desc->fRTFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000966 }
967 if (desc->fTexFBOID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000968 GL_CALL(DeleteFramebuffers(1, &desc->fTexFBOID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000969 }
970 return false;
971}
972
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000973// good to set a break-point here to know when createTexture fails
974static GrTexture* return_null_texture() {
975// GrAssert(!"null texture");
976 return NULL;
977}
978
caryclark@google.comcf6285b2012-06-06 12:09:01 +0000979#if 0 && GR_DEBUG
bsalomon@google.com3f3ffd62011-01-18 17:14:52 +0000980static size_t as_size_t(int x) {
981 return x;
982}
983#endif
984
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000985GrTexture* GrGpuGL::onCreateTexture(const GrTextureDesc& desc,
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000986 const void* srcData,
987 size_t rowBytes) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000988
bsalomon@google.com5bfc2172011-07-29 20:29:05 +0000989 GrGLTexture::Desc glTexDesc;
bsalomon@google.com71f341a2011-08-01 13:36:00 +0000990 GrGLRenderTarget::Desc glRTDesc;
reed@google.comac10a2d2010-12-22 21:39:39 +0000991
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000992 // Attempt to catch un- or wrongly initialized sample counts;
993 GrAssert(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
994
robertphillips@google.com32716282012-06-04 12:48:45 +0000995 glTexDesc.fFlags = desc.fFlags;
bsalomon@google.com99621082011-11-15 16:47:16 +0000996 glTexDesc.fWidth = desc.fWidth;
997 glTexDesc.fHeight = desc.fHeight;
bsalomon@google.com78d6cf92012-01-30 18:09:31 +0000998 glTexDesc.fConfig = desc.fConfig;
robertphillips@google.com32716282012-06-04 12:48:45 +0000999 glTexDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.com72830222013-01-23 20:25:22 +00001000 glTexDesc.fIsWrapped = false;
reed@google.comac10a2d2010-12-22 21:39:39 +00001001
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001002 glRTDesc.fMSColorRenderbufferID = 0;
1003 glRTDesc.fRTFBOID = 0;
1004 glRTDesc.fTexFBOID = 0;
bsalomon@google.com72830222013-01-23 20:25:22 +00001005 glRTDesc.fIsWrapped = false;
bsalomon@google.com64c4fe42011-11-05 14:51:01 +00001006 glRTDesc.fConfig = glTexDesc.fConfig;
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001007
bsalomon@google.comfea37b52011-04-25 15:51:06 +00001008 bool renderTarget = 0 != (desc.fFlags & kRenderTarget_GrTextureFlagBit);
reed@google.comac10a2d2010-12-22 21:39:39 +00001009
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001010 const Caps& caps = this->getCaps();
1011
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001012 glTexDesc.fOrigin = resolve_origin(desc.fOrigin, renderTarget);
1013 glRTDesc.fOrigin = glTexDesc.fOrigin;
bsalomon@google.comd9f826c2011-07-18 15:25:04 +00001014
bsalomon@google.com78d6cf92012-01-30 18:09:31 +00001015 glRTDesc.fSampleCnt = desc.fSampleCnt;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001016 if (GrGLCaps::kNone_MSFBOType == this->glCaps().msFBOType() &&
bsalomon@google.com78d6cf92012-01-30 18:09:31 +00001017 desc.fSampleCnt) {
bsalomon@google.com945bbe12012-06-15 14:30:34 +00001018 //GrPrintf("MSAA RT requested but not supported on this platform.");
1019 return return_null_texture();
reed@google.comac10a2d2010-12-22 21:39:39 +00001020 }
1021
reed@google.comac10a2d2010-12-22 21:39:39 +00001022 if (renderTarget) {
bsalomon@google.comf6601872012-08-28 21:11:35 +00001023 if (glTexDesc.fWidth > caps.maxRenderTargetSize() ||
1024 glTexDesc.fHeight > caps.maxRenderTargetSize()) {
bsalomon@google.com91958362011-06-13 17:58:13 +00001025 return return_null_texture();
1026 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001027 }
1028
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001029 GL_CALL(GenTextures(1, &glTexDesc.fTextureID));
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001030 if (renderTarget && this->glCaps().textureUsageSupport()) {
bsalomon@google.com07dd2bf2011-12-09 19:40:36 +00001031 // provides a hint about how this texture will be used
1032 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1033 GR_GL_TEXTURE_USAGE,
1034 GR_GL_FRAMEBUFFER_ATTACHMENT));
1035 }
bsalomon@google.com5bfc2172011-07-29 20:29:05 +00001036 if (!glTexDesc.fTextureID) {
bsalomon@google.comd9f826c2011-07-18 15:25:04 +00001037 return return_null_texture();
1038 }
1039
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001040 this->setSpareTextureUnit();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001041 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, glTexDesc.fTextureID));
bsalomon@google.come269f212011-11-07 13:29:52 +00001042
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001043 // Some drivers like to know filter/wrap before seeing glTexImage2D. Some
1044 // drivers have a bug where an FBO won't be complete if it includes a
1045 // texture that is not mipmap complete (considering the filter in use).
1046 GrGLTexture::TexParams initialTexParams;
1047 // we only set a subset here so invalidate first
1048 initialTexParams.invalidate();
1049 initialTexParams.fFilter = GR_GL_NEAREST;
1050 initialTexParams.fWrapS = GR_GL_CLAMP_TO_EDGE;
1051 initialTexParams.fWrapT = GR_GL_CLAMP_TO_EDGE;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001052 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1053 GR_GL_TEXTURE_MAG_FILTER,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001054 initialTexParams.fFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001055 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1056 GR_GL_TEXTURE_MIN_FILTER,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001057 initialTexParams.fFilter));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001058 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1059 GR_GL_TEXTURE_WRAP_S,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001060 initialTexParams.fWrapS));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001061 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
1062 GR_GL_TEXTURE_WRAP_T,
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001063 initialTexParams.fWrapT));
bsalomon@google.comb1d14fd2011-12-09 18:41:34 +00001064 if (!this->uploadTexData(glTexDesc, true, 0, 0,
1065 glTexDesc.fWidth, glTexDesc.fHeight,
1066 desc.fConfig, srcData, rowBytes)) {
1067 GL_CALL(DeleteTextures(1, &glTexDesc.fTextureID));
1068 return return_null_texture();
bsalomon@google.com6f379512011-11-16 20:36:03 +00001069 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001070
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001071 GrGLTexture* tex;
reed@google.comac10a2d2010-12-22 21:39:39 +00001072 if (renderTarget) {
robertphillips@google.comba0cc3e2012-03-26 17:58:35 +00001073 // unbind the texture from the texture unit before binding it to the frame buffer
1074 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, 0));
1075
bsalomon@google.com99621082011-11-15 16:47:16 +00001076 if (!this->createRenderTargetObjects(glTexDesc.fWidth,
1077 glTexDesc.fHeight,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001078 glTexDesc.fTextureID,
1079 &glRTDesc)) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001080 GL_CALL(DeleteTextures(1, &glTexDesc.fTextureID));
reed@google.comac10a2d2010-12-22 21:39:39 +00001081 return return_null_texture();
1082 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001083 tex = SkNEW_ARGS(GrGLTexture, (this, glTexDesc, glRTDesc));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001084 } else {
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001085 tex = SkNEW_ARGS(GrGLTexture, (this, glTexDesc));
reed@google.comac10a2d2010-12-22 21:39:39 +00001086 }
bsalomon@google.com0a97be22011-11-08 19:20:57 +00001087 tex->setCachedTexParams(initialTexParams, this->getResetTimestamp());
reed@google.comac10a2d2010-12-22 21:39:39 +00001088#ifdef TRACE_TEXTURE_CREATION
bsalomon@google.com64c4fe42011-11-05 14:51:01 +00001089 GrPrintf("--- new texture [%d] size=(%d %d) config=%d\n",
1090 glTexDesc.fTextureID, desc.fWidth, desc.fHeight, desc.fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +00001091#endif
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001092 return tex;
1093}
1094
1095namespace {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001096
1097const GrGLuint kUnknownBitCount = GrGLStencilBuffer::kUnknownBitCount;
1098
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001099void inline get_stencil_rb_sizes(const GrGLInterface* gl,
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001100 GrGLuint rb,
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001101 GrGLStencilBuffer::Format* format) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001102 // we shouldn't ever know one size and not the other
1103 GrAssert((kUnknownBitCount == format->fStencilBits) ==
1104 (kUnknownBitCount == format->fTotalBits));
1105 if (kUnknownBitCount == format->fStencilBits) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001106 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001107 GR_GL_RENDERBUFFER_STENCIL_SIZE,
1108 (GrGLint*)&format->fStencilBits);
1109 if (format->fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001110 GR_GL_GetRenderbufferParameteriv(gl, GR_GL_RENDERBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001111 GR_GL_RENDERBUFFER_DEPTH_SIZE,
1112 (GrGLint*)&format->fTotalBits);
1113 format->fTotalBits += format->fStencilBits;
1114 } else {
1115 format->fTotalBits = format->fStencilBits;
1116 }
1117 }
1118}
1119}
1120
1121bool GrGpuGL::createStencilBufferForRenderTarget(GrRenderTarget* rt,
1122 int width, int height) {
1123
1124 // All internally created RTs are also textures. We don't create
robertphillips@google.com1f47f4f2012-08-16 14:49:16 +00001125 // 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 +00001126 GrAssert(rt->asTexture());
bsalomon@google.com99621082011-11-15 16:47:16 +00001127 GrAssert(width >= rt->width());
1128 GrAssert(height >= rt->height());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001129
1130 int samples = rt->numSamples();
1131 GrGLuint sbID;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001132 GL_CALL(GenRenderbuffers(1, &sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001133 if (!sbID) {
1134 return false;
1135 }
1136
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001137 int stencilFmtCnt = this->glCaps().stencilFormats().count();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001138 for (int i = 0; i < stencilFmtCnt; ++i) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001139 GL_CALL(BindRenderbuffer(GR_GL_RENDERBUFFER, sbID));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001140 // we start with the last stencil format that succeeded in hopes
1141 // that we won't go through this loop more than once after the
1142 // first (painful) stencil creation.
1143 int sIdx = (i + fLastSuccessfulStencilFmtIdx) % stencilFmtCnt;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001144 const GrGLCaps::StencilFormat& sFmt =
1145 this->glCaps().stencilFormats()[sIdx];
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001146 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001147 // we do this "if" so that we don't call the multisample
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001148 // version on a GL that doesn't have an MSAA extension.
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001149 bool created;
1150 if (samples > 0) {
1151 created = renderbuffer_storage_msaa(fGLContextInfo,
1152 samples,
1153 sFmt.fInternalFormat,
1154 width, height);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001155 } else {
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001156 GL_ALLOC_CALL(this->glInterface(),
1157 RenderbufferStorage(GR_GL_RENDERBUFFER,
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001158 sFmt.fInternalFormat,
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001159 width, height));
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001160 created =
1161 (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(this->glInterface()));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001162 }
bsalomon@google.comc9668ec2012-04-11 18:16:41 +00001163 if (created) {
1164 // After sized formats we attempt an unsized format and take
1165 // whatever sizes GL gives us. In that case we query for the size.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001166 GrGLStencilBuffer::Format format = sFmt;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001167 get_stencil_rb_sizes(this->glInterface(), sbID, &format);
bsalomon@google.com72830222013-01-23 20:25:22 +00001168 static const bool kIsWrapped = false;
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001169 SkAutoTUnref<GrStencilBuffer> sb(SkNEW_ARGS(GrGLStencilBuffer,
bsalomon@google.com72830222013-01-23 20:25:22 +00001170 (this, kIsWrapped, sbID, width, height,
robertphillips@google.comf2e93fc2012-09-05 19:44:18 +00001171 samples, format)));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001172 if (this->attachStencilBufferToRenderTarget(sb, rt)) {
1173 fLastSuccessfulStencilFmtIdx = sIdx;
robertphillips@google.com9fbcad02012-09-09 14:44:15 +00001174 sb->transferToCache();
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001175 rt->setStencilBuffer(sb);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001176 return true;
1177 }
1178 sb->abandon(); // otherwise we lose sbID
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001179 }
1180 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001181 GL_CALL(DeleteRenderbuffers(1, &sbID));
bsalomon@google.com558a75b2011-08-08 17:01:14 +00001182 return false;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001183}
1184
1185bool GrGpuGL::attachStencilBufferToRenderTarget(GrStencilBuffer* sb,
1186 GrRenderTarget* rt) {
1187 GrGLRenderTarget* glrt = (GrGLRenderTarget*) rt;
1188
1189 GrGLuint fbo = glrt->renderFBOID();
1190
1191 if (NULL == sb) {
1192 if (NULL != rt->getStencilBuffer()) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001193 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001194 GR_GL_STENCIL_ATTACHMENT,
1195 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001196 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001197 GR_GL_DEPTH_ATTACHMENT,
1198 GR_GL_RENDERBUFFER, 0));
1199#if GR_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001200 GrGLenum status;
1201 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001202 GrAssert(GR_GL_FRAMEBUFFER_COMPLETE == status);
1203#endif
1204 }
1205 return true;
1206 } else {
1207 GrGLStencilBuffer* glsb = (GrGLStencilBuffer*) sb;
1208 GrGLuint rb = glsb->renderbufferID();
1209
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001210 fHWBoundRenderTarget = NULL;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001211 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, fbo));
1212 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001213 GR_GL_STENCIL_ATTACHMENT,
1214 GR_GL_RENDERBUFFER, rb));
1215 if (glsb->format().fPacked) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001216 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001217 GR_GL_DEPTH_ATTACHMENT,
1218 GR_GL_RENDERBUFFER, rb));
1219 } else {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001220 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001221 GR_GL_DEPTH_ATTACHMENT,
1222 GR_GL_RENDERBUFFER, 0));
reed@google.comac10a2d2010-12-22 21:39:39 +00001223 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001224
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001225 GrGLenum status;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001226 if (!this->glCaps().isColorConfigAndStencilFormatVerified(rt->config(),
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001227 glsb->format())) {
1228 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
1229 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001230 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001231 GR_GL_STENCIL_ATTACHMENT,
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001232 GR_GL_RENDERBUFFER, 0));
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001233 if (glsb->format().fPacked) {
1234 GL_CALL(FramebufferRenderbuffer(GR_GL_FRAMEBUFFER,
1235 GR_GL_DEPTH_ATTACHMENT,
1236 GR_GL_RENDERBUFFER, 0));
1237 }
1238 return false;
1239 } else {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001240 fGLContextInfo.caps().markColorConfigAndStencilFormatAsVerified(
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001241 rt->config(),
1242 glsb->format());
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001243 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001244 }
bsalomon@google.com4bcb0c62012-02-07 16:06:47 +00001245 return true;
reed@google.comac10a2d2010-12-22 21:39:39 +00001246 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001247}
1248
bsalomon@google.com71f341a2011-08-01 13:36:00 +00001249////////////////////////////////////////////////////////////////////////////////
1250
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001251GrVertexBuffer* GrGpuGL::onCreateVertexBuffer(uint32_t size, bool dynamic) {
twiz@google.com0f31ca72011-03-18 17:38:11 +00001252 GrGLuint id;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001253 GL_CALL(GenBuffers(1, &id));
reed@google.comac10a2d2010-12-22 21:39:39 +00001254 if (id) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001255 GL_CALL(BindBuffer(GR_GL_ARRAY_BUFFER, id));
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00001256 fHWGeometryState.fArrayPtrsDirty = true;
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001257 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
reed@google.comac10a2d2010-12-22 21:39:39 +00001258 // make sure driver can allocate memory for this buffer
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001259 GL_ALLOC_CALL(this->glInterface(),
1260 BufferData(GR_GL_ARRAY_BUFFER,
1261 size,
1262 NULL, // data ptr
1263 dynamic ? GR_GL_DYNAMIC_DRAW :
1264 GR_GL_STATIC_DRAW));
1265 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001266 GL_CALL(DeleteBuffers(1, &id));
reed@google.comac10a2d2010-12-22 21:39:39 +00001267 // deleting bound buffer does implicit bind to 0
1268 fHWGeometryState.fVertexBuffer = NULL;
1269 return NULL;
1270 }
bsalomon@google.com72830222013-01-23 20:25:22 +00001271 static const bool kIsWrapped = false;
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001272 GrGLVertexBuffer* vertexBuffer = SkNEW_ARGS(GrGLVertexBuffer,
bsalomon@google.com72830222013-01-23 20:25:22 +00001273 (this, kIsWrapped, id,
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001274 size, dynamic));
reed@google.comac10a2d2010-12-22 21:39:39 +00001275 fHWGeometryState.fVertexBuffer = vertexBuffer;
1276 return vertexBuffer;
1277 }
1278 return NULL;
1279}
1280
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001281GrIndexBuffer* GrGpuGL::onCreateIndexBuffer(uint32_t size, bool dynamic) {
twiz@google.com0f31ca72011-03-18 17:38:11 +00001282 GrGLuint id;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001283 GL_CALL(GenBuffers(1, &id));
reed@google.comac10a2d2010-12-22 21:39:39 +00001284 if (id) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001285 GL_CALL(BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER, id));
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001286 CLEAR_ERROR_BEFORE_ALLOC(this->glInterface());
reed@google.comac10a2d2010-12-22 21:39:39 +00001287 // make sure driver can allocate memory for this buffer
bsalomon@google.com4f3c2532012-01-19 16:16:52 +00001288 GL_ALLOC_CALL(this->glInterface(),
1289 BufferData(GR_GL_ELEMENT_ARRAY_BUFFER,
1290 size,
1291 NULL, // data ptr
1292 dynamic ? GR_GL_DYNAMIC_DRAW :
1293 GR_GL_STATIC_DRAW));
1294 if (CHECK_ALLOC_ERROR(this->glInterface()) != GR_GL_NO_ERROR) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001295 GL_CALL(DeleteBuffers(1, &id));
reed@google.comac10a2d2010-12-22 21:39:39 +00001296 // deleting bound buffer does implicit bind to 0
1297 fHWGeometryState.fIndexBuffer = NULL;
1298 return NULL;
1299 }
bsalomon@google.com72830222013-01-23 20:25:22 +00001300 static const bool kIsWrapped = false;
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001301 GrIndexBuffer* indexBuffer = SkNEW_ARGS(GrGLIndexBuffer,
bsalomon@google.com72830222013-01-23 20:25:22 +00001302 (this, kIsWrapped, id, size, dynamic));
reed@google.comac10a2d2010-12-22 21:39:39 +00001303 fHWGeometryState.fIndexBuffer = indexBuffer;
1304 return indexBuffer;
1305 }
1306 return NULL;
1307}
1308
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001309GrPath* GrGpuGL::onCreatePath(const SkPath& inPath) {
bsalomon@google.comf6601872012-08-28 21:11:35 +00001310 GrAssert(fCaps.pathStencilingSupport());
tomhudson@google.comc377baf2012-07-09 20:17:56 +00001311 return SkNEW_ARGS(GrGLPath, (this, inPath));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001312}
1313
bsalomon@google.coma3201942012-06-21 19:58:20 +00001314void GrGpuGL::flushScissor() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001315 const GrDrawState& drawState = this->getDrawState();
1316 const GrGLRenderTarget* rt =
1317 static_cast<const GrGLRenderTarget*>(drawState.getRenderTarget());
1318
1319 GrAssert(NULL != rt);
1320 const GrGLIRect& vp = rt->getViewport();
reed@google.comac10a2d2010-12-22 21:39:39 +00001321
bsalomon@google.coma3201942012-06-21 19:58:20 +00001322 if (fScissorState.fEnabled) {
1323 GrGLIRect scissor;
1324 scissor.setRelativeTo(vp,
1325 fScissorState.fRect.fLeft,
1326 fScissorState.fRect.fTop,
1327 fScissorState.fRect.width(),
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001328 fScissorState.fRect.height(),
1329 rt->origin());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001330 // if the scissor fully contains the viewport then we fall through and
1331 // disable the scissor test.
1332 if (!scissor.contains(vp)) {
1333 if (fHWScissorSettings.fRect != scissor) {
1334 scissor.pushToGLScissor(this->glInterface());
1335 fHWScissorSettings.fRect = scissor;
1336 }
1337 if (kYes_TriState != fHWScissorSettings.fEnabled) {
1338 GL_CALL(Enable(GR_GL_SCISSOR_TEST));
1339 fHWScissorSettings.fEnabled = kYes_TriState;
1340 }
1341 return;
1342 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001343 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001344 if (kNo_TriState != fHWScissorSettings.fEnabled) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001345 GL_CALL(Disable(GR_GL_SCISSOR_TEST));
bsalomon@google.coma3201942012-06-21 19:58:20 +00001346 fHWScissorSettings.fEnabled = kNo_TriState;
1347 return;
reed@google.comac10a2d2010-12-22 21:39:39 +00001348 }
1349}
1350
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001351void GrGpuGL::onClear(const GrIRect* rect, GrColor color) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001352 const GrDrawState& drawState = this->getDrawState();
1353 const GrRenderTarget* rt = drawState.getRenderTarget();
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001354 // parent class should never let us get here with no RT
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001355 GrAssert(NULL != rt);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +00001356
bsalomon@google.com74b98712011-11-11 19:46:16 +00001357 GrIRect clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001358 if (NULL != rect) {
1359 // flushScissor expects rect to be clipped to the target.
bsalomon@google.com74b98712011-11-11 19:46:16 +00001360 clippedRect = *rect;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001361 GrIRect rtRect = SkIRect::MakeWH(rt->width(), rt->height());
bsalomon@google.com74b98712011-11-11 19:46:16 +00001362 if (clippedRect.intersect(rtRect)) {
1363 rect = &clippedRect;
bsalomon@google.com6aa25c32011-04-27 19:55:29 +00001364 } else {
1365 return;
1366 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001367 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001368 this->flushRenderTarget(rect);
bsalomon@google.coma3201942012-06-21 19:58:20 +00001369 GrAutoTRestore<ScissorState> asr(&fScissorState);
1370 fScissorState.fEnabled = (NULL != rect);
1371 if (fScissorState.fEnabled) {
1372 fScissorState.fRect = *rect;
1373 }
1374 this->flushScissor();
bsalomon@google.com74b98712011-11-11 19:46:16 +00001375
1376 GrGLfloat r, g, b, a;
1377 static const GrGLfloat scale255 = 1.f / 255.f;
1378 a = GrColorUnpackA(color) * scale255;
1379 GrGLfloat scaleRGB = scale255;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001380 r = GrColorUnpackR(color) * scaleRGB;
1381 g = GrColorUnpackG(color) * scaleRGB;
1382 b = GrColorUnpackB(color) * scaleRGB;
1383
1384 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00001385 fHWWriteToColor = kYes_TriState;
bsalomon@google.com74b98712011-11-11 19:46:16 +00001386 GL_CALL(ClearColor(r, g, b, a));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001387 GL_CALL(Clear(GR_GL_COLOR_BUFFER_BIT));
reed@google.comac10a2d2010-12-22 21:39:39 +00001388}
1389
bsalomon@google.comedc177d2011-08-05 15:46:40 +00001390void GrGpuGL::clearStencil() {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001391 if (NULL == this->getDrawState().getRenderTarget()) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +00001392 return;
1393 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001394
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001395 this->flushRenderTarget(&GrIRect::EmptyIRect());
1396
bsalomon@google.coma3201942012-06-21 19:58:20 +00001397 GrAutoTRestore<ScissorState> asr(&fScissorState);
1398 fScissorState.fEnabled = false;
1399 this->flushScissor();
robertphillips@google.com730ebe52012-04-16 16:33:13 +00001400
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001401 GL_CALL(StencilMask(0xffffffff));
1402 GL_CALL(ClearStencil(0));
1403 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001404 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001405}
1406
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001407void GrGpuGL::clearStencilClip(const GrIRect& rect, bool insideClip) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001408 const GrDrawState& drawState = this->getDrawState();
1409 const GrRenderTarget* rt = drawState.getRenderTarget();
1410 GrAssert(NULL != rt);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001411
1412 // this should only be called internally when we know we have a
1413 // stencil buffer.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001414 GrAssert(NULL != rt->getStencilBuffer());
1415 GrGLint stencilBitCount = rt->getStencilBuffer()->bits();
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001416#if 0
reed@google.comac10a2d2010-12-22 21:39:39 +00001417 GrAssert(stencilBitCount > 0);
twiz@google.com0f31ca72011-03-18 17:38:11 +00001418 GrGLint clipStencilMask = (1 << (stencilBitCount - 1));
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001419#else
1420 // we could just clear the clip bit but when we go through
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +00001421 // ANGLE a partial stencil mask will cause clears to be
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001422 // turned into draws. Our contract on GrDrawTarget says that
1423 // changing the clip between stencil passes may or may not
1424 // zero the client's clip bits. So we just clear the whole thing.
twiz@google.com0f31ca72011-03-18 17:38:11 +00001425 static const GrGLint clipStencilMask = ~0;
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +00001426#endif
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001427 GrGLint value;
1428 if (insideClip) {
1429 value = (1 << (stencilBitCount - 1));
1430 } else {
1431 value = 0;
1432 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001433 this->flushRenderTarget(&GrIRect::EmptyIRect());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001434
1435 GrAutoTRestore<ScissorState> asr(&fScissorState);
1436 fScissorState.fEnabled = true;
1437 fScissorState.fRect = rect;
1438 this->flushScissor();
1439
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001440 GL_CALL(StencilMask((uint32_t) clipStencilMask));
bsalomon@google.comab3dee52011-08-29 15:18:41 +00001441 GL_CALL(ClearStencil(value));
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001442 GL_CALL(Clear(GR_GL_STENCIL_BUFFER_BIT));
bsalomon@google.com457b8a32012-05-21 21:19:58 +00001443 fHWStencilSettings.invalidate();
reed@google.comac10a2d2010-12-22 21:39:39 +00001444}
1445
bsalomon@google.combcdbbe62011-04-12 15:40:00 +00001446void GrGpuGL::onForceRenderTargetFlush() {
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001447 this->flushRenderTarget(&GrIRect::EmptyIRect());
reed@google.comac10a2d2010-12-22 21:39:39 +00001448}
1449
bsalomon@google.comc4364992011-11-07 15:54:49 +00001450bool GrGpuGL::readPixelsWillPayForYFlip(GrRenderTarget* renderTarget,
1451 int left, int top,
1452 int width, int height,
1453 GrPixelConfig config,
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001454 size_t rowBytes) const {
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001455 // If this rendertarget is aready TopLeft, we don't need to flip.
1456 if (kTopLeft_GrSurfaceOrigin == renderTarget->origin()) {
1457 return false;
1458 }
1459
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001460 // if GL can do the flip then we'll never pay for it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001461 if (this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001462 return false;
1463 }
1464
1465 // If we have to do memcpy to handle non-trim rowBytes then we
bsalomon@google.com7107fa72011-11-10 14:54:14 +00001466 // get the flip for free. Otherwise it costs.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001467 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001468 return true;
1469 }
1470 // If we have to do memcpys to handle rowBytes then y-flip is free
1471 // Note the rowBytes might be tight to the passed in data, but if data
1472 // gets clipped in x to the target the rowBytes will no longer be tight.
1473 if (left >= 0 && (left + width) < renderTarget->width()) {
1474 return 0 == rowBytes ||
1475 GrBytesPerPixel(config) * width == rowBytes;
1476 } else {
1477 return false;
1478 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001479}
1480
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001481bool GrGpuGL::onReadPixels(GrRenderTarget* target,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001482 int left, int top,
1483 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +00001484 GrPixelConfig config,
1485 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001486 size_t rowBytes) {
twiz@google.com0f31ca72011-03-18 17:38:11 +00001487 GrGLenum format;
1488 GrGLenum type;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001489 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin();
bsalomon@google.com280e99f2012-01-05 16:17:38 +00001490 if (!this->configToGLFormats(config, false, NULL, &format, &type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +00001491 return false;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001492 }
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001493 size_t bpp = GrBytesPerPixel(config);
1494 if (!adjust_pixel_ops_params(target->width(), target->height(), bpp,
1495 &left, &top, &width, &height,
1496 const_cast<const void**>(&buffer),
1497 &rowBytes)) {
1498 return false;
1499 }
bsalomon@google.comc4364992011-11-07 15:54:49 +00001500
bsalomon@google.comc6980972011-11-02 19:57:21 +00001501 // resolve the render target if necessary
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001502 GrGLRenderTarget* tgt = static_cast<GrGLRenderTarget*>(target);
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001503 GrDrawState::AutoRenderTargetRestore artr;
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001504 switch (tgt->getResolveType()) {
1505 case GrGLRenderTarget::kCantResolve_ResolveType:
1506 return false;
1507 case GrGLRenderTarget::kAutoResolves_ResolveType:
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001508 artr.set(this->drawState(), target);
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001509 this->flushRenderTarget(&GrIRect::EmptyIRect());
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001510 break;
1511 case GrGLRenderTarget::kCanResolve_ResolveType:
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001512 this->onResolveRenderTarget(tgt);
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001513 // we don't track the state of the READ FBO ID.
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001514 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1515 tgt->textureFBOID()));
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001516 break;
1517 default:
1518 GrCrash("Unknown resolve type");
reed@google.comac10a2d2010-12-22 21:39:39 +00001519 }
1520
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001521 const GrGLIRect& glvp = tgt->getViewport();
bsalomon@google.comd302f142011-03-03 13:54:13 +00001522
bsalomon@google.com8895a7a2011-02-18 16:09:55 +00001523 // the read rect is viewport-relative
1524 GrGLIRect readRect;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001525 readRect.setRelativeTo(glvp, left, top, width, height, target->origin());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001526
bsalomon@google.coma85449d2011-11-19 02:36:05 +00001527 size_t tightRowBytes = bpp * width;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001528 if (0 == rowBytes) {
1529 rowBytes = tightRowBytes;
1530 }
1531 size_t readDstRowBytes = tightRowBytes;
1532 void* readDst = buffer;
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001533
bsalomon@google.comc6980972011-11-02 19:57:21 +00001534 // determine if GL can read using the passed rowBytes or if we need
1535 // a scratch buffer.
1536 SkAutoSMalloc<32 * sizeof(GrColor)> scratch;
1537 if (rowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001538 if (this->glCaps().packRowLengthSupport()) {
bsalomon@google.comc6980972011-11-02 19:57:21 +00001539 GrAssert(!(rowBytes % sizeof(GrColor)));
1540 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, rowBytes / sizeof(GrColor)));
1541 readDstRowBytes = rowBytes;
1542 } else {
1543 scratch.reset(tightRowBytes * height);
1544 readDst = scratch.get();
1545 }
1546 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001547 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001548 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 1));
1549 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001550 GL_CALL(ReadPixels(readRect.fLeft, readRect.fBottom,
1551 readRect.fWidth, readRect.fHeight,
bsalomon@google.comc6980972011-11-02 19:57:21 +00001552 format, type, readDst));
1553 if (readDstRowBytes != tightRowBytes) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001554 GrAssert(this->glCaps().packRowLengthSupport());
bsalomon@google.comc6980972011-11-02 19:57:21 +00001555 GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 0));
1556 }
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001557 if (flipY && this->glCaps().packFlipYSupport()) {
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001558 GL_CALL(PixelStorei(GR_GL_PACK_REVERSE_ROW_ORDER, 0));
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001559 flipY = false;
bsalomon@google.com56d11e02011-11-30 19:59:08 +00001560 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001561
1562 // now reverse the order of the rows, since GL's are bottom-to-top, but our
bsalomon@google.comc6980972011-11-02 19:57:21 +00001563 // API presents top-to-bottom. We must preserve the padding contents. Note
1564 // that the above readPixels did not overwrite the padding.
1565 if (readDst == buffer) {
1566 GrAssert(rowBytes == readDstRowBytes);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001567 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001568 scratch.reset(tightRowBytes);
1569 void* tmpRow = scratch.get();
1570 // flip y in-place by rows
1571 const int halfY = height >> 1;
1572 char* top = reinterpret_cast<char*>(buffer);
1573 char* bottom = top + (height - 1) * rowBytes;
1574 for (int y = 0; y < halfY; y++) {
1575 memcpy(tmpRow, top, tightRowBytes);
1576 memcpy(top, bottom, tightRowBytes);
1577 memcpy(bottom, tmpRow, tightRowBytes);
1578 top += rowBytes;
1579 bottom -= rowBytes;
1580 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001581 }
1582 } else {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001583 GrAssert(readDst != buffer); GrAssert(rowBytes != tightRowBytes);
bsalomon@google.comc6980972011-11-02 19:57:21 +00001584 // copy from readDst to buffer while flipping y
caryclark@google.comcf6285b2012-06-06 12:09:01 +00001585 // const int halfY = height >> 1;
bsalomon@google.comc6980972011-11-02 19:57:21 +00001586 const char* src = reinterpret_cast<const char*>(readDst);
bsalomon@google.comc4364992011-11-07 15:54:49 +00001587 char* dst = reinterpret_cast<char*>(buffer);
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001588 if (flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001589 dst += (height-1) * rowBytes;
1590 }
bsalomon@google.comc6980972011-11-02 19:57:21 +00001591 for (int y = 0; y < height; y++) {
1592 memcpy(dst, src, tightRowBytes);
1593 src += readDstRowBytes;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001594 if (!flipY) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00001595 dst += rowBytes;
1596 } else {
1597 dst -= rowBytes;
1598 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001599 }
1600 }
1601 return true;
1602}
1603
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001604void GrGpuGL::flushRenderTarget(const GrIRect* bound) {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001605
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001606 GrGLRenderTarget* rt =
1607 static_cast<GrGLRenderTarget*>(this->drawState()->getRenderTarget());
1608 GrAssert(NULL != rt);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001609
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001610 if (fHWBoundRenderTarget != rt) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001611 GL_CALL(BindFramebuffer(GR_GL_FRAMEBUFFER, rt->renderFBOID()));
reed@google.comac10a2d2010-12-22 21:39:39 +00001612 #if GR_DEBUG
bsalomon@google.com56bfc5a2011-09-01 13:28:16 +00001613 GrGLenum status;
1614 GL_CALL_RET(status, CheckFramebufferStatus(GR_GL_FRAMEBUFFER));
bsalomon@google.comc312bf92011-03-21 21:10:33 +00001615 if (status != GR_GL_FRAMEBUFFER_COMPLETE) {
reed@google.comb9255d52011-06-13 18:54:59 +00001616 GrPrintf("GrGpuGL::flushRenderTarget glCheckFramebufferStatus %x\n", status);
reed@google.comac10a2d2010-12-22 21:39:39 +00001617 }
1618 #endif
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001619 fHWBoundRenderTarget = rt;
bsalomon@google.comd302f142011-03-03 13:54:13 +00001620 const GrGLIRect& vp = rt->getViewport();
bsalomon@google.coma3201942012-06-21 19:58:20 +00001621 if (fHWViewport != vp) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001622 vp.pushToGLViewport(this->glInterface());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001623 fHWViewport = vp;
reed@google.comac10a2d2010-12-22 21:39:39 +00001624 }
1625 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001626 if (NULL == bound || !bound->isEmpty()) {
1627 rt->flagAsNeedingResolve(bound);
1628 }
reed@google.comac10a2d2010-12-22 21:39:39 +00001629}
1630
twiz@google.com0f31ca72011-03-18 17:38:11 +00001631GrGLenum gPrimitiveType2GLMode[] = {
1632 GR_GL_TRIANGLES,
1633 GR_GL_TRIANGLE_STRIP,
1634 GR_GL_TRIANGLE_FAN,
1635 GR_GL_POINTS,
1636 GR_GL_LINES,
1637 GR_GL_LINE_STRIP
reed@google.comac10a2d2010-12-22 21:39:39 +00001638};
1639
bsalomon@google.comd302f142011-03-03 13:54:13 +00001640#define SWAP_PER_DRAW 0
1641
bsalomon@google.coma7f84e12011-03-10 14:13:19 +00001642#if SWAP_PER_DRAW
bsalomon@google.comd302f142011-03-03 13:54:13 +00001643 #if GR_MAC_BUILD
1644 #include <AGL/agl.h>
1645 #elif GR_WIN32_BUILD
bsalomon@google.comce7357d2012-06-25 17:49:25 +00001646 #include <gl/GL.h>
bsalomon@google.comd302f142011-03-03 13:54:13 +00001647 void SwapBuf() {
1648 DWORD procID = GetCurrentProcessId();
1649 HWND hwnd = GetTopWindow(GetDesktopWindow());
1650 while(hwnd) {
1651 DWORD wndProcID = 0;
1652 GetWindowThreadProcessId(hwnd, &wndProcID);
1653 if(wndProcID == procID) {
1654 SwapBuffers(GetDC(hwnd));
1655 }
1656 hwnd = GetNextWindow(hwnd, GW_HWNDNEXT);
1657 }
1658 }
1659 #endif
1660#endif
1661
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001662void GrGpuGL::onGpuDraw(const DrawInfo& info) {
1663 int extraStartIndexOffset;
1664 this->setupGeometry(info, &extraStartIndexOffset);
reed@google.comac10a2d2010-12-22 21:39:39 +00001665
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001666 GrAssert((size_t)info.primitiveType() < GR_ARRAY_COUNT(gPrimitiveType2GLMode));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00001667 GrAssert(NULL != fHWGeometryState.fVertexBuffer);
1668
bsalomon@google.com74749cd2013-01-30 16:12:41 +00001669 if (info.isIndexed()) {
1670 GrAssert(NULL != fHWGeometryState.fIndexBuffer);
1671 GrGLvoid* indices = (GrGLvoid*)(sizeof(uint16_t) * (info.startIndex() +
1672 extraStartIndexOffset));
1673 // info.startVertex() was accounted for by setupGeometry.
1674 GL_CALL(DrawElements(gPrimitiveType2GLMode[info.primitiveType()],
1675 info.indexCount(),
1676 GR_GL_UNSIGNED_SHORT,
1677 indices));
1678 } else {
1679 // Pass 0 for parameter first. We have to adjust glVertexAttribPointer() to account for
1680 // startVertex in the DrawElements case. So we always rely on setupGeometry to have
1681 // accounted for startVertex.
1682 GL_CALL(DrawArrays(gPrimitiveType2GLMode[info.primitiveType()], 0, info.vertexCount()));
1683 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00001684#if SWAP_PER_DRAW
1685 glFlush();
1686 #if GR_MAC_BUILD
1687 aglSwapBuffers(aglGetCurrentContext());
1688 int set_a_break_pt_here = 9;
1689 aglSwapBuffers(aglGetCurrentContext());
1690 #elif GR_WIN32_BUILD
1691 SwapBuf();
1692 int set_a_break_pt_here = 9;
1693 SwapBuf();
1694 #endif
1695#endif
reed@google.comac10a2d2010-12-22 21:39:39 +00001696}
1697
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001698namespace {
bsalomon@google.com100abf42012-09-05 17:40:04 +00001699
1700static const uint16_t kOnes16 = static_cast<uint16_t>(~0);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001701const GrStencilSettings& winding_nv_path_stencil_settings() {
1702 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
1703 kIncClamp_StencilOp,
1704 kIncClamp_StencilOp,
1705 kAlwaysIfInClip_StencilFunc,
bsalomon@google.com100abf42012-09-05 17:40:04 +00001706 kOnes16, kOnes16, kOnes16);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001707 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
1708}
1709const GrStencilSettings& even_odd_nv_path_stencil_settings() {
1710 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
1711 kInvert_StencilOp,
1712 kInvert_StencilOp,
1713 kAlwaysIfInClip_StencilFunc,
bsalomon@google.com100abf42012-09-05 17:40:04 +00001714 kOnes16, kOnes16, kOnes16);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001715 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
1716}
1717}
1718
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001719void GrGpuGL::setStencilPathSettings(const GrPath&,
sugoi@google.com12b4e272012-12-06 20:13:11 +00001720 SkPath::FillType fill,
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001721 GrStencilSettings* settings) {
1722 switch (fill) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001723 case SkPath::kEvenOdd_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001724 *settings = even_odd_nv_path_stencil_settings();
1725 return;
sugoi@google.com12b4e272012-12-06 20:13:11 +00001726 case SkPath::kWinding_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001727 *settings = winding_nv_path_stencil_settings();
1728 return;
1729 default:
1730 GrCrash("Unexpected path fill.");
1731 }
1732}
1733
sugoi@google.com12b4e272012-12-06 20:13:11 +00001734void GrGpuGL::onGpuStencilPath(const GrPath* path, SkPath::FillType fill) {
bsalomon@google.comf6601872012-08-28 21:11:35 +00001735 GrAssert(fCaps.pathStencilingSupport());
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001736
1737 GrGLuint id = static_cast<const GrGLPath*>(path)->pathID();
1738 GrDrawState* drawState = this->drawState();
1739 GrAssert(NULL != drawState->getRenderTarget());
1740 if (NULL == drawState->getRenderTarget()->getStencilBuffer()) {
1741 return;
1742 }
1743
1744 // Decide how to manipulate the stencil buffer based on the fill rule.
1745 // Also, assert that the stencil settings we set in setStencilPathSettings
1746 // are present.
1747 GrAssert(!fStencilSettings.isTwoSided());
1748 GrGLenum fillMode;
1749 switch (fill) {
sugoi@google.com12b4e272012-12-06 20:13:11 +00001750 case SkPath::kWinding_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001751 fillMode = GR_GL_COUNT_UP;
1752 GrAssert(kIncClamp_StencilOp ==
1753 fStencilSettings.passOp(GrStencilSettings::kFront_Face));
1754 GrAssert(kIncClamp_StencilOp ==
1755 fStencilSettings.failOp(GrStencilSettings::kFront_Face));
1756 break;
sugoi@google.com12b4e272012-12-06 20:13:11 +00001757 case SkPath::kEvenOdd_FillType:
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001758 fillMode = GR_GL_INVERT;
1759 GrAssert(kInvert_StencilOp ==
1760 fStencilSettings.passOp(GrStencilSettings::kFront_Face));
1761 GrAssert(kInvert_StencilOp ==
1762 fStencilSettings.failOp(GrStencilSettings::kFront_Face));
1763 break;
1764 default:
1765 // Only the above two fill rules are allowed.
1766 GrCrash("Unexpected path fill.");
bsalomon@google.com548a4332012-07-11 19:45:22 +00001767 return; // suppress unused var warning.
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001768 }
1769 GrGLint writeMask = fStencilSettings.writeMask(GrStencilSettings::kFront_Face);
1770 GL_CALL(StencilFillPath(id, fillMode, writeMask));
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001771}
1772
bsalomon@google.com75f9f252012-01-31 13:35:56 +00001773void GrGpuGL::onResolveRenderTarget(GrRenderTarget* target) {
1774
1775 GrGLRenderTarget* rt = static_cast<GrGLRenderTarget*>(target);
reed@google.comac10a2d2010-12-22 21:39:39 +00001776
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001777 if (rt->needsResolve()) {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001778 GrAssert(GrGLCaps::kNone_MSFBOType != this->glCaps().msFBOType());
reed@google.comac10a2d2010-12-22 21:39:39 +00001779 GrAssert(rt->textureFBOID() != rt->renderFBOID());
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001780 GL_CALL(BindFramebuffer(GR_GL_READ_FRAMEBUFFER,
1781 rt->renderFBOID()));
1782 GL_CALL(BindFramebuffer(GR_GL_DRAW_FRAMEBUFFER,
1783 rt->textureFBOID()));
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001784 // make sure we go through flushRenderTarget() since we've modified
1785 // the bound DRAW FBO ID.
bsalomon@google.comc811ea32012-05-21 15:33:09 +00001786 fHWBoundRenderTarget = NULL;
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001787 const GrGLIRect& vp = rt->getViewport();
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001788 const GrIRect dirtyRect = rt->getResolveRect();
1789 GrGLIRect r;
bsalomon@google.coma3201942012-06-21 19:58:20 +00001790 r.setRelativeTo(vp, dirtyRect.fLeft, dirtyRect.fTop,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +00001791 dirtyRect.width(), dirtyRect.height(), target->origin());
reed@google.comac10a2d2010-12-22 21:39:39 +00001792
bsalomon@google.coma3201942012-06-21 19:58:20 +00001793 GrAutoTRestore<ScissorState> asr;
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001794 if (GrGLCaps::kAppleES_MSFBOType == this->glCaps().msFBOType()) {
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00001795 // Apple's extension uses the scissor as the blit bounds.
bsalomon@google.coma3201942012-06-21 19:58:20 +00001796 asr.reset(&fScissorState);
1797 fScissorState.fEnabled = true;
1798 fScissorState.fRect = dirtyRect;
1799 this->flushScissor();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001800 GL_CALL(ResolveMultisampleFramebuffer());
reed@google.comac10a2d2010-12-22 21:39:39 +00001801 } else {
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001802 if (GrGLCaps::kDesktopARB_MSFBOType != this->glCaps().msFBOType()) {
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001803 // this respects the scissor during the blit, so disable it.
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00001804 GrAssert(GrGLCaps::kDesktopEXT_MSFBOType ==
1805 this->glCaps().msFBOType());
bsalomon@google.coma3201942012-06-21 19:58:20 +00001806 asr.reset(&fScissorState);
1807 fScissorState.fEnabled = false;
1808 this->flushScissor();
bsalomon@google.coma9ecdad2011-03-23 13:50:34 +00001809 }
bsalomon@google.com8295dc12011-05-02 12:53:34 +00001810 int right = r.fLeft + r.fWidth;
1811 int top = r.fBottom + r.fHeight;
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001812 GL_CALL(BlitFramebuffer(r.fLeft, r.fBottom, right, top,
1813 r.fLeft, r.fBottom, right, top,
1814 GR_GL_COLOR_BUFFER_BIT, GR_GL_NEAREST));
reed@google.comac10a2d2010-12-22 21:39:39 +00001815 }
bsalomon@google.com5877ffd2011-04-11 17:58:48 +00001816 rt->flagAsResolved();
reed@google.comac10a2d2010-12-22 21:39:39 +00001817 }
1818}
1819
bsalomon@google.com411dad02012-06-05 20:24:20 +00001820namespace {
bsalomon@google.comd302f142011-03-03 13:54:13 +00001821
bsalomon@google.com411dad02012-06-05 20:24:20 +00001822GrGLenum gr_to_gl_stencil_func(GrStencilFunc basicFunc) {
1823 static const GrGLenum gTable[] = {
1824 GR_GL_ALWAYS, // kAlways_StencilFunc
1825 GR_GL_NEVER, // kNever_StencilFunc
1826 GR_GL_GREATER, // kGreater_StencilFunc
1827 GR_GL_GEQUAL, // kGEqual_StencilFunc
1828 GR_GL_LESS, // kLess_StencilFunc
1829 GR_GL_LEQUAL, // kLEqual_StencilFunc,
1830 GR_GL_EQUAL, // kEqual_StencilFunc,
1831 GR_GL_NOTEQUAL, // kNotEqual_StencilFunc,
1832 };
1833 GR_STATIC_ASSERT(GR_ARRAY_COUNT(gTable) == kBasicStencilFuncCount);
1834 GR_STATIC_ASSERT(0 == kAlways_StencilFunc);
1835 GR_STATIC_ASSERT(1 == kNever_StencilFunc);
1836 GR_STATIC_ASSERT(2 == kGreater_StencilFunc);
1837 GR_STATIC_ASSERT(3 == kGEqual_StencilFunc);
1838 GR_STATIC_ASSERT(4 == kLess_StencilFunc);
1839 GR_STATIC_ASSERT(5 == kLEqual_StencilFunc);
1840 GR_STATIC_ASSERT(6 == kEqual_StencilFunc);
1841 GR_STATIC_ASSERT(7 == kNotEqual_StencilFunc);
1842 GrAssert((unsigned) basicFunc < kBasicStencilFuncCount);
1843
1844 return gTable[basicFunc];
1845}
1846
1847GrGLenum gr_to_gl_stencil_op(GrStencilOp op) {
1848 static const GrGLenum gTable[] = {
1849 GR_GL_KEEP, // kKeep_StencilOp
1850 GR_GL_REPLACE, // kReplace_StencilOp
1851 GR_GL_INCR_WRAP, // kIncWrap_StencilOp
1852 GR_GL_INCR, // kIncClamp_StencilOp
1853 GR_GL_DECR_WRAP, // kDecWrap_StencilOp
1854 GR_GL_DECR, // kDecClamp_StencilOp
1855 GR_GL_ZERO, // kZero_StencilOp
1856 GR_GL_INVERT, // kInvert_StencilOp
1857 };
1858 GR_STATIC_ASSERT(GR_ARRAY_COUNT(gTable) == kStencilOpCount);
1859 GR_STATIC_ASSERT(0 == kKeep_StencilOp);
1860 GR_STATIC_ASSERT(1 == kReplace_StencilOp);
1861 GR_STATIC_ASSERT(2 == kIncWrap_StencilOp);
1862 GR_STATIC_ASSERT(3 == kIncClamp_StencilOp);
1863 GR_STATIC_ASSERT(4 == kDecWrap_StencilOp);
1864 GR_STATIC_ASSERT(5 == kDecClamp_StencilOp);
1865 GR_STATIC_ASSERT(6 == kZero_StencilOp);
1866 GR_STATIC_ASSERT(7 == kInvert_StencilOp);
1867 GrAssert((unsigned) op < kStencilOpCount);
1868 return gTable[op];
1869}
1870
1871void set_gl_stencil(const GrGLInterface* gl,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001872 const GrStencilSettings& settings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001873 GrGLenum glFace,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001874 GrStencilSettings::Face grFace) {
1875 GrGLenum glFunc = gr_to_gl_stencil_func(settings.func(grFace));
1876 GrGLenum glFailOp = gr_to_gl_stencil_op(settings.failOp(grFace));
1877 GrGLenum glPassOp = gr_to_gl_stencil_op(settings.passOp(grFace));
1878
1879 GrGLint ref = settings.funcRef(grFace);
1880 GrGLint mask = settings.funcMask(grFace);
1881 GrGLint writeMask = settings.writeMask(grFace);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001882
1883 if (GR_GL_FRONT_AND_BACK == glFace) {
1884 // we call the combined func just in case separate stencil is not
1885 // supported.
1886 GR_GL_CALL(gl, StencilFunc(glFunc, ref, mask));
1887 GR_GL_CALL(gl, StencilMask(writeMask));
1888 GR_GL_CALL(gl, StencilOp(glFailOp, glPassOp, glPassOp));
1889 } else {
1890 GR_GL_CALL(gl, StencilFuncSeparate(glFace, glFunc, ref, mask));
1891 GR_GL_CALL(gl, StencilMaskSeparate(glFace, writeMask));
1892 GR_GL_CALL(gl, StencilOpSeparate(glFace, glFailOp, glPassOp, glPassOp));
1893 }
1894}
1895}
bsalomon@google.comd302f142011-03-03 13:54:13 +00001896
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001897void GrGpuGL::flushStencil(DrawType type) {
1898 if (kStencilPath_DrawType == type) {
1899 GrAssert(!fStencilSettings.isTwoSided());
1900 // Just the func, ref, and mask is set here. The op and write mask are params to the call
1901 // that draws the path to the SB (glStencilFillPath)
1902 GrGLenum func =
1903 gr_to_gl_stencil_func(fStencilSettings.func(GrStencilSettings::kFront_Face));
1904 GL_CALL(PathStencilFunc(func,
1905 fStencilSettings.funcRef(GrStencilSettings::kFront_Face),
1906 fStencilSettings.funcMask(GrStencilSettings::kFront_Face)));
1907 } else if (fHWStencilSettings != fStencilSettings) {
1908 if (fStencilSettings.isDisabled()) {
1909 if (kNo_TriState != fHWStencilTestEnabled) {
1910 GL_CALL(Disable(GR_GL_STENCIL_TEST));
1911 fHWStencilTestEnabled = kNo_TriState;
1912 }
1913 } else {
1914 if (kYes_TriState != fHWStencilTestEnabled) {
1915 GL_CALL(Enable(GR_GL_STENCIL_TEST));
1916 fHWStencilTestEnabled = kYes_TriState;
1917 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001918 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001919 if (!fStencilSettings.isDisabled()) {
bsalomon@google.comf6601872012-08-28 21:11:35 +00001920 if (this->getCaps().twoSidedStencilSupport()) {
bsalomon@google.com411dad02012-06-05 20:24:20 +00001921 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001922 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001923 GR_GL_FRONT,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001924 GrStencilSettings::kFront_Face);
bsalomon@google.com411dad02012-06-05 20:24:20 +00001925 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001926 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001927 GR_GL_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001928 GrStencilSettings::kBack_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00001929 } else {
bsalomon@google.com411dad02012-06-05 20:24:20 +00001930 set_gl_stencil(this->glInterface(),
bsalomon@google.coma3201942012-06-21 19:58:20 +00001931 fStencilSettings,
bsalomon@google.com411dad02012-06-05 20:24:20 +00001932 GR_GL_FRONT_AND_BACK,
bsalomon@google.coma3201942012-06-21 19:58:20 +00001933 GrStencilSettings::kFront_Face);
bsalomon@google.comd302f142011-03-03 13:54:13 +00001934 }
1935 }
bsalomon@google.coma3201942012-06-21 19:58:20 +00001936 fHWStencilSettings = fStencilSettings;
reed@google.comac10a2d2010-12-22 21:39:39 +00001937 }
1938}
1939
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001940void GrGpuGL::flushAAState(DrawType type) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +00001941 const GrRenderTarget* rt = this->getDrawState().getRenderTarget();
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001942 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001943 // ES doesn't support toggling GL_MULTISAMPLE and doesn't have
1944 // smooth lines.
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001945 // we prefer smooth lines over multisampled lines
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001946 bool smoothLines = false;
1947
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001948 if (kDrawLines_DrawType == type) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001949 smoothLines = this->willUseHWAALines();
1950 if (smoothLines) {
1951 if (kYes_TriState != fHWAAState.fSmoothLineEnabled) {
1952 GL_CALL(Enable(GR_GL_LINE_SMOOTH));
1953 fHWAAState.fSmoothLineEnabled = kYes_TriState;
1954 // must disable msaa to use line smoothing
1955 if (rt->isMultisampled() &&
1956 kNo_TriState != fHWAAState.fMSAAEnabled) {
1957 GL_CALL(Disable(GR_GL_MULTISAMPLE));
1958 fHWAAState.fMSAAEnabled = kNo_TriState;
1959 }
1960 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001961 } else {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001962 if (kNo_TriState != fHWAAState.fSmoothLineEnabled) {
1963 GL_CALL(Disable(GR_GL_LINE_SMOOTH));
1964 fHWAAState.fSmoothLineEnabled = kNo_TriState;
1965 }
1966 }
1967 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +00001968 if (!smoothLines && rt->isMultisampled()) {
1969 // FIXME: GL_NV_pr doesn't seem to like MSAA disabled. The paths
1970 // convex hulls of each segment appear to get filled.
1971 bool enableMSAA = kStencilPath_DrawType == type ||
1972 this->getDrawState().isHWAntialiasState();
1973 if (enableMSAA) {
bsalomon@google.com4d5f3fe2012-05-21 17:11:44 +00001974 if (kYes_TriState != fHWAAState.fMSAAEnabled) {
1975 GL_CALL(Enable(GR_GL_MULTISAMPLE));
1976 fHWAAState.fMSAAEnabled = kYes_TriState;
1977 }
1978 } else {
1979 if (kNo_TriState != fHWAAState.fMSAAEnabled) {
1980 GL_CALL(Disable(GR_GL_MULTISAMPLE));
1981 fHWAAState.fMSAAEnabled = kNo_TriState;
1982 }
bsalomon@google.comf954d8d2011-04-06 17:50:02 +00001983 }
1984 }
1985 }
1986}
1987
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001988void GrGpuGL::flushBlend(bool isLines,
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001989 GrBlendCoeff srcCoeff,
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001990 GrBlendCoeff dstCoeff) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +00001991 if (isLines && this->willUseHWAALines()) {
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001992 if (kYes_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00001993 GL_CALL(Enable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00001994 fHWBlendState.fEnabled = kYes_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00001995 }
bsalomon@google.com47059542012-06-06 20:51:20 +00001996 if (kSA_GrBlendCoeff != fHWBlendState.fSrcCoeff ||
1997 kISA_GrBlendCoeff != fHWBlendState.fDstCoeff) {
1998 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[kSA_GrBlendCoeff],
1999 gXfermodeCoeff2Blend[kISA_GrBlendCoeff]));
2000 fHWBlendState.fSrcCoeff = kSA_GrBlendCoeff;
2001 fHWBlendState.fDstCoeff = kISA_GrBlendCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002002 }
2003 } else {
bsalomon@google.com86c1f712011-10-12 14:54:26 +00002004 // any optimization to disable blending should
2005 // have already been applied and tweaked the coeffs
2006 // to (1, 0).
bsalomon@google.com47059542012-06-06 20:51:20 +00002007 bool blendOff = kOne_GrBlendCoeff == srcCoeff &&
2008 kZero_GrBlendCoeff == dstCoeff;
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002009 if (blendOff) {
2010 if (kNo_TriState != fHWBlendState.fEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002011 GL_CALL(Disable(GR_GL_BLEND));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002012 fHWBlendState.fEnabled = kNo_TriState;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002013 }
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002014 } else {
2015 if (kYes_TriState != fHWBlendState.fEnabled) {
2016 GL_CALL(Enable(GR_GL_BLEND));
2017 fHWBlendState.fEnabled = kYes_TriState;
2018 }
2019 if (fHWBlendState.fSrcCoeff != srcCoeff ||
2020 fHWBlendState.fDstCoeff != dstCoeff) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002021 GL_CALL(BlendFunc(gXfermodeCoeff2Blend[srcCoeff],
2022 gXfermodeCoeff2Blend[dstCoeff]));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002023 fHWBlendState.fSrcCoeff = srcCoeff;
2024 fHWBlendState.fDstCoeff = dstCoeff;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002025 }
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00002026 GrColor blendConst = this->getDrawState().getBlendConstant();
bsalomon@google.com271cffc2011-05-20 14:13:56 +00002027 if ((BlendCoeffReferencesConstant(srcCoeff) ||
2028 BlendCoeffReferencesConstant(dstCoeff)) &&
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002029 (!fHWBlendState.fConstColorValid ||
2030 fHWBlendState.fConstColor != blendConst)) {
bsalomon@google.com75347472012-09-17 17:23:21 +00002031 GrGLfloat c[4];
2032 GrColorToRGBAFloat(blendConst, c);
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002033 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
bsalomon@google.coma4d8fc22012-05-21 13:21:46 +00002034 fHWBlendState.fConstColor = blendConst;
2035 fHWBlendState.fConstColorValid = true;
bsalomon@google.com0650e812011-04-08 18:07:53 +00002036 }
2037 }
2038 }
2039}
bsalomon@google.com0a97be22011-11-08 19:20:57 +00002040namespace {
2041
bsalomon@google.com6d003d12012-09-11 15:45:20 +00002042inline void set_tex_swizzle(GrGLenum swizzle[4], const GrGLInterface* gl) {
bsalomon@google.com4d063de2012-05-31 17:59:23 +00002043 GR_GL_CALL(gl, TexParameteriv(GR_GL_TEXTURE_2D,
2044 GR_GL_TEXTURE_SWIZZLE_RGBA,
2045 reinterpret_cast<const GrGLint*>(swizzle)));
bsalomon@google.com0a97be22011-11-08 19:20:57 +00002046}
bsalomon@google.comb8670992012-07-25 21:27:09 +00002047
bsalomon@google.com6c76d242012-09-07 16:52:24 +00002048inline GrGLenum tile_to_gl_wrap(SkShader::TileMode tm) {
bsalomon@google.comb8670992012-07-25 21:27:09 +00002049 static const GrGLenum gWrapModes[] = {
2050 GR_GL_CLAMP_TO_EDGE,
2051 GR_GL_REPEAT,
2052 GR_GL_MIRRORED_REPEAT
2053 };
2054 GrAssert((unsigned) tm <= SK_ARRAY_COUNT(gWrapModes));
2055 GR_STATIC_ASSERT(0 == SkShader::kClamp_TileMode);
2056 GR_STATIC_ASSERT(1 == SkShader::kRepeat_TileMode);
2057 GR_STATIC_ASSERT(2 == SkShader::kMirror_TileMode);
2058 return gWrapModes[tm];
2059}
2060
bsalomon@google.com0a97be22011-11-08 19:20:57 +00002061}
2062
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002063void GrGpuGL::bindTexture(int unitIdx, const GrTextureParams& params, GrGLTexture* texture) {
2064 GrAssert(NULL != texture);
tomhudson@google.comd0c1a062012-07-12 17:23:52 +00002065
bsalomon@google.comb8670992012-07-25 21:27:09 +00002066 // If we created a rt/tex and rendered to it without using a texture and now we're texturing
2067 // 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 +00002068 // out of the "last != next" check.
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002069 GrGLRenderTarget* texRT = static_cast<GrGLRenderTarget*>(texture->asRenderTarget());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002070 if (NULL != texRT) {
2071 this->onResolveRenderTarget(texRT);
2072 }
2073
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002074 if (fHWBoundTextures[unitIdx] != texture) {
2075 this->setTextureUnit(unitIdx);
2076 GL_CALL(BindTexture(GR_GL_TEXTURE_2D, texture->textureID()));
2077 fHWBoundTextures[unitIdx] = texture;
bsalomon@google.com4c883782012-06-04 19:05:11 +00002078 }
2079
bsalomon@google.com4c883782012-06-04 19:05:11 +00002080 ResetTimestamp timestamp;
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002081 const GrGLTexture::TexParams& oldTexParams = texture->getCachedTexParams(&timestamp);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002082 bool setAll = timestamp < this->getResetTimestamp();
2083 GrGLTexture::TexParams newTexParams;
2084
bsalomon@google.comb8670992012-07-25 21:27:09 +00002085 newTexParams.fFilter = params.isBilerp() ? GR_GL_LINEAR : GR_GL_NEAREST;
bsalomon@google.com4c883782012-06-04 19:05:11 +00002086
bsalomon@google.comb8670992012-07-25 21:27:09 +00002087 newTexParams.fWrapS = tile_to_gl_wrap(params.getTileModeX());
2088 newTexParams.fWrapT = tile_to_gl_wrap(params.getTileModeY());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002089 memcpy(newTexParams.fSwizzleRGBA,
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002090 GrGLShaderBuilder::GetTexParamSwizzle(texture->config(), this->glCaps()),
bsalomon@google.com4c883782012-06-04 19:05:11 +00002091 sizeof(newTexParams.fSwizzleRGBA));
2092 if (setAll || newTexParams.fFilter != oldTexParams.fFilter) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002093 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002094 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2095 GR_GL_TEXTURE_MAG_FILTER,
2096 newTexParams.fFilter));
2097 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2098 GR_GL_TEXTURE_MIN_FILTER,
2099 newTexParams.fFilter));
2100 }
2101 if (setAll || newTexParams.fWrapS != oldTexParams.fWrapS) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002102 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002103 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2104 GR_GL_TEXTURE_WRAP_S,
2105 newTexParams.fWrapS));
2106 }
2107 if (setAll || newTexParams.fWrapT != oldTexParams.fWrapT) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002108 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002109 GL_CALL(TexParameteri(GR_GL_TEXTURE_2D,
2110 GR_GL_TEXTURE_WRAP_T,
2111 newTexParams.fWrapT));
2112 }
2113 if (this->glCaps().textureSwizzleSupport() &&
2114 (setAll || memcmp(newTexParams.fSwizzleRGBA,
2115 oldTexParams.fSwizzleRGBA,
2116 sizeof(newTexParams.fSwizzleRGBA)))) {
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002117 this->setTextureUnit(unitIdx);
bsalomon@google.com4c883782012-06-04 19:05:11 +00002118 set_tex_swizzle(newTexParams.fSwizzleRGBA,
2119 this->glInterface());
2120 }
bsalomon@google.com34cccde2013-01-04 18:34:30 +00002121 texture->setCachedTexParams(newTexParams, this->getResetTimestamp());
bsalomon@google.com4c883782012-06-04 19:05:11 +00002122}
2123
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002124void GrGpuGL::flushMiscFixedFunctionState() {
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002125
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002126 const GrDrawState& drawState = this->getDrawState();
reed@google.comac10a2d2010-12-22 21:39:39 +00002127
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002128 if (drawState.isDitherState()) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002129 if (kYes_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002130 GL_CALL(Enable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002131 fHWDitherEnabled = kYes_TriState;
2132 }
2133 } else {
2134 if (kNo_TriState != fHWDitherEnabled) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002135 GL_CALL(Disable(GR_GL_DITHER));
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002136 fHWDitherEnabled = kNo_TriState;
reed@google.comac10a2d2010-12-22 21:39:39 +00002137 }
2138 }
2139
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002140 if (drawState.isColorWriteDisabled()) {
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002141 if (kNo_TriState != fHWWriteToColor) {
2142 GL_CALL(ColorMask(GR_GL_FALSE, GR_GL_FALSE,
2143 GR_GL_FALSE, GR_GL_FALSE));
2144 fHWWriteToColor = kNo_TriState;
bsalomon@google.comd302f142011-03-03 13:54:13 +00002145 }
bsalomon@google.com978c8c62012-05-21 14:45:49 +00002146 } else {
2147 if (kYes_TriState != fHWWriteToColor) {
2148 GL_CALL(ColorMask(GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE, GR_GL_TRUE));
2149 fHWWriteToColor = kYes_TriState;
2150 }
bsalomon@google.comd302f142011-03-03 13:54:13 +00002151 }
2152
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002153 if (fHWDrawFace != drawState.getDrawFace()) {
bsalomon@google.coma5d056a2012-03-27 15:59:58 +00002154 switch (this->getDrawState().getDrawFace()) {
tomhudson@google.com93813632011-10-27 20:21:16 +00002155 case GrDrawState::kCCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002156 GL_CALL(Enable(GR_GL_CULL_FACE));
2157 GL_CALL(CullFace(GR_GL_BACK));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002158 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002159 case GrDrawState::kCW_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002160 GL_CALL(Enable(GR_GL_CULL_FACE));
2161 GL_CALL(CullFace(GR_GL_FRONT));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002162 break;
tomhudson@google.com93813632011-10-27 20:21:16 +00002163 case GrDrawState::kBoth_DrawFace:
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002164 GL_CALL(Disable(GR_GL_CULL_FACE));
bsalomon@google.comd302f142011-03-03 13:54:13 +00002165 break;
2166 default:
2167 GrCrash("Unknown draw face.");
2168 }
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +00002169 fHWDrawFace = drawState.getDrawFace();
bsalomon@google.comd302f142011-03-03 13:54:13 +00002170 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002171}
2172
2173void GrGpuGL::notifyVertexBufferBind(const GrGLVertexBuffer* buffer) {
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002174 if (fHWGeometryState.fVertexBuffer != buffer) {
2175 fHWGeometryState.fArrayPtrsDirty = true;
2176 fHWGeometryState.fVertexBuffer = buffer;
2177 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002178}
2179
2180void GrGpuGL::notifyVertexBufferDelete(const GrGLVertexBuffer* buffer) {
reed@google.comac10a2d2010-12-22 21:39:39 +00002181 if (fHWGeometryState.fVertexBuffer == buffer) {
2182 // deleting bound buffer does implied bind to 0
2183 fHWGeometryState.fVertexBuffer = NULL;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002184 fHWGeometryState.fArrayPtrsDirty = true;
reed@google.comac10a2d2010-12-22 21:39:39 +00002185 }
2186}
2187
2188void GrGpuGL::notifyIndexBufferBind(const GrGLIndexBuffer* buffer) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002189 fHWGeometryState.fIndexBuffer = buffer;
reed@google.comac10a2d2010-12-22 21:39:39 +00002190}
2191
2192void GrGpuGL::notifyIndexBufferDelete(const GrGLIndexBuffer* buffer) {
reed@google.comac10a2d2010-12-22 21:39:39 +00002193 if (fHWGeometryState.fIndexBuffer == buffer) {
2194 // deleting bound buffer does implied bind to 0
2195 fHWGeometryState.fIndexBuffer = NULL;
2196 }
2197}
2198
reed@google.comac10a2d2010-12-22 21:39:39 +00002199void GrGpuGL::notifyRenderTargetDelete(GrRenderTarget* renderTarget) {
2200 GrAssert(NULL != renderTarget);
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002201 if (fHWBoundRenderTarget == renderTarget) {
2202 fHWBoundRenderTarget = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +00002203 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002204}
2205
2206void GrGpuGL::notifyTextureDelete(GrGLTexture* texture) {
tomhudson@google.com93813632011-10-27 20:21:16 +00002207 for (int s = 0; s < GrDrawState::kNumStages; ++s) {
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002208 if (fHWBoundTextures[s] == texture) {
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002209 // deleting bound texture does implied bind to 0
bsalomon@google.comc811ea32012-05-21 15:33:09 +00002210 fHWBoundTextures[s] = NULL;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002211 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002212 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002213}
2214
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002215bool GrGpuGL::configToGLFormats(GrPixelConfig config,
2216 bool getSizedInternalFormat,
2217 GrGLenum* internalFormat,
2218 GrGLenum* externalFormat,
2219 GrGLenum* externalType) {
2220 GrGLenum dontCare;
2221 if (NULL == internalFormat) {
2222 internalFormat = &dontCare;
2223 }
2224 if (NULL == externalFormat) {
2225 externalFormat = &dontCare;
2226 }
2227 if (NULL == externalType) {
2228 externalType = &dontCare;
2229 }
2230
reed@google.comac10a2d2010-12-22 21:39:39 +00002231 switch (config) {
bsalomon@google.com0342a852012-08-20 19:22:38 +00002232 case kRGBA_8888_GrPixelConfig:
bsalomon@google.comc4364992011-11-07 15:54:49 +00002233 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002234 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002235 if (getSizedInternalFormat) {
2236 *internalFormat = GR_GL_RGBA8;
2237 } else {
2238 *internalFormat = GR_GL_RGBA;
2239 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002240 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.comc4364992011-11-07 15:54:49 +00002241 break;
bsalomon@google.com0342a852012-08-20 19:22:38 +00002242 case kBGRA_8888_GrPixelConfig:
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002243 if (!this->glCaps().bgraFormatSupport()) {
bsalomon@google.comc4364992011-11-07 15:54:49 +00002244 return false;
2245 }
bsalomon@google.comf7fa8062012-02-14 14:09:57 +00002246 if (this->glCaps().bgraIsInternalFormat()) {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002247 if (getSizedInternalFormat) {
2248 *internalFormat = GR_GL_BGRA8;
2249 } else {
2250 *internalFormat = GR_GL_BGRA;
2251 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002252 } else {
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002253 if (getSizedInternalFormat) {
2254 *internalFormat = GR_GL_RGBA8;
2255 } else {
2256 *internalFormat = GR_GL_RGBA;
2257 }
twiz@google.comb65e0cb2011-03-18 20:41:44 +00002258 }
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002259 *externalFormat = GR_GL_BGRA;
bsalomon@google.com6f379512011-11-16 20:36:03 +00002260 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002261 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002262 case kRGB_565_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002263 *internalFormat = GR_GL_RGB;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002264 *externalFormat = GR_GL_RGB;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002265 if (getSizedInternalFormat) {
2266 if (this->glBinding() == kDesktop_GrGLBinding) {
2267 return false;
2268 } else {
2269 *internalFormat = GR_GL_RGB565;
2270 }
2271 } else {
2272 *internalFormat = GR_GL_RGB;
2273 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002274 *externalType = GR_GL_UNSIGNED_SHORT_5_6_5;
reed@google.comac10a2d2010-12-22 21:39:39 +00002275 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002276 case kRGBA_4444_GrPixelConfig:
twiz@google.com0f31ca72011-03-18 17:38:11 +00002277 *internalFormat = GR_GL_RGBA;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002278 *externalFormat = GR_GL_RGBA;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002279 if (getSizedInternalFormat) {
2280 *internalFormat = GR_GL_RGBA4;
2281 } else {
2282 *internalFormat = GR_GL_RGBA;
2283 }
bsalomon@google.com6f379512011-11-16 20:36:03 +00002284 *externalType = GR_GL_UNSIGNED_SHORT_4_4_4_4;
reed@google.comac10a2d2010-12-22 21:39:39 +00002285 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002286 case kIndex_8_GrPixelConfig:
bsalomon@google.comf6601872012-08-28 21:11:35 +00002287 if (this->getCaps().eightBitPaletteSupport()) {
bsalomon@google.comc312bf92011-03-21 21:10:33 +00002288 *internalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002289 // glCompressedTexImage doesn't take external params
2290 *externalFormat = GR_GL_PALETTE8_RGBA8;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002291 // no sized/unsized internal format distinction here
2292 *internalFormat = GR_GL_PALETTE8_RGBA8;
2293 // unused with CompressedTexImage
bsalomon@google.com32e4d2a2011-12-09 16:14:25 +00002294 *externalType = GR_GL_UNSIGNED_BYTE;
reed@google.comac10a2d2010-12-22 21:39:39 +00002295 } else {
2296 return false;
2297 }
2298 break;
bsalomon@google.com669fdc42011-04-05 17:08:27 +00002299 case kAlpha_8_GrPixelConfig:
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002300 if (this->glCaps().textureRedSupport()) {
2301 *internalFormat = GR_GL_RED;
2302 *externalFormat = GR_GL_RED;
2303 if (getSizedInternalFormat) {
2304 *internalFormat = GR_GL_R8;
2305 } else {
2306 *internalFormat = GR_GL_RED;
2307 }
2308 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002309 } else {
2310 *internalFormat = GR_GL_ALPHA;
robertphillips@google.com443e5a52012-04-30 20:01:21 +00002311 *externalFormat = GR_GL_ALPHA;
2312 if (getSizedInternalFormat) {
2313 *internalFormat = GR_GL_ALPHA8;
2314 } else {
2315 *internalFormat = GR_GL_ALPHA;
2316 }
2317 *externalType = GR_GL_UNSIGNED_BYTE;
bsalomon@google.com280e99f2012-01-05 16:17:38 +00002318 }
reed@google.comac10a2d2010-12-22 21:39:39 +00002319 break;
2320 default:
2321 return false;
2322 }
2323 return true;
2324}
2325
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002326void GrGpuGL::setTextureUnit(int unit) {
tomhudson@google.com93813632011-10-27 20:21:16 +00002327 GrAssert(unit >= 0 && unit < GrDrawState::kNumStages);
bsalomon@google.com49209392012-06-05 15:13:46 +00002328 if (fHWActiveTextureUnitIdx != unit) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002329 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + unit));
bsalomon@google.com49209392012-06-05 15:13:46 +00002330 fHWActiveTextureUnitIdx = unit;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002331 }
2332}
bsalomon@google.com316f99232011-01-13 21:28:12 +00002333
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002334void GrGpuGL::setSpareTextureUnit() {
bsalomon@google.com49209392012-06-05 15:13:46 +00002335 if (fHWActiveTextureUnitIdx != (GR_GL_TEXTURE0 + SPARE_TEX_UNIT)) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002336 GL_CALL(ActiveTexture(GR_GL_TEXTURE0 + SPARE_TEX_UNIT));
bsalomon@google.com49209392012-06-05 15:13:46 +00002337 fHWActiveTextureUnitIdx = SPARE_TEX_UNIT;
bsalomon@google.com8531c1c2011-01-13 19:52:45 +00002338 }
2339}
2340
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002341void GrGpuGL::setBuffers(bool indexed,
2342 int* extraVertexOffset,
2343 int* extraIndexOffset) {
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002344
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002345 GrAssert(NULL != extraVertexOffset);
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002346
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002347 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
2348
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002349 GrGLVertexBuffer* vbuf;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002350 switch (this->getGeomSrc().fVertexSrc) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002351 case kBuffer_GeometrySrcType:
2352 *extraVertexOffset = 0;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002353 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002354 break;
2355 case kArray_GeometrySrcType:
2356 case kReserved_GeometrySrcType:
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002357 this->finalizeReservedVertices();
2358 *extraVertexOffset = geoPoolState.fPoolStartVertex;
2359 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002360 break;
2361 default:
2362 vbuf = NULL; // suppress warning
2363 GrCrash("Unknown geometry src type!");
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002364 }
2365
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002366 GrAssert(NULL != vbuf);
2367 GrAssert(!vbuf->isLocked());
2368 if (fHWGeometryState.fVertexBuffer != vbuf) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002369 GL_CALL(BindBuffer(GR_GL_ARRAY_BUFFER, vbuf->bufferID()));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002370 fHWGeometryState.fArrayPtrsDirty = true;
2371 fHWGeometryState.fVertexBuffer = vbuf;
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002372 }
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002373
2374 if (indexed) {
2375 GrAssert(NULL != extraIndexOffset);
2376
2377 GrGLIndexBuffer* ibuf;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002378 switch (this->getGeomSrc().fIndexSrc) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002379 case kBuffer_GeometrySrcType:
2380 *extraIndexOffset = 0;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002381 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002382 break;
2383 case kArray_GeometrySrcType:
2384 case kReserved_GeometrySrcType:
bsalomon@google.com25fb21f2011-06-21 18:17:25 +00002385 this->finalizeReservedIndices();
2386 *extraIndexOffset = geoPoolState.fPoolStartIndex;
2387 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002388 break;
2389 default:
2390 ibuf = NULL; // suppress warning
2391 GrCrash("Unknown geometry src type!");
2392 }
2393
2394 GrAssert(NULL != ibuf);
2395 GrAssert(!ibuf->isLocked());
2396 if (fHWGeometryState.fIndexBuffer != ibuf) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +00002397 GL_CALL(BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER, ibuf->bufferID()));
bsalomon@google.com1c13c962011-02-14 16:51:21 +00002398 fHWGeometryState.fIndexBuffer = ibuf;
2399 }
2400 }
bsalomon@google.com7acdb8e2011-02-11 14:07:02 +00002401}