blob: 6608c66bec84ca5f47cd5fc52b45f6384435154d [file] [log] [blame]
junov@google.comf93e7172011-03-31 21:26:24 +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.
junov@google.comf93e7172011-03-31 21:26:24 +00006 */
7
bsalomon@google.com5739d2c2012-05-31 15:07:19 +00008#include "GrGpuGL.h"
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.coma469c282012-10-24 18:28:34 +000010#include "GrEffect.h"
tomhudson@google.com07eecdc2012-04-20 18:35:38 +000011#include "GrGLProgramStage.h"
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000012#include "GrGpuVertex.h"
junov@google.comf93e7172011-03-31 21:26:24 +000013
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +000014typedef GrGLUniformManager::UniformHandle UniformHandle;
15static const UniformHandle kInvalidUniformHandle = GrGLUniformManager::kInvalidUniformHandle;
16
junov@google.comf93e7172011-03-31 21:26:24 +000017#define SKIP_CACHE_CHECK true
18#define GR_UINT32_MAX static_cast<uint32_t>(-1)
19
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000020GrGpuGL::ProgramCache::ProgramCache(const GrGLContextInfo& gl)
21 : fCount(0)
22 , fCurrLRUStamp(0)
23 , fGL(gl) {
24}
junov@google.comf93e7172011-03-31 21:26:24 +000025
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000026void GrGpuGL::ProgramCache::abandon() {
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000027 for (int i = 0; i < fCount; ++i) {
28 GrAssert(NULL != fEntries[i].fProgram.get());
29 fEntries[i].fProgram->abandon();
30 fEntries[i].fProgram.reset(NULL);
31 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000032 fCount = 0;
33}
34
bsalomon@google.comcddaf342012-07-30 13:09:05 +000035GrGLProgram* GrGpuGL::ProgramCache::getProgram(const ProgramDesc& desc,
bsalomon@google.coma469c282012-10-24 18:28:34 +000036 const GrEffect** stages) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000037 Entry newEntry;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +000038 newEntry.fKey.setKeyData(desc.asKey());
39
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000040 Entry* entry = fHashCache.find(newEntry.fKey);
41 if (NULL == entry) {
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000042 newEntry.fProgram.reset(GrGLProgram::Create(fGL, desc, stages));
43 if (NULL == newEntry.fProgram.get()) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000044 return NULL;
45 }
46 if (fCount < kMaxEntries) {
47 entry = fEntries + fCount;
48 ++fCount;
49 } else {
50 GrAssert(kMaxEntries == fCount);
51 entry = fEntries;
52 for (int i = 1; i < kMaxEntries; ++i) {
53 if (fEntries[i].fLRUStamp < entry->fLRUStamp) {
54 entry = fEntries + i;
junov@google.comf93e7172011-03-31 21:26:24 +000055 }
junov@google.comf93e7172011-03-31 21:26:24 +000056 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000057 fHashCache.remove(entry->fKey, entry);
junov@google.comf93e7172011-03-31 21:26:24 +000058 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +000059 *entry = newEntry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000060 fHashCache.insert(entry->fKey, entry);
junov@google.comf93e7172011-03-31 21:26:24 +000061 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000062
63 entry->fLRUStamp = fCurrLRUStamp;
64 if (GR_UINT32_MAX == fCurrLRUStamp) {
65 // wrap around! just trash our LRU, one time hit.
66 for (int i = 0; i < fCount; ++i) {
67 fEntries[i].fLRUStamp = 0;
68 }
69 }
70 ++fCurrLRUStamp;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +000071 return entry->fProgram;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000072}
junov@google.comf93e7172011-03-31 21:26:24 +000073
bsalomon@google.com1e257a52011-07-06 19:52:16 +000074////////////////////////////////////////////////////////////////////////////////
75
bsalomon@google.com5739d2c2012-05-31 15:07:19 +000076void GrGpuGL::abandonResources(){
77 INHERITED::abandonResources();
78 fProgramCache->abandon();
79 fHWProgramID = 0;
80}
81
82////////////////////////////////////////////////////////////////////////////////
83
bsalomon@google.com0b77d682011-08-19 13:28:54 +000084#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
85
bsalomon@google.comded4f4b2012-06-28 18:48:06 +000086void GrGpuGL::flushViewMatrix(DrawType type) {
bsalomon@google.com4c883782012-06-04 19:05:11 +000087 const GrGLRenderTarget* rt = static_cast<const GrGLRenderTarget*>(this->getDrawState().getRenderTarget());
88 SkISize viewportSize;
89 const GrGLIRect& viewport = rt->getViewport();
90 viewportSize.set(viewport.fWidth, viewport.fHeight);
junov@google.comf93e7172011-03-31 21:26:24 +000091
bsalomon@google.com4c883782012-06-04 19:05:11 +000092 const GrMatrix& vm = this->getDrawState().getViewMatrix();
93
bsalomon@google.comded4f4b2012-06-28 18:48:06 +000094 if (kStencilPath_DrawType == type) {
bsalomon@google.com05a718c2012-06-29 14:01:53 +000095 if (fHWPathMatrixState.fViewMatrix != vm ||
96 fHWPathMatrixState.fRTSize != viewportSize) {
97 // rescale the coords from skia's "device" coords to GL's normalized coords,
98 // and perform a y-flip.
99 GrMatrix m;
100 m.setScale(GrIntToScalar(2) / rt->width(), GrIntToScalar(-2) / rt->height());
robertphillips@google.com59f46b82012-07-10 17:30:58 +0000101 m.postTranslate(-GR_Scalar1, GR_Scalar1);
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000102 m.preConcat(vm);
103
104 // GL wants a column-major 4x4.
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000105 GrGLfloat mv[] = {
106 // col 0
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000107 GrScalarToFloat(m[GrMatrix::kMScaleX]),
108 GrScalarToFloat(m[GrMatrix::kMSkewY]),
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000109 0,
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000110 GrScalarToFloat(m[GrMatrix::kMPersp0]),
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000111
112 // col 1
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000113 GrScalarToFloat(m[GrMatrix::kMSkewX]),
114 GrScalarToFloat(m[GrMatrix::kMScaleY]),
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000115 0,
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000116 GrScalarToFloat(m[GrMatrix::kMPersp1]),
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000117
118 // col 2
119 0, 0, 0, 0,
120
121 // col3
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000122 GrScalarToFloat(m[GrMatrix::kMTransX]),
123 GrScalarToFloat(m[GrMatrix::kMTransY]),
124 0.0f,
125 GrScalarToFloat(m[GrMatrix::kMPersp2])
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000126 };
127 GL_CALL(MatrixMode(GR_GL_PROJECTION));
bsalomon@google.com05a718c2012-06-29 14:01:53 +0000128 GL_CALL(LoadMatrixf(mv));
129 fHWPathMatrixState.fViewMatrix = vm;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000130 fHWPathMatrixState.fRTSize = viewportSize;
131 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000132 } else if (!fCurrentProgram->fViewMatrix.cheapEqualTo(vm) ||
133 fCurrentProgram->fViewportSize != viewportSize) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000134 GrMatrix m;
135 m.setAll(
bsalomon@google.com4c883782012-06-04 19:05:11 +0000136 GrIntToScalar(2) / viewportSize.fWidth, 0, -GR_Scalar1,
137 0,-GrIntToScalar(2) / viewportSize.fHeight, GR_Scalar1,
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000138 0, 0, GrMatrix::I()[8]);
139 m.setConcat(m, vm);
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000140
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000141 // ES doesn't allow you to pass true to the transpose param,
142 // so do our own transpose
143 GrGLfloat mt[] = {
144 GrScalarToFloat(m[GrMatrix::kMScaleX]),
145 GrScalarToFloat(m[GrMatrix::kMSkewY]),
146 GrScalarToFloat(m[GrMatrix::kMPersp0]),
147 GrScalarToFloat(m[GrMatrix::kMSkewX]),
148 GrScalarToFloat(m[GrMatrix::kMScaleY]),
149 GrScalarToFloat(m[GrMatrix::kMPersp1]),
150 GrScalarToFloat(m[GrMatrix::kMTransX]),
151 GrScalarToFloat(m[GrMatrix::kMTransY]),
152 GrScalarToFloat(m[GrMatrix::kMPersp2])
153 };
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000154 fCurrentProgram->fUniformManager.setMatrix3f(fCurrentProgram->fUniforms.fViewMatrixUni, mt);
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000155 fCurrentProgram->fViewMatrix = vm;
156 fCurrentProgram->fViewportSize = viewportSize;
bsalomon@google.com91961302011-05-09 18:39:58 +0000157 }
junov@google.comf93e7172011-03-31 21:26:24 +0000158}
159
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000160///////////////////////////////////////////////////////////////////////////////
junov@google.com6acc9b32011-05-16 18:32:07 +0000161
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000162// helpers for texture matrices
junov@google.com6acc9b32011-05-16 18:32:07 +0000163
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000164void GrGpuGL::AdjustTextureMatrix(const GrGLTexture* texture,
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000165 GrMatrix* matrix) {
166 GrAssert(NULL != texture);
167 GrAssert(NULL != matrix);
168 GrGLTexture::Orientation orientation = texture->orientation();
169 if (GrGLTexture::kBottomUp_Orientation == orientation) {
170 GrMatrix invY;
171 invY.setAll(GR_Scalar1, 0, 0,
172 0, -GR_Scalar1, GR_Scalar1,
173 0, 0, GrMatrix::I()[8]);
174 matrix->postConcat(invY);
175 } else {
176 GrAssert(GrGLTexture::kTopDown_Orientation == orientation);
junov@google.com6acc9b32011-05-16 18:32:07 +0000177 }
178}
179
bsalomon@google.com288d9542012-10-17 12:53:54 +0000180int GrGpuGL::TextureMatrixOptFlags(const GrGLTexture* texture,
181 const GrSamplerState& sampler) {
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000182 GrAssert(NULL != texture);
bsalomon@google.com288d9542012-10-17 12:53:54 +0000183 GrMatrix matrix;
184 sampler.getTotalMatrix(&matrix);
185
186 bool canBeIndentity = GrGLTexture::kTopDown_Orientation == texture->orientation();
187
188 if (canBeIndentity && matrix.isIdentity()) {
189 return GrGLProgram::StageDesc::kIdentityMatrix_OptFlagBit;
190 } else if (!matrix.hasPerspective()) {
191 return GrGLProgram::StageDesc::kNoPerspective_OptFlagBit;
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000192 }
bsalomon@google.com288d9542012-10-17 12:53:54 +0000193 return 0;
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000194}
195
196///////////////////////////////////////////////////////////////////////////////
197
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000198void GrGpuGL::flushTextureMatrix(int s) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000199 const GrDrawState& drawState = this->getDrawState();
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000200
201 // FIXME: Still assuming only a single texture per custom stage
bsalomon@google.coma469c282012-10-24 18:28:34 +0000202 const GrEffect* stage = drawState.getSampler(s).getCustomStage();
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000203 if (0 == stage->numTextures()) {
204 return;
205 }
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000206 const GrGLTexture* texture = static_cast<const GrGLTexture*>(stage->texture(0));
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000207 if (NULL != texture) {
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000208
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000209 bool orientationChange = fCurrentProgram->fTextureOrientation[s] !=
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000210 texture->orientation();
211
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000212 UniformHandle matrixUni = fCurrentProgram->fUniforms.fStages[s].fTextureMatrixUni;
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000213
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000214 const GrMatrix& hwMatrix = fCurrentProgram->fTextureMatrices[s];
bsalomon@google.com288d9542012-10-17 12:53:54 +0000215 GrMatrix samplerMatrix;
216 drawState.getSampler(s).getTotalMatrix(&samplerMatrix);
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000217
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000218 if (kInvalidUniformHandle != matrixUni &&
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000219 (orientationChange || !hwMatrix.cheapEqualTo(samplerMatrix))) {
junov@google.comf93e7172011-03-31 21:26:24 +0000220
bsalomon@google.com8fe84b52012-03-26 15:24:27 +0000221 GrMatrix m = samplerMatrix;
tomhudson@google.com898e7b52012-06-01 20:42:15 +0000222 AdjustTextureMatrix(texture, &m);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000223
bsalomon@google.com91961302011-05-09 18:39:58 +0000224 // ES doesn't allow you to pass true to the transpose param,
225 // so do our own transpose
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000226 GrGLfloat mt[] = {
227 GrScalarToFloat(m[GrMatrix::kMScaleX]),
228 GrScalarToFloat(m[GrMatrix::kMSkewY]),
229 GrScalarToFloat(m[GrMatrix::kMPersp0]),
230 GrScalarToFloat(m[GrMatrix::kMSkewX]),
231 GrScalarToFloat(m[GrMatrix::kMScaleY]),
232 GrScalarToFloat(m[GrMatrix::kMPersp1]),
233 GrScalarToFloat(m[GrMatrix::kMTransX]),
234 GrScalarToFloat(m[GrMatrix::kMTransY]),
235 GrScalarToFloat(m[GrMatrix::kMPersp2])
bsalomon@google.com91961302011-05-09 18:39:58 +0000236 };
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000237
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000238 fCurrentProgram->fUniformManager.setMatrix3f(matrixUni, mt);
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000239 fCurrentProgram->fTextureMatrices[s] = samplerMatrix;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000240 }
bsalomon@google.com890e3b52012-06-01 19:01:37 +0000241
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000242 fCurrentProgram->fTextureOrientation[s] = texture->orientation();
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000243 }
junov@google.comf93e7172011-03-31 21:26:24 +0000244}
245
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000246void GrGpuGL::flushColor(GrColor color) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000247 const ProgramDesc& desc = fCurrentProgram->getDesc();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000248 const GrDrawState& drawState = this->getDrawState();
249
bsalomon@google.come79c8152012-03-29 19:07:12 +0000250 if (this->getVertexLayout() & kColor_VertexLayoutBit) {
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000251 // color will be specified per-vertex as an attribute
252 // invalidate the const vertex attrib color
bsalomon@google.com8d49d932012-05-21 21:40:12 +0000253 fHWConstAttribColor = GrColor_ILLEGAL;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000254 } else {
bsalomon@google.com85b505b2011-11-07 14:56:51 +0000255 switch (desc.fColorInput) {
256 case ProgramDesc::kAttribute_ColorInput:
bsalomon@google.com255fa162012-05-21 21:44:59 +0000257 if (fHWConstAttribColor != color) {
bsalomon@google.com75347472012-09-17 17:23:21 +0000258 // OpenGL ES only supports the float varieties of glVertexAttrib
259 GrGLfloat c[4];
260 GrColorToRGBAFloat(color, c);
261 GL_CALL(VertexAttrib4fv(GrGLProgram::ColorAttributeIdx(), c));
bsalomon@google.com8d49d932012-05-21 21:40:12 +0000262 fHWConstAttribColor = color;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000263 }
264 break;
bsalomon@google.com85b505b2011-11-07 14:56:51 +0000265 case ProgramDesc::kUniform_ColorInput:
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000266 if (fCurrentProgram->fColor != color) {
bsalomon@google.com75347472012-09-17 17:23:21 +0000267 // OpenGL ES doesn't support unsigned byte varieties of glUniform
268 GrGLfloat c[4];
269 GrColorToRGBAFloat(color, c);
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000270 GrAssert(kInvalidUniformHandle != fCurrentProgram->fUniforms.fColorUni);
271 fCurrentProgram->fUniformManager.set4fv(fCurrentProgram->fUniforms.fColorUni,
272 0, 1, c);
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000273 fCurrentProgram->fColor = color;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000274 }
275 break;
bsalomon@google.com85b505b2011-11-07 14:56:51 +0000276 case ProgramDesc::kSolidWhite_ColorInput:
277 case ProgramDesc::kTransBlack_ColorInput:
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000278 break;
279 default:
280 GrCrash("Unknown color type.");
281 }
282 }
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000283 UniformHandle filterColorUni = fCurrentProgram->fUniforms.fColorFilterUni;
284 if (kInvalidUniformHandle != filterColorUni &&
285 fCurrentProgram->fColorFilterColor != drawState.getColorFilterColor()) {
bsalomon@google.com75347472012-09-17 17:23:21 +0000286 GrGLfloat c[4];
287 GrColorToRGBAFloat(drawState.getColorFilterColor(), c);
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000288 fCurrentProgram->fUniformManager.set4fv(filterColorUni, 0, 1, c);
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000289 fCurrentProgram->fColorFilterColor = drawState.getColorFilterColor();
Scroggo97c88c22011-05-11 14:05:25 +0000290 }
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000291}
292
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000293void GrGpuGL::flushCoverage(GrColor coverage) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000294 const ProgramDesc& desc = fCurrentProgram->getDesc();
caryclark@google.comcf6285b2012-06-06 12:09:01 +0000295 // const GrDrawState& drawState = this->getDrawState();
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000296
297
bsalomon@google.come79c8152012-03-29 19:07:12 +0000298 if (this->getVertexLayout() & kCoverage_VertexLayoutBit) {
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000299 // coverage will be specified per-vertex as an attribute
300 // invalidate the const vertex attrib coverage
bsalomon@google.com8d49d932012-05-21 21:40:12 +0000301 fHWConstAttribCoverage = GrColor_ILLEGAL;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000302 } else {
303 switch (desc.fCoverageInput) {
304 case ProgramDesc::kAttribute_ColorInput:
bsalomon@google.com255fa162012-05-21 21:44:59 +0000305 if (fHWConstAttribCoverage != coverage) {
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000306 // OpenGL ES only supports the float varieties of
307 // glVertexAttrib
bsalomon@google.com75347472012-09-17 17:23:21 +0000308 GrGLfloat c[4];
309 GrColorToRGBAFloat(coverage, c);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000310 GL_CALL(VertexAttrib4fv(GrGLProgram::CoverageAttributeIdx(),
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000311 c));
bsalomon@google.com8d49d932012-05-21 21:40:12 +0000312 fHWConstAttribCoverage = coverage;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000313 }
314 break;
315 case ProgramDesc::kUniform_ColorInput:
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000316 if (fCurrentProgram->fCoverage != coverage) {
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000317 // OpenGL ES doesn't support unsigned byte varieties of
318 // glUniform
bsalomon@google.com75347472012-09-17 17:23:21 +0000319 GrGLfloat c[4];
320 GrColorToRGBAFloat(coverage, c);
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000321 GrAssert(kInvalidUniformHandle != fCurrentProgram->fUniforms.fCoverageUni);
322 fCurrentProgram->fUniformManager.set4fv(fCurrentProgram->fUniforms.fCoverageUni,
323 0, 1, c);
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000324 fCurrentProgram->fCoverage = coverage;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000325 }
326 break;
327 case ProgramDesc::kSolidWhite_ColorInput:
328 case ProgramDesc::kTransBlack_ColorInput:
329 break;
330 default:
331 GrCrash("Unknown coverage type.");
332 }
333 }
334}
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000335
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000336bool GrGpuGL::flushGraphicsState(DrawType type) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000337 const GrDrawState& drawState = this->getDrawState();
338
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000339 // GrGpu::setupClipAndFlushState should have already checked this
340 // and bailed if not true.
341 GrAssert(NULL != drawState.getRenderTarget());
342
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000343 if (kStencilPath_DrawType != type) {
344 this->flushMiscFixedFunctionState();
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000345
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000346 GrBlendCoeff srcCoeff;
347 GrBlendCoeff dstCoeff;
348 BlendOptFlags blendOpts = this->getBlendOpts(false, &srcCoeff, &dstCoeff);
349 if (kSkipDraw_BlendOptFlag & blendOpts) {
350 return false;
351 }
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000352
bsalomon@google.coma469c282012-10-24 18:28:34 +0000353 const GrEffect* customStages [GrDrawState::kNumStages];
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000354 GrGLProgram::Desc desc;
355 this->buildProgram(kDrawPoints_DrawType == type, blendOpts, dstCoeff, customStages, &desc);
356
357 fCurrentProgram.reset(fProgramCache->getProgram(desc, customStages));
358 if (NULL == fCurrentProgram.get()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000359 GrAssert(!"Failed to create program!");
360 return false;
361 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000362 fCurrentProgram.get()->ref();
junov@google.comf93e7172011-03-31 21:26:24 +0000363
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000364 if (fHWProgramID != fCurrentProgram->fProgramID) {
365 GL_CALL(UseProgram(fCurrentProgram->fProgramID));
366 fHWProgramID = fCurrentProgram->fProgramID;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000367 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000368 fCurrentProgram->overrideBlend(&srcCoeff, &dstCoeff);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000369 this->flushBlend(kDrawLines_DrawType == type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000370
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000371 GrColor color;
372 GrColor coverage;
373 if (blendOpts & kEmitTransBlack_BlendOptFlag) {
374 color = 0;
375 coverage = 0;
376 } else if (blendOpts & kEmitCoverage_BlendOptFlag) {
377 color = 0xffffffff;
378 coverage = drawState.getCoverage();
379 } else {
380 color = drawState.getColor();
381 coverage = drawState.getCoverage();
382 }
383 this->flushColor(color);
384 this->flushCoverage(coverage);
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000385
bsalomon@google.com4285acc2012-10-22 14:11:24 +0000386 fCurrentProgram->setData(drawState);
387
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000388 for (int s = 0; s < GrDrawState::kNumStages; ++s) {
389 if (this->isStageEnabled(s)) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000390 this->flushBoundTextureAndParams(s);
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000391
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +0000392 this->flushTextureMatrix(s);
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000393 }
bsalomon@google.com40d92932011-12-13 18:40:47 +0000394 }
junov@google.comf93e7172011-03-31 21:26:24 +0000395 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000396 this->flushStencil(type);
397 this->flushViewMatrix(type);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000398 this->flushScissor();
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000399 this->flushAAState(type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000400
robertphillips@google.com7b112892012-07-31 15:18:21 +0000401 GrIRect* devRect = NULL;
402 GrIRect devClipBounds;
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000403 if (drawState.isClipState()) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000404 fClip->getConservativeBounds(drawState.getRenderTarget(),
robertphillips@google.com7b112892012-07-31 15:18:21 +0000405 &devClipBounds);
406 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000407 }
408 // This must come after textures are flushed because a texture may need
409 // to be msaa-resolved (which will modify bound FBO state).
robertphillips@google.com7b112892012-07-31 15:18:21 +0000410 this->flushRenderTarget(devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000411
junov@google.comf93e7172011-03-31 21:26:24 +0000412 return true;
413}
414
bsalomon@google.com2717d562012-05-07 19:10:52 +0000415#if GR_TEXT_SCALAR_IS_USHORT
416 #define TEXT_COORDS_GL_TYPE GR_GL_UNSIGNED_SHORT
417 #define TEXT_COORDS_ARE_NORMALIZED 1
418#elif GR_TEXT_SCALAR_IS_FLOAT
419 #define TEXT_COORDS_GL_TYPE GR_GL_FLOAT
420 #define TEXT_COORDS_ARE_NORMALIZED 0
421#elif GR_TEXT_SCALAR_IS_FIXED
422 #define TEXT_COORDS_GL_TYPE GR_GL_FIXED
423 #define TEXT_COORDS_ARE_NORMALIZED 0
424#else
425 #error "unknown GR_TEXT_SCALAR type"
426#endif
427
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000428void GrGpuGL::setupGeometry(int* startVertex,
bsalomon@google.com49209392012-06-05 15:13:46 +0000429 int* startIndex,
430 int vertexCount,
431 int indexCount) {
junov@google.comf93e7172011-03-31 21:26:24 +0000432
433 int newColorOffset;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000434 int newCoverageOffset;
tomhudson@google.com93813632011-10-27 20:21:16 +0000435 int newTexCoordOffsets[GrDrawState::kMaxTexCoords];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000436 int newEdgeOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000437
bsalomon@google.come79c8152012-03-29 19:07:12 +0000438 GrVertexLayout currLayout = this->getVertexLayout();
439
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000440 GrGLsizei newStride = VertexSizeAndOffsetsByIdx(
bsalomon@google.come79c8152012-03-29 19:07:12 +0000441 currLayout,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000442 newTexCoordOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000443 &newColorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000444 &newCoverageOffset,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000445 &newEdgeOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000446 int oldColorOffset;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000447 int oldCoverageOffset;
tomhudson@google.com93813632011-10-27 20:21:16 +0000448 int oldTexCoordOffsets[GrDrawState::kMaxTexCoords];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000449 int oldEdgeOffset;
450
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000451 GrGLsizei oldStride = VertexSizeAndOffsetsByIdx(
452 fHWGeometryState.fVertexLayout,
453 oldTexCoordOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000454 &oldColorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000455 &oldCoverageOffset,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000456 &oldEdgeOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000457 bool indexed = NULL != startIndex;
458
459 int extraVertexOffset;
460 int extraIndexOffset;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000461 this->setBuffers(indexed, &extraVertexOffset, &extraIndexOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000462
463 GrGLenum scalarType;
464 bool texCoordNorm;
bsalomon@google.come79c8152012-03-29 19:07:12 +0000465 if (currLayout & kTextFormat_VertexLayoutBit) {
bsalomon@google.com2717d562012-05-07 19:10:52 +0000466 scalarType = TEXT_COORDS_GL_TYPE;
467 texCoordNorm = SkToBool(TEXT_COORDS_ARE_NORMALIZED);
junov@google.comf93e7172011-03-31 21:26:24 +0000468 } else {
bsalomon@google.com2717d562012-05-07 19:10:52 +0000469 GR_STATIC_ASSERT(GR_SCALAR_IS_FLOAT);
470 scalarType = GR_GL_FLOAT;
junov@google.comf93e7172011-03-31 21:26:24 +0000471 texCoordNorm = false;
472 }
473
474 size_t vertexOffset = (*startVertex + extraVertexOffset) * newStride;
475 *startVertex = 0;
476 if (indexed) {
477 *startIndex += extraIndexOffset;
478 }
479
480 // all the Pointers must be set if any of these are true
481 bool allOffsetsChange = fHWGeometryState.fArrayPtrsDirty ||
482 vertexOffset != fHWGeometryState.fVertexOffset ||
483 newStride != oldStride;
484
485 // position and tex coord offsets change if above conditions are true
486 // or the type/normalization changed based on text vs nontext type coords.
487 bool posAndTexChange = allOffsetsChange ||
bsalomon@google.com2717d562012-05-07 19:10:52 +0000488 (((TEXT_COORDS_GL_TYPE != GR_GL_FLOAT) || TEXT_COORDS_ARE_NORMALIZED) &&
junov@google.comf93e7172011-03-31 21:26:24 +0000489 (kTextFormat_VertexLayoutBit &
bsalomon@google.come79c8152012-03-29 19:07:12 +0000490 (fHWGeometryState.fVertexLayout ^ currLayout)));
junov@google.comf93e7172011-03-31 21:26:24 +0000491
492 if (posAndTexChange) {
bsalomon@google.com91961302011-05-09 18:39:58 +0000493 int idx = GrGLProgram::PositionAttributeIdx();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000494 GL_CALL(VertexAttribPointer(idx, 2, scalarType, false, newStride,
bsalomon@google.com91961302011-05-09 18:39:58 +0000495 (GrGLvoid*)vertexOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000496 fHWGeometryState.fVertexOffset = vertexOffset;
497 }
498
tomhudson@google.com93813632011-10-27 20:21:16 +0000499 for (int t = 0; t < GrDrawState::kMaxTexCoords; ++t) {
junov@google.comf93e7172011-03-31 21:26:24 +0000500 if (newTexCoordOffsets[t] > 0) {
501 GrGLvoid* texCoordOffset = (GrGLvoid*)(vertexOffset + newTexCoordOffsets[t]);
bsalomon@google.com91961302011-05-09 18:39:58 +0000502 int idx = GrGLProgram::TexCoordAttributeIdx(t);
junov@google.comf93e7172011-03-31 21:26:24 +0000503 if (oldTexCoordOffsets[t] <= 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000504 GL_CALL(EnableVertexAttribArray(idx));
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000505 GL_CALL(VertexAttribPointer(idx, 2, scalarType, texCoordNorm,
bsalomon@google.com91961302011-05-09 18:39:58 +0000506 newStride, texCoordOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000507 } else if (posAndTexChange ||
508 newTexCoordOffsets[t] != oldTexCoordOffsets[t]) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000509 GL_CALL(VertexAttribPointer(idx, 2, scalarType, texCoordNorm,
bsalomon@google.com91961302011-05-09 18:39:58 +0000510 newStride, texCoordOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000511 }
512 } else if (oldTexCoordOffsets[t] > 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000513 GL_CALL(DisableVertexAttribArray(GrGLProgram::TexCoordAttributeIdx(t)));
junov@google.comf93e7172011-03-31 21:26:24 +0000514 }
515 }
516
517 if (newColorOffset > 0) {
518 GrGLvoid* colorOffset = (int8_t*)(vertexOffset + newColorOffset);
bsalomon@google.com91961302011-05-09 18:39:58 +0000519 int idx = GrGLProgram::ColorAttributeIdx();
junov@google.comf93e7172011-03-31 21:26:24 +0000520 if (oldColorOffset <= 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000521 GL_CALL(EnableVertexAttribArray(idx));
522 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
junov@google.comf93e7172011-03-31 21:26:24 +0000523 true, newStride, colorOffset));
524 } else if (allOffsetsChange || newColorOffset != oldColorOffset) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000525 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
junov@google.comf93e7172011-03-31 21:26:24 +0000526 true, newStride, colorOffset));
527 }
528 } else if (oldColorOffset > 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000529 GL_CALL(DisableVertexAttribArray(GrGLProgram::ColorAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000530 }
531
bsalomon@google.coma3108262011-10-10 14:08:47 +0000532 if (newCoverageOffset > 0) {
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000533 GrGLvoid* coverageOffset = (int8_t*)(vertexOffset + newCoverageOffset);
bsalomon@google.coma3108262011-10-10 14:08:47 +0000534 int idx = GrGLProgram::CoverageAttributeIdx();
535 if (oldCoverageOffset <= 0) {
536 GL_CALL(EnableVertexAttribArray(idx));
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000537 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000538 true, newStride, coverageOffset));
539 } else if (allOffsetsChange || newCoverageOffset != oldCoverageOffset) {
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000540 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000541 true, newStride, coverageOffset));
542 }
543 } else if (oldCoverageOffset > 0) {
544 GL_CALL(DisableVertexAttribArray(GrGLProgram::CoverageAttributeIdx()));
545 }
546
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000547 if (newEdgeOffset > 0) {
548 GrGLvoid* edgeOffset = (int8_t*)(vertexOffset + newEdgeOffset);
549 int idx = GrGLProgram::EdgeAttributeIdx();
550 if (oldEdgeOffset <= 0) {
551 GL_CALL(EnableVertexAttribArray(idx));
552 GL_CALL(VertexAttribPointer(idx, 4, scalarType,
553 false, newStride, edgeOffset));
554 } else if (allOffsetsChange || newEdgeOffset != oldEdgeOffset) {
555 GL_CALL(VertexAttribPointer(idx, 4, scalarType,
556 false, newStride, edgeOffset));
557 }
558 } else if (oldEdgeOffset > 0) {
559 GL_CALL(DisableVertexAttribArray(GrGLProgram::EdgeAttributeIdx()));
560 }
561
bsalomon@google.come79c8152012-03-29 19:07:12 +0000562 fHWGeometryState.fVertexLayout = currLayout;
junov@google.comf93e7172011-03-31 21:26:24 +0000563 fHWGeometryState.fArrayPtrsDirty = false;
564}
565
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000566namespace {
567
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000568void setup_custom_stage(GrGLProgram::Desc::StageDesc* stage,
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000569 const GrSamplerState& sampler,
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000570 const GrGLCaps& caps,
bsalomon@google.coma469c282012-10-24 18:28:34 +0000571 const GrEffect** customStages,
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000572 GrGLProgram* program, int index) {
bsalomon@google.coma469c282012-10-24 18:28:34 +0000573 const GrEffect* customStage = sampler.getCustomStage();
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000574 if (customStage) {
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000575 const GrProgramStageFactory& factory = customStage->getFactory();
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000576 stage->fCustomStageKey = factory.glStageKey(*customStage, caps);
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000577 customStages[index] = customStage;
578 } else {
579 stage->fCustomStageKey = 0;
580 customStages[index] = NULL;
581 }
582}
583
584}
585
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000586void GrGpuGL::buildProgram(bool isPoints,
bsalomon@google.com49209392012-06-05 15:13:46 +0000587 BlendOptFlags blendOpts,
588 GrBlendCoeff dstCoeff,
bsalomon@google.coma469c282012-10-24 18:28:34 +0000589 const GrEffect** customStages,
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000590 ProgramDesc* desc) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000591 const GrDrawState& drawState = this->getDrawState();
junov@google.comf93e7172011-03-31 21:26:24 +0000592
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000593 // This should already have been caught
594 GrAssert(!(kSkipDraw_BlendOptFlag & blendOpts));
595
596 bool skipCoverage = SkToBool(blendOpts & kEmitTransBlack_BlendOptFlag);
597
598 bool skipColor = SkToBool(blendOpts & (kEmitTransBlack_BlendOptFlag |
599 kEmitCoverage_BlendOptFlag));
600
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000601 // The descriptor is used as a cache key. Thus when a field of the
602 // descriptor will not affect program generation (because of the vertex
603 // layout in use or other descriptor field settings) it should be set
604 // to a canonical value to avoid duplicate programs with different keys.
605
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000606 // Must initialize all fields or cache will have false negatives!
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000607 desc->fVertexLayout = this->getVertexLayout();
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000608
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000609 desc->fEmitsPointSize = isPoints;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000610
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000611 bool requiresAttributeColors = !skipColor &&
612 SkToBool(desc->fVertexLayout & kColor_VertexLayoutBit);
613 bool requiresAttributeCoverage = !skipCoverage &&
614 SkToBool(desc->fVertexLayout & kCoverage_VertexLayoutBit);
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000615
616 // fColorInput/fCoverageInput records how colors are specified for the.
617 // program. So we strip the bits from the layout to avoid false negatives
618 // when searching for an existing program in the cache.
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000619 desc->fVertexLayout &= ~(kColor_VertexLayoutBit | kCoverage_VertexLayoutBit);
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000620
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000621 desc->fColorFilterXfermode = skipColor ?
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000622 SkXfermode::kDst_Mode :
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000623 drawState.getColorFilterMode();
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000624
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000625 // no reason to do edge aa or look at per-vertex coverage if coverage is
626 // ignored
627 if (skipCoverage) {
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000628 desc->fVertexLayout &= ~(kEdge_VertexLayoutBit | kCoverage_VertexLayoutBit);
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000629 }
630
631 bool colorIsTransBlack = SkToBool(blendOpts & kEmitTransBlack_BlendOptFlag);
632 bool colorIsSolidWhite = (blendOpts & kEmitCoverage_BlendOptFlag) ||
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000633 (!requiresAttributeColors && 0xffffffff == drawState.getColor());
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000634 if (GR_AGGRESSIVE_SHADER_OPTS && colorIsTransBlack) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000635 desc->fColorInput = ProgramDesc::kTransBlack_ColorInput;
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000636 } else if (GR_AGGRESSIVE_SHADER_OPTS && colorIsSolidWhite) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000637 desc->fColorInput = ProgramDesc::kSolidWhite_ColorInput;
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000638 } else if (GR_GL_NO_CONSTANT_ATTRIBUTES && !requiresAttributeColors) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000639 desc->fColorInput = ProgramDesc::kUniform_ColorInput;
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000640 } else {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000641 desc->fColorInput = ProgramDesc::kAttribute_ColorInput;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000642 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000643
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000644 bool covIsSolidWhite = !requiresAttributeCoverage && 0xffffffff == drawState.getCoverage();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000645
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000646 if (skipCoverage) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000647 desc->fCoverageInput = ProgramDesc::kTransBlack_ColorInput;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000648 } else if (covIsSolidWhite) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000649 desc->fCoverageInput = ProgramDesc::kSolidWhite_ColorInput;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000650 } else if (GR_GL_NO_CONSTANT_ATTRIBUTES && !requiresAttributeCoverage) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000651 desc->fCoverageInput = ProgramDesc::kUniform_ColorInput;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000652 } else {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000653 desc->fCoverageInput = ProgramDesc::kAttribute_ColorInput;
bsalomon@google.com2401ae82012-01-17 21:03:05 +0000654 }
junov@google.comf93e7172011-03-31 21:26:24 +0000655
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000656 int lastEnabledStage = -1;
657
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000658 if (!skipCoverage && (desc->fVertexLayout &GrDrawTarget::kEdge_VertexLayoutBit)) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000659 desc->fVertexEdgeType = drawState.getVertexEdgeType();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000660 } else {
661 // use canonical value when not set to avoid cache misses
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000662 desc->fVertexEdgeType = GrDrawState::kHairLine_EdgeType;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000663 }
664
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000665 for (int s = 0; s < GrDrawState::kNumStages; ++s) {
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000666 StageDesc& stage = desc->fStages[s];
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000667
668 stage.fOptFlags = 0;
669 stage.setEnabled(this->isStageEnabled(s));
670
671 bool skip = s < drawState.getFirstCoverageStage() ? skipColor :
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000672 skipCoverage;
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000673
674 if (!skip && stage.isEnabled()) {
675 lastEnabledStage = s;
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000676 const GrSamplerState& sampler = drawState.getSampler(s);
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000677 // FIXME: Still assuming one texture per custom stage
bsalomon@google.coma469c282012-10-24 18:28:34 +0000678 const GrEffect* customStage = drawState.getSampler(s).getCustomStage();
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000679
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000680 if (customStage->numTextures() > 0) {
681 const GrGLTexture* texture =
682 static_cast<const GrGLTexture*>(customStage->texture(0));
683 GrMatrix samplerMatrix;
684 sampler.getTotalMatrix(&samplerMatrix);
685 if (NULL != texture) {
686 // We call this helper function rather then simply checking the client-specified
687 // texture matrix. This is because we may have to concat a y-inversion to account
688 // for texture orientation.
689 stage.fOptFlags |= TextureMatrixOptFlags(texture, sampler);
690 }
691 } else {
692 // Set identity to do the minimal amount of extra work for the no texture case.
693 // This will go away when custom stages manage their own texture matrix.
694 stage.fOptFlags |= StageDesc::kIdentityMatrix_OptFlagBit;
695 }
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000696 setup_custom_stage(&stage, sampler, this->glCaps(), customStages,
697 fCurrentProgram.get(), s);
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000698
junov@google.comf93e7172011-03-31 21:26:24 +0000699 } else {
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000700 stage.fOptFlags = 0;
tomhudson@google.com07eecdc2012-04-20 18:35:38 +0000701 stage.fCustomStageKey = 0;
702 customStages[s] = NULL;
junov@google.comf93e7172011-03-31 21:26:24 +0000703 }
704 }
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000705
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000706 desc->fDualSrcOutput = ProgramDesc::kNone_DualSrcOutput;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000707
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000708 // Currently the experimental GS will only work with triangle prims (and it doesn't do anything
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000709 // other than pass through values from the VS to the FS anyway).
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000710#if 0 && GR_GL_EXPERIMENTAL_GS
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000711 desc->fExperimentalGS = this->getCaps().fGeometryShaderSupport;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000712#endif
713
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000714 // We want to avoid generating programs with different "first cov stage" values when they would
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000715 // compute the same result. We set field in the desc to kNumStages when either there are no
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000716 // coverage stages or the distinction between coverage and color is immaterial.
bsalomon@google.com88939ae2011-12-14 15:58:11 +0000717 int firstCoverageStage = GrDrawState::kNumStages;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000718 desc->fFirstCoverageStage = GrDrawState::kNumStages;
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000719 bool hasCoverage = drawState.getFirstCoverageStage() <= lastEnabledStage;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000720 if (hasCoverage) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000721 firstCoverageStage = drawState.getFirstCoverageStage();
bsalomon@google.coma3108262011-10-10 14:08:47 +0000722 }
723
724 // other coverage inputs
725 if (!hasCoverage) {
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000726 hasCoverage = requiresAttributeCoverage ||
727 (desc->fVertexLayout & GrDrawTarget::kEdge_VertexLayoutBit);
bsalomon@google.coma3108262011-10-10 14:08:47 +0000728 }
729
730 if (hasCoverage) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000731 // color filter is applied between color/coverage computation
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000732 if (SkXfermode::kDst_Mode != desc->fColorFilterXfermode) {
733 desc->fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000734 }
735
bsalomon@google.comf6601872012-08-28 21:11:35 +0000736 if (this->getCaps().dualSourceBlendingSupport() &&
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000737 !(blendOpts & (kEmitCoverage_BlendOptFlag | kCoverageAsAlpha_BlendOptFlag))) {
bsalomon@google.com47059542012-06-06 20:51:20 +0000738 if (kZero_GrBlendCoeff == dstCoeff) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000739 // write the coverage value to second color
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000740 desc->fDualSrcOutput = ProgramDesc::kCoverage_DualSrcOutput;
741 desc->fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com47059542012-06-06 20:51:20 +0000742 } else if (kSA_GrBlendCoeff == dstCoeff) {
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000743 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially covered.
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000744 desc->fDualSrcOutput = ProgramDesc::kCoverageISA_DualSrcOutput;
745 desc->fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com47059542012-06-06 20:51:20 +0000746 } else if (kSC_GrBlendCoeff == dstCoeff) {
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000747 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially covered.
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000748 desc->fDualSrcOutput = ProgramDesc::kCoverageISC_DualSrcOutput;
749 desc->fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000750 }
751 }
752 }
junov@google.comf93e7172011-03-31 21:26:24 +0000753}