blob: feb6a1f163e5da5fe008c796bc443260330a1107 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
junov@google.comf93e7172011-03-31 21:26:24 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
junov@google.comf93e7172011-03-31 21:26:24 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
junov@google.comf93e7172011-03-31 21:26:24 +000010#include "GrBinHashKey.h"
junov@google.comf93e7172011-03-31 21:26:24 +000011#include "GrGLProgram.h"
12#include "GrGpuGLShaders.h"
13#include "GrGpuVertex.h"
junov@google.comf93e7172011-03-31 21:26:24 +000014#include "GrNoncopyable.h"
15#include "GrStringBuilder.h"
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +000016#include "GrRandom.h"
junov@google.comf93e7172011-03-31 21:26:24 +000017
junov@google.comf93e7172011-03-31 21:26:24 +000018#define SKIP_CACHE_CHECK true
19#define GR_UINT32_MAX static_cast<uint32_t>(-1)
20
junov@google.comf93e7172011-03-31 21:26:24 +000021#include "GrTHashCache.h"
22
23class GrGpuGLShaders::ProgramCache : public ::GrNoncopyable {
24private:
25 class Entry;
26
junov@google.comf7c00f62011-08-18 18:15:16 +000027 typedef GrBinHashKey<Entry, GrGLProgram::kProgramKeySize> ProgramHashKey;
junov@google.comf93e7172011-03-31 21:26:24 +000028
29 class Entry : public ::GrNoncopyable {
30 public:
31 Entry() {}
junov@google.comf93e7172011-03-31 21:26:24 +000032 void copyAndTakeOwnership(Entry& entry) {
33 fProgramData.copyAndTakeOwnership(entry.fProgramData);
junov@google.comf7c00f62011-08-18 18:15:16 +000034 fKey = entry.fKey; // ownership transfer
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +000035 fLRUStamp = entry.fLRUStamp;
junov@google.comf93e7172011-03-31 21:26:24 +000036 }
37
38 public:
39 int compare(const ProgramHashKey& key) const { return fKey.compare(key); }
40
41 public:
42 GrGLProgram::CachedData fProgramData;
43 ProgramHashKey fKey;
44 unsigned int fLRUStamp;
45 };
46
47 GrTHashTable<Entry, ProgramHashKey, 8> fHashCache;
48
bsalomon@google.com2d9ddf92011-05-11 16:52:59 +000049 // We may have kMaxEntries+1 shaders in the GL context because
50 // we create a new shader before evicting from the cache.
junov@google.comf93e7172011-03-31 21:26:24 +000051 enum {
52 kMaxEntries = 32
53 };
bsalomon@google.com4fa66942011-09-20 19:06:12 +000054 Entry fEntries[kMaxEntries];
55 int fCount;
56 unsigned int fCurrLRUStamp;
57 const GrGLInterface* fGL;
58 GrGLProgram::GLSLVersion fGLSLVersion;
59
junov@google.comf93e7172011-03-31 21:26:24 +000060public:
bsalomon@google.com4fa66942011-09-20 19:06:12 +000061 ProgramCache(const GrGLInterface* gl,
62 GrGLProgram::GLSLVersion glslVersion)
junov@google.comf93e7172011-03-31 21:26:24 +000063 : fCount(0)
bsalomon@google.com0b77d682011-08-19 13:28:54 +000064 , fCurrLRUStamp(0)
bsalomon@google.com4fa66942011-09-20 19:06:12 +000065 , fGL(gl)
66 , fGLSLVersion(glslVersion) {
junov@google.comf93e7172011-03-31 21:26:24 +000067 }
68
69 ~ProgramCache() {
70 for (int i = 0; i < fCount; ++i) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +000071 GrGpuGLShaders::DeleteProgram(fGL, &fEntries[i].fProgramData);
junov@google.comf93e7172011-03-31 21:26:24 +000072 }
73 }
74
75 void abandon() {
76 fCount = 0;
77 }
78
79 void invalidateViewMatrices() {
80 for (int i = 0; i < fCount; ++i) {
81 // set to illegal matrix
82 fEntries[i].fProgramData.fViewMatrix = GrMatrix::InvalidMatrix();
83 }
84 }
85
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +000086 GrGLProgram::CachedData* getProgramData(const GrGLProgram& desc) {
bsalomon@google.com2d9ddf92011-05-11 16:52:59 +000087 Entry newEntry;
junov@google.comf7c00f62011-08-18 18:15:16 +000088 newEntry.fKey.setKeyData(desc.keyData());
89
bsalomon@google.com2d9ddf92011-05-11 16:52:59 +000090 Entry* entry = fHashCache.find(newEntry.fKey);
junov@google.comf93e7172011-03-31 21:26:24 +000091 if (NULL == entry) {
bsalomon@google.com4fa66942011-09-20 19:06:12 +000092 if (!desc.genProgram(fGL, fGLSLVersion, &newEntry.fProgramData)) {
bsalomon@google.com2d9ddf92011-05-11 16:52:59 +000093 return NULL;
94 }
junov@google.comf93e7172011-03-31 21:26:24 +000095 if (fCount < kMaxEntries) {
96 entry = fEntries + fCount;
97 ++fCount;
98 } else {
99 GrAssert(kMaxEntries == fCount);
100 entry = fEntries;
101 for (int i = 1; i < kMaxEntries; ++i) {
102 if (fEntries[i].fLRUStamp < entry->fLRUStamp) {
103 entry = fEntries + i;
104 }
105 }
106 fHashCache.remove(entry->fKey, entry);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000107 GrGpuGLShaders::DeleteProgram(fGL, &entry->fProgramData);
junov@google.comf93e7172011-03-31 21:26:24 +0000108 }
bsalomon@google.com2d9ddf92011-05-11 16:52:59 +0000109 entry->copyAndTakeOwnership(newEntry);
junov@google.comf93e7172011-03-31 21:26:24 +0000110 fHashCache.insert(entry->fKey, entry);
111 }
112
113 entry->fLRUStamp = fCurrLRUStamp;
114 if (GR_UINT32_MAX == fCurrLRUStamp) {
115 // wrap around! just trash our LRU, one time hit.
116 for (int i = 0; i < fCount; ++i) {
117 fEntries[i].fLRUStamp = 0;
118 }
119 }
120 ++fCurrLRUStamp;
121 return &entry->fProgramData;
122 }
123};
124
junov@google.com53a55842011-06-08 22:55:10 +0000125void GrGpuGLShaders::abandonResources(){
126 INHERITED::abandonResources();
127 fProgramCache->abandon();
128}
129
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000130void GrGpuGLShaders::DeleteProgram(const GrGLInterface* gl,
131 CachedData* programData) {
132 GR_GL_CALL(gl, DeleteShader(programData->fVShaderID));
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000133 if (programData->fGShaderID) {
134 GR_GL_CALL(gl, DeleteShader(programData->fGShaderID));
135 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000136 GR_GL_CALL(gl, DeleteShader(programData->fFShaderID));
137 GR_GL_CALL(gl, DeleteProgram(programData->fProgramID));
junov@google.comf93e7172011-03-31 21:26:24 +0000138 GR_DEBUGCODE(memset(programData, 0, sizeof(*programData));)
139}
140
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000141////////////////////////////////////////////////////////////////////////////////
142
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000143#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
144
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000145namespace {
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000146
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000147GrGLProgram::GLSLVersion get_glsl_version(GrGLBinding binding,
148 const GrGLInterface* gl) {
149 GrGLSLVersion ver = GrGLGetGLSLVersion(gl);
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000150 switch (binding) {
151 case kDesktop_GrGLBinding:
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000152 GrAssert(ver >= GR_GLSL_VER(1,20));
153 if (ver >= GR_GLSL_VER(1,50)) {
154 return GrGLProgram::k150_GLSLVersion;
155 } else if (ver >= GR_GLSL_VER(1,30)) {
156 return GrGLProgram::k130_GLSLVersion;
157 } else {
158 return GrGLProgram::k120_GLSLVersion;
159 }
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000160 case kES2_GrGLBinding:
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000161 // version 1.00 of ES GLSL based on ver 1.20 of desktop GLSL
162 GrAssert(ver >= GR_GL_VER(1,00));
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000163 return GrGLProgram::k120_GLSLVersion;
164 default:
165 GrCrash("Attempting to get GLSL version in unknown or fixed-"
166 "function GL binding.");
167 return GrGLProgram::k120_GLSLVersion; // suppress warning
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000168 }
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000169}
170
171template <typename T>
172T random_val(GrRandom* r, T count) {
173 return (T)(int)(r->nextF() * count);
174}
175
176}
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000177
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000178bool GrGpuGLShaders::programUnitTest() {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000179
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000180 GrGLProgram::GLSLVersion glslVersion =
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000181 get_glsl_version(this->glBinding(), this->glInterface());
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000182 static const int STAGE_OPTS[] = {
183 0,
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000184 StageDesc::kNoPerspective_OptFlagBit,
185 StageDesc::kIdentity_CoordMapping
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000186 };
187 GrGLProgram program;
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000188 ProgramDesc& pdesc = program.fProgramDesc;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000189
190 static const int NUM_TESTS = 512;
191
192 // GrRandoms nextU() values have patterns in the low bits
193 // So using nextU() % array_count might never take some values.
194 GrRandom random;
195 for (int t = 0; t < NUM_TESTS; ++t) {
196
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000197#if 0
198 GrPrintf("\nTest Program %d\n-------------\n", t);
199 static const int stop = -1;
200 if (t == stop) {
201 int breakpointhere = 9;
202 }
203#endif
204
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000205 pdesc.fVertexLayout = 0;
206 pdesc.fEmitsPointSize = random.nextF() > .5f;
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000207 pdesc.fColorType = static_cast<int>(random.nextF() *
208 ProgramDesc::kColorTypeCnt);
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000209
210 int idx = (int)(random.nextF() * (SkXfermode::kCoeffModesCnt));
211 pdesc.fColorFilterXfermode = (SkXfermode::Mode)idx;
212
213 idx = (int)(random.nextF() * (kNumStages+1));
214 pdesc.fFirstCoverageStage = idx;
215
bsalomon@google.coma3108262011-10-10 14:08:47 +0000216 pdesc.fVertexLayout |= (random.nextF() > .5f) ?
217 GrDrawTarget::kCoverage_VertexLayoutBit :
218 0;
219
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000220#if GR_GL_EXPERIMENTAL_GS
bsalomon@google.com6f92f182011-09-29 15:05:48 +0000221 pdesc.fExperimentalGS = this->getCaps().fGeometryShaderSupport &&
222 random.nextF() > .5f;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000223#endif
224
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000225 bool edgeAA = random.nextF() > .5f;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000226 if (edgeAA) {
227 bool vertexEdgeAA = random.nextF() > .5f;
228 if (vertexEdgeAA) {
229 pdesc.fVertexLayout |= GrDrawTarget::kEdge_VertexLayoutBit;
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000230 if (this->getCaps().fShaderDerivativeSupport) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000231 pdesc.fVertexEdgeType = random.nextF() > 0.5f ?
232 kHairQuad_EdgeType :
233 kHairLine_EdgeType;
234 } else {
235 pdesc.fVertexEdgeType = kHairLine_EdgeType;
236 }
237 pdesc.fEdgeAANumEdges = 0;
238 } else {
bsalomon@google.coma3108262011-10-10 14:08:47 +0000239 pdesc.fEdgeAANumEdges = static_cast<int>(1 + random.nextF() *
240 this->getMaxEdges());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000241 pdesc.fEdgeAAConcave = random.nextF() > .5f;
242 }
243 } else {
244 pdesc.fEdgeAANumEdges = 0;
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000245 }
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000246
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000247 if (this->getCaps().fDualSourceBlendingSupport) {
tomhudson@google.com0d831722011-06-02 15:37:14 +0000248 pdesc.fDualSrcOutput =
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000249 (ProgramDesc::DualSrcOutput)
250 (int)(random.nextF() * ProgramDesc::kDualSrcOutputCnt);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000251 } else {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000252 pdesc.fDualSrcOutput = ProgramDesc::kNone_DualSrcOutput;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000253 }
254
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000255 for (int s = 0; s < kNumStages; ++s) {
256 // enable the stage?
257 if (random.nextF() > .5f) {
258 // use separate tex coords?
259 if (random.nextF() > .5f) {
260 int t = (int)(random.nextF() * kMaxTexCoords);
261 pdesc.fVertexLayout |= StageTexCoordVertexLayoutBit(s, t);
262 } else {
263 pdesc.fVertexLayout |= StagePosAsTexCoordVertexLayoutBit(s);
264 }
265 }
266 // use text-formatted verts?
267 if (random.nextF() > .5f) {
268 pdesc.fVertexLayout |= kTextFormat_VertexLayoutBit;
269 }
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000270 idx = (int)(random.nextF() * GR_ARRAY_COUNT(STAGE_OPTS));
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000271 StageDesc& stage = pdesc.fStages[s];
272 stage.fOptFlags = STAGE_OPTS[idx];
273 stage.fModulation = random_val(&random, StageDesc::kModulationCnt);
274 stage.fCoordMapping = random_val(&random, StageDesc::kCoordMappingCnt);
275 stage.fFetchMode = random_val(&random, StageDesc::kFetchModeCnt);
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000276 // convolution shaders don't work with persp tex matrix
277 if (stage.fFetchMode == StageDesc::kConvolution_FetchMode) {
278 stage.fOptFlags |= StageDesc::kNoPerspective_OptFlagBit;
279 }
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000280 stage.setEnabled(VertexUsesStage(s, pdesc.fVertexLayout));
bsalomon@google.com9d12f5c2011-09-29 18:08:18 +0000281 stage.fKernelWidth = static_cast<int8_t>(4 * random.nextF() + 2);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000282 }
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000283 CachedData cachedData;
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000284 if (!program.genProgram(this->glInterface(),
285 glslVersion,
286 &cachedData)) {
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000287 return false;
288 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000289 DeleteProgram(this->glInterface(), &cachedData);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000290 }
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000291 return true;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000292}
293
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000294namespace {
295GrGLBinding get_binding_in_use(const GrGLInterface* gl) {
296 if (gl->supportsDesktop()) {
297 return kDesktop_GrGLBinding;
298 } else {
299 GrAssert(gl->supportsES2());
300 return kES2_GrGLBinding;
301 }
302}
303}
304
305GrGpuGLShaders::GrGpuGLShaders(const GrGLInterface* gl)
306 : GrGpuGL(gl, get_binding_in_use(gl)) {
junov@google.comf93e7172011-03-31 21:26:24 +0000307
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000308 GrGLProgram::GLSLVersion glslVersion =
309 get_glsl_version(this->glBinding(), gl);
310
311 // Enable supported shader-releated caps
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000312 fCaps.fShaderSupport = true;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000313 fCaps.fSupportPerVertexCoverage = true;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000314 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000315 fCaps.fDualSourceBlendingSupport =
bsalomon@google.comc82b8892011-09-22 14:10:33 +0000316 this->glVersion() >= GR_GL_VER(3,3) ||
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000317 this->hasExtension("GL_ARB_blend_func_extended");
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000318 fCaps.fShaderDerivativeSupport = true;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000319 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
320 fCaps.fGeometryShaderSupport =
321 this->glVersion() >= GR_GL_VER(3,2) &&
322 glslVersion >= GrGLProgram::k150_GLSLVersion;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000323 } else {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000324 fCaps.fShaderDerivativeSupport =
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000325 this->hasExtension("GL_OES_standard_derivatives");
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000326 }
junov@google.comf93e7172011-03-31 21:26:24 +0000327
328 fProgramData = NULL;
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000329 fProgramCache = new ProgramCache(gl, glslVersion);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000330
331#if 0
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000332 this->programUnitTest();
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000333#endif
junov@google.comf93e7172011-03-31 21:26:24 +0000334}
335
336GrGpuGLShaders::~GrGpuGLShaders() {
337 delete fProgramCache;
338}
339
340const GrMatrix& GrGpuGLShaders::getHWSamplerMatrix(int stage) {
junov@google.comf93e7172011-03-31 21:26:24 +0000341 GrAssert(fProgramData);
bsalomon@google.com91961302011-05-09 18:39:58 +0000342
343 if (GrGLProgram::kSetAsAttribute ==
344 fProgramData->fUniLocations.fStages[stage].fTextureMatrixUni) {
345 return fHWDrawState.fSamplerStates[stage].getMatrix();
346 } else {
347 return fProgramData->fTextureMatrices[stage];
348 }
junov@google.comf93e7172011-03-31 21:26:24 +0000349}
350
351void GrGpuGLShaders::recordHWSamplerMatrix(int stage, const GrMatrix& matrix) {
junov@google.comf93e7172011-03-31 21:26:24 +0000352 GrAssert(fProgramData);
bsalomon@google.com91961302011-05-09 18:39:58 +0000353 if (GrGLProgram::kSetAsAttribute ==
354 fProgramData->fUniLocations.fStages[stage].fTextureMatrixUni) {
355 fHWDrawState.fSamplerStates[stage].setMatrix(matrix);
356 } else {
357 fProgramData->fTextureMatrices[stage] = matrix;
358 }
junov@google.comf93e7172011-03-31 21:26:24 +0000359}
360
361void GrGpuGLShaders::resetContext() {
362 INHERITED::resetContext();
junov@google.comf93e7172011-03-31 21:26:24 +0000363
junov@google.comf93e7172011-03-31 21:26:24 +0000364 fHWGeometryState.fVertexLayout = 0;
365 fHWGeometryState.fVertexOffset = ~0;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000366 GL_CALL(DisableVertexAttribArray(GrGLProgram::ColorAttributeIdx()));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000367 GL_CALL(DisableVertexAttribArray(GrGLProgram::EdgeAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000368 for (int t = 0; t < kMaxTexCoords; ++t) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000369 GL_CALL(DisableVertexAttribArray(GrGLProgram::TexCoordAttributeIdx(t)));
junov@google.comf93e7172011-03-31 21:26:24 +0000370 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000371 GL_CALL(EnableVertexAttribArray(GrGLProgram::PositionAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000372
373 fHWProgramID = 0;
374}
375
376void GrGpuGLShaders::flushViewMatrix() {
377 GrAssert(NULL != fCurrDrawState.fRenderTarget);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000378 GrMatrix m;
379 m.setAll(
junov@google.comf93e7172011-03-31 21:26:24 +0000380 GrIntToScalar(2) / fCurrDrawState.fRenderTarget->width(), 0, -GR_Scalar1,
381 0,-GrIntToScalar(2) / fCurrDrawState.fRenderTarget->height(), GR_Scalar1,
382 0, 0, GrMatrix::I()[8]);
383 m.setConcat(m, fCurrDrawState.fViewMatrix);
384
385 // ES doesn't allow you to pass true to the transpose param,
386 // so do our own transpose
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000387 GrGLfloat mt[] = {
388 GrScalarToFloat(m[GrMatrix::kMScaleX]),
389 GrScalarToFloat(m[GrMatrix::kMSkewY]),
390 GrScalarToFloat(m[GrMatrix::kMPersp0]),
391 GrScalarToFloat(m[GrMatrix::kMSkewX]),
392 GrScalarToFloat(m[GrMatrix::kMScaleY]),
393 GrScalarToFloat(m[GrMatrix::kMPersp1]),
394 GrScalarToFloat(m[GrMatrix::kMTransX]),
395 GrScalarToFloat(m[GrMatrix::kMTransY]),
396 GrScalarToFloat(m[GrMatrix::kMPersp2])
junov@google.comf93e7172011-03-31 21:26:24 +0000397 };
bsalomon@google.com91961302011-05-09 18:39:58 +0000398
399 if (GrGLProgram::kSetAsAttribute ==
400 fProgramData->fUniLocations.fViewMatrixUni) {
401 int baseIdx = GrGLProgram::ViewMatrixAttributeIdx();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000402 GL_CALL(VertexAttrib4fv(baseIdx + 0, mt+0));
403 GL_CALL(VertexAttrib4fv(baseIdx + 1, mt+3));
404 GL_CALL(VertexAttrib4fv(baseIdx + 2, mt+6));
bsalomon@google.com91961302011-05-09 18:39:58 +0000405 } else {
406 GrAssert(GrGLProgram::kUnusedUniform !=
407 fProgramData->fUniLocations.fViewMatrixUni);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000408 GL_CALL(UniformMatrix3fv(fProgramData->fUniLocations.fViewMatrixUni,
409 1, false, mt));
bsalomon@google.com91961302011-05-09 18:39:58 +0000410 }
junov@google.comf93e7172011-03-31 21:26:24 +0000411}
412
junov@google.com6acc9b32011-05-16 18:32:07 +0000413void GrGpuGLShaders::flushTextureDomain(int s) {
414 const GrGLint& uni = fProgramData->fUniLocations.fStages[s].fTexDomUni;
415 if (GrGLProgram::kUnusedUniform != uni) {
twiz@google.com76b82742011-06-02 20:30:02 +0000416 const GrRect &texDom =
junov@google.com6acc9b32011-05-16 18:32:07 +0000417 fCurrDrawState.fSamplerStates[s].getTextureDomain();
418
twiz@google.com76b82742011-06-02 20:30:02 +0000419 if (((1 << s) & fDirtyFlags.fTextureChangedMask) ||
420 fProgramData->fTextureDomain[s] != texDom) {
junov@google.com6acc9b32011-05-16 18:32:07 +0000421
junov@google.com2f839402011-05-24 15:13:01 +0000422 fProgramData->fTextureDomain[s] = texDom;
junov@google.com6acc9b32011-05-16 18:32:07 +0000423
junov@google.com2f839402011-05-24 15:13:01 +0000424 float values[4] = {
twiz@google.com76b82742011-06-02 20:30:02 +0000425 GrScalarToFloat(texDom.left()),
426 GrScalarToFloat(texDom.top()),
427 GrScalarToFloat(texDom.right()),
428 GrScalarToFloat(texDom.bottom())
junov@google.com2f839402011-05-24 15:13:01 +0000429 };
430
431 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
432 GrGLTexture::Orientation orientation = texture->orientation();
433
434 // vertical flip if necessary
435 if (GrGLTexture::kBottomUp_Orientation == orientation) {
436 values[1] = 1.0f - values[1];
437 values[3] = 1.0f - values[3];
twiz@google.com76b82742011-06-02 20:30:02 +0000438 // The top and bottom were just flipped, so correct the ordering
439 // of elements so that values = (l, t, r, b).
440 SkTSwap(values[1], values[3]);
junov@google.com2f839402011-05-24 15:13:01 +0000441 }
442
443 values[0] *= SkScalarToFloat(texture->contentScaleX());
444 values[2] *= SkScalarToFloat(texture->contentScaleX());
445 values[1] *= SkScalarToFloat(texture->contentScaleY());
446 values[3] *= SkScalarToFloat(texture->contentScaleY());
447
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000448 GL_CALL(Uniform4fv(uni, 1, values));
junov@google.com6acc9b32011-05-16 18:32:07 +0000449 }
junov@google.com6acc9b32011-05-16 18:32:07 +0000450 }
451}
452
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000453void GrGpuGLShaders::flushTextureMatrix(int s) {
junov@google.com6acc9b32011-05-16 18:32:07 +0000454 const GrGLint& uni = fProgramData->fUniLocations.fStages[s].fTextureMatrixUni;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000455 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
456 if (NULL != texture) {
bsalomon@google.com91961302011-05-09 18:39:58 +0000457 if (GrGLProgram::kUnusedUniform != uni &&
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000458 (((1 << s) & fDirtyFlags.fTextureChangedMask) ||
459 getHWSamplerMatrix(s) != getSamplerMatrix(s))) {
junov@google.comf93e7172011-03-31 21:26:24 +0000460
bsalomon@google.com91961302011-05-09 18:39:58 +0000461 GrAssert(NULL != fCurrDrawState.fTextures[s]);
junov@google.comf93e7172011-03-31 21:26:24 +0000462
bsalomon@google.com91961302011-05-09 18:39:58 +0000463 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
junov@google.comf93e7172011-03-31 21:26:24 +0000464
bsalomon@google.com91961302011-05-09 18:39:58 +0000465 GrMatrix m = getSamplerMatrix(s);
466 GrSamplerState::SampleMode mode =
467 fCurrDrawState.fSamplerStates[s].getSampleMode();
468 AdjustTextureMatrix(texture, mode, &m);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000469
bsalomon@google.com91961302011-05-09 18:39:58 +0000470 // ES doesn't allow you to pass true to the transpose param,
471 // so do our own transpose
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000472 GrGLfloat mt[] = {
473 GrScalarToFloat(m[GrMatrix::kMScaleX]),
474 GrScalarToFloat(m[GrMatrix::kMSkewY]),
475 GrScalarToFloat(m[GrMatrix::kMPersp0]),
476 GrScalarToFloat(m[GrMatrix::kMSkewX]),
477 GrScalarToFloat(m[GrMatrix::kMScaleY]),
478 GrScalarToFloat(m[GrMatrix::kMPersp1]),
479 GrScalarToFloat(m[GrMatrix::kMTransX]),
480 GrScalarToFloat(m[GrMatrix::kMTransY]),
481 GrScalarToFloat(m[GrMatrix::kMPersp2])
bsalomon@google.com91961302011-05-09 18:39:58 +0000482 };
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000483
bsalomon@google.com91961302011-05-09 18:39:58 +0000484 if (GrGLProgram::kSetAsAttribute ==
485 fProgramData->fUniLocations.fStages[s].fTextureMatrixUni) {
486 int baseIdx = GrGLProgram::TextureMatrixAttributeIdx(s);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000487 GL_CALL(VertexAttrib4fv(baseIdx + 0, mt+0));
488 GL_CALL(VertexAttrib4fv(baseIdx + 1, mt+3));
489 GL_CALL(VertexAttrib4fv(baseIdx + 2, mt+6));
bsalomon@google.com91961302011-05-09 18:39:58 +0000490 } else {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000491 GL_CALL(UniformMatrix3fv(uni, 1, false, mt));
bsalomon@google.com91961302011-05-09 18:39:58 +0000492 }
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000493 recordHWSamplerMatrix(s, getSamplerMatrix(s));
494 }
495 }
junov@google.comf93e7172011-03-31 21:26:24 +0000496}
497
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000498void GrGpuGLShaders::flushRadial2(int s) {
junov@google.comf93e7172011-03-31 21:26:24 +0000499
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000500 const int &uni = fProgramData->fUniLocations.fStages[s].fRadial2Uni;
501 const GrSamplerState& sampler = fCurrDrawState.fSamplerStates[s];
bsalomon@google.com91961302011-05-09 18:39:58 +0000502 if (GrGLProgram::kUnusedUniform != uni &&
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000503 (fProgramData->fRadial2CenterX1[s] != sampler.getRadial2CenterX1() ||
504 fProgramData->fRadial2Radius0[s] != sampler.getRadial2Radius0() ||
505 fProgramData->fRadial2PosRoot[s] != sampler.isRadial2PosRoot())) {
junov@google.comf93e7172011-03-31 21:26:24 +0000506
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000507 GrScalar centerX1 = sampler.getRadial2CenterX1();
508 GrScalar radius0 = sampler.getRadial2Radius0();
junov@google.comf93e7172011-03-31 21:26:24 +0000509
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000510 GrScalar a = GrMul(centerX1, centerX1) - GR_Scalar1;
junov@google.comf93e7172011-03-31 21:26:24 +0000511
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000512 // when were in the degenerate (linear) case the second
513 // value will be INF but the program doesn't read it. (We
514 // use the same 6 uniforms even though we don't need them
515 // all in the linear case just to keep the code complexity
516 // down).
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000517 float values[6] = {
518 GrScalarToFloat(a),
519 1 / (2.f * values[0]),
520 GrScalarToFloat(centerX1),
521 GrScalarToFloat(radius0),
522 GrScalarToFloat(GrMul(radius0, radius0)),
523 sampler.isRadial2PosRoot() ? 1.f : -1.f
524 };
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000525 GL_CALL(Uniform1fv(uni, 6, values));
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000526 fProgramData->fRadial2CenterX1[s] = sampler.getRadial2CenterX1();
527 fProgramData->fRadial2Radius0[s] = sampler.getRadial2Radius0();
528 fProgramData->fRadial2PosRoot[s] = sampler.isRadial2PosRoot();
529 }
530}
531
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000532void GrGpuGLShaders::flushConvolution(int s) {
533 const GrSamplerState& sampler = fCurrDrawState.fSamplerStates[s];
534 int kernelUni = fProgramData->fUniLocations.fStages[s].fKernelUni;
535 if (GrGLProgram::kUnusedUniform != kernelUni) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000536 GL_CALL(Uniform1fv(kernelUni, sampler.getKernelWidth(),
537 sampler.getKernel()));
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000538 }
539 int imageIncrementUni = fProgramData->fUniLocations.fStages[s].fImageIncrementUni;
540 if (GrGLProgram::kUnusedUniform != imageIncrementUni) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000541 GL_CALL(Uniform2fv(imageIncrementUni, 1, sampler.getImageIncrement()));
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000542 }
543}
544
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000545void GrGpuGLShaders::flushTexelSize(int s) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000546 const int& uni = fProgramData->fUniLocations.fStages[s].fNormalizedTexelSizeUni;
bsalomon@google.com91961302011-05-09 18:39:58 +0000547 if (GrGLProgram::kUnusedUniform != uni) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000548 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
bsalomon@google.com0168afc2011-08-08 13:21:05 +0000549 if (texture->allocatedWidth() != fProgramData->fTextureWidth[s] ||
550 texture->allocatedHeight() != fProgramData->fTextureWidth[s]) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000551
bsalomon@google.com0168afc2011-08-08 13:21:05 +0000552 float texelSize[] = {1.f / texture->allocatedWidth(),
553 1.f / texture->allocatedHeight()};
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000554 GL_CALL(Uniform2fv(uni, 1, texelSize));
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000555 }
556 }
junov@google.comf93e7172011-03-31 21:26:24 +0000557}
558
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000559void GrGpuGLShaders::flushEdgeAAData() {
560 const int& uni = fProgramData->fUniLocations.fEdgesUni;
561 if (GrGLProgram::kUnusedUniform != uni) {
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +0000562 int count = fCurrDrawState.fEdgeAANumEdges;
563 Edge edges[kMaxEdges];
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000564 // Flip the edges in Y
bsalomon@google.com9d12f5c2011-09-29 18:08:18 +0000565 float height =
566 static_cast<float>(fCurrDrawState.fRenderTarget->height());
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +0000567 for (int i = 0; i < count; ++i) {
568 edges[i] = fCurrDrawState.fEdgeAAEdges[i];
569 float b = edges[i].fY;
570 edges[i].fY = -b;
571 edges[i].fZ += b * height;
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000572 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000573 GL_CALL(Uniform3fv(uni, count, &edges[0].fX));
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000574 }
575}
576
Scroggo01b87ec2011-05-11 18:05:38 +0000577static const float ONE_OVER_255 = 1.f / 255.f;
578
579#define GR_COLOR_TO_VEC4(color) {\
580 GrColorUnpackR(color) * ONE_OVER_255,\
581 GrColorUnpackG(color) * ONE_OVER_255,\
582 GrColorUnpackB(color) * ONE_OVER_255,\
583 GrColorUnpackA(color) * ONE_OVER_255 \
584}
585
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000586void GrGpuGLShaders::flushColor(GrColor color) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000587 const ProgramDesc& desc = fCurrentProgram.getDesc();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000588 if (this->getGeomSrc().fVertexLayout & kColor_VertexLayoutBit) {
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000589 // color will be specified per-vertex as an attribute
590 // invalidate the const vertex attrib color
591 fHWDrawState.fColor = GrColor_ILLEGAL;
592 } else {
593 switch (desc.fColorType) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000594 case ProgramDesc::kAttribute_ColorType:
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000595 if (fHWDrawState.fColor != color) {
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000596 // OpenGL ES only supports the float varities of glVertexAttrib
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000597 float c[] = GR_COLOR_TO_VEC4(color);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000598 GL_CALL(VertexAttrib4fv(GrGLProgram::ColorAttributeIdx(),
599 c));
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000600 fHWDrawState.fColor = color;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000601 }
602 break;
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000603 case ProgramDesc::kUniform_ColorType:
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000604 if (fProgramData->fColor != color) {
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000605 // OpenGL ES only supports the float varities of glVertexAttrib
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000606 float c[] = GR_COLOR_TO_VEC4(color);
bsalomon@google.com91961302011-05-09 18:39:58 +0000607 GrAssert(GrGLProgram::kUnusedUniform !=
608 fProgramData->fUniLocations.fColorUni);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000609 GL_CALL(Uniform4fv(fProgramData->fUniLocations.fColorUni,
610 1, c));
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000611 fProgramData->fColor = color;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000612 }
613 break;
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000614 case ProgramDesc::kSolidWhite_ColorType:
615 case ProgramDesc::kTransBlack_ColorType:
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000616 break;
617 default:
618 GrCrash("Unknown color type.");
619 }
620 }
Scroggo97c88c22011-05-11 14:05:25 +0000621 if (fProgramData->fUniLocations.fColorFilterUni
622 != GrGLProgram::kUnusedUniform
623 && fProgramData->fColorFilterColor
624 != fCurrDrawState.fColorFilterColor) {
Scroggo01b87ec2011-05-11 18:05:38 +0000625 float c[] = GR_COLOR_TO_VEC4(fCurrDrawState.fColorFilterColor);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000626 GL_CALL(Uniform4fv(fProgramData->fUniLocations.fColorFilterUni, 1, c));
Scroggo97c88c22011-05-11 14:05:25 +0000627 fProgramData->fColorFilterColor = fCurrDrawState.fColorFilterColor;
628 }
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000629}
630
631
junov@google.comf93e7172011-03-31 21:26:24 +0000632bool GrGpuGLShaders::flushGraphicsState(GrPrimitiveType type) {
633 if (!flushGLStateCommon(type)) {
634 return false;
635 }
636
637 if (fDirtyFlags.fRenderTargetChanged) {
638 // our coords are in pixel space and the GL matrices map to NDC
639 // so if the viewport changed, our matrix is now wrong.
junov@google.comf93e7172011-03-31 21:26:24 +0000640 fHWDrawState.fViewMatrix = GrMatrix::InvalidMatrix();
junov@google.comf93e7172011-03-31 21:26:24 +0000641 // we assume all shader matrices may be wrong after viewport changes
642 fProgramCache->invalidateViewMatrices();
junov@google.comf93e7172011-03-31 21:26:24 +0000643 }
644
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000645 GrBlendCoeff srcCoeff;
646 GrBlendCoeff dstCoeff;
647 BlendOptFlags blendOpts = this->getBlendOpts(false, &srcCoeff, &dstCoeff);
648 if (kSkipDraw_BlendOptFlag & blendOpts) {
649 return false;
650 }
651
652 this->buildProgram(type, blendOpts, dstCoeff);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000653 fProgramData = fProgramCache->getProgramData(fCurrentProgram);
bsalomon@google.com91961302011-05-09 18:39:58 +0000654 if (NULL == fProgramData) {
655 GrAssert(!"Failed to create program!");
656 return false;
657 }
junov@google.comf93e7172011-03-31 21:26:24 +0000658
659 if (fHWProgramID != fProgramData->fProgramID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000660 GL_CALL(UseProgram(fProgramData->fProgramID));
junov@google.comf93e7172011-03-31 21:26:24 +0000661 fHWProgramID = fProgramData->fProgramID;
662 }
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000663 fCurrentProgram.overrideBlend(&srcCoeff, &dstCoeff);
664 this->flushBlend(type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000665
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000666 GrColor color;
667 if (blendOpts & kEmitTransBlack_BlendOptFlag) {
668 color = 0;
669 } else if (blendOpts & kEmitCoverage_BlendOptFlag) {
670 color = 0xffffffff;
671 } else {
672 color = fCurrDrawState.fColor;
673 }
674 this->flushColor(color);
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000675
bsalomon@google.com91961302011-05-09 18:39:58 +0000676 GrMatrix* currViewMatrix;
677 if (GrGLProgram::kSetAsAttribute ==
678 fProgramData->fUniLocations.fViewMatrixUni) {
679 currViewMatrix = &fHWDrawState.fViewMatrix;
680 } else {
681 currViewMatrix = &fProgramData->fViewMatrix;
682 }
junov@google.comf93e7172011-03-31 21:26:24 +0000683
bsalomon@google.com91961302011-05-09 18:39:58 +0000684 if (*currViewMatrix != fCurrDrawState.fViewMatrix) {
junov@google.comf93e7172011-03-31 21:26:24 +0000685 flushViewMatrix();
bsalomon@google.com91961302011-05-09 18:39:58 +0000686 *currViewMatrix = fCurrDrawState.fViewMatrix;
junov@google.comf93e7172011-03-31 21:26:24 +0000687 }
688
689 for (int s = 0; s < kNumStages; ++s) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000690 this->flushTextureMatrix(s);
junov@google.comf93e7172011-03-31 21:26:24 +0000691
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000692 this->flushRadial2(s);
junov@google.comf93e7172011-03-31 21:26:24 +0000693
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000694 this->flushConvolution(s);
695
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000696 this->flushTexelSize(s);
junov@google.com6acc9b32011-05-16 18:32:07 +0000697
698 this->flushTextureDomain(s);
junov@google.comf93e7172011-03-31 21:26:24 +0000699 }
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000700 this->flushEdgeAAData();
junov@google.comf93e7172011-03-31 21:26:24 +0000701 resetDirtyFlags();
702 return true;
703}
704
705void GrGpuGLShaders::postDraw() {
junov@google.comf93e7172011-03-31 21:26:24 +0000706}
707
708void GrGpuGLShaders::setupGeometry(int* startVertex,
709 int* startIndex,
710 int vertexCount,
711 int indexCount) {
712
713 int newColorOffset;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000714 int newCoverageOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000715 int newTexCoordOffsets[kMaxTexCoords];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000716 int newEdgeOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000717
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000718 GrGLsizei newStride = VertexSizeAndOffsetsByIdx(
719 this->getGeomSrc().fVertexLayout,
720 newTexCoordOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000721 &newColorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000722 &newCoverageOffset,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000723 &newEdgeOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000724 int oldColorOffset;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000725 int oldCoverageOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000726 int oldTexCoordOffsets[kMaxTexCoords];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000727 int oldEdgeOffset;
728
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000729 GrGLsizei oldStride = VertexSizeAndOffsetsByIdx(
730 fHWGeometryState.fVertexLayout,
731 oldTexCoordOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000732 &oldColorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000733 &oldCoverageOffset,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000734 &oldEdgeOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000735 bool indexed = NULL != startIndex;
736
737 int extraVertexOffset;
738 int extraIndexOffset;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000739 this->setBuffers(indexed, &extraVertexOffset, &extraIndexOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000740
741 GrGLenum scalarType;
742 bool texCoordNorm;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000743 if (this->getGeomSrc().fVertexLayout & kTextFormat_VertexLayoutBit) {
junov@google.comf93e7172011-03-31 21:26:24 +0000744 scalarType = GrGLTextType;
745 texCoordNorm = GR_GL_TEXT_TEXTURE_NORMALIZED;
746 } else {
747 scalarType = GrGLType;
748 texCoordNorm = false;
749 }
750
751 size_t vertexOffset = (*startVertex + extraVertexOffset) * newStride;
752 *startVertex = 0;
753 if (indexed) {
754 *startIndex += extraIndexOffset;
755 }
756
757 // all the Pointers must be set if any of these are true
758 bool allOffsetsChange = fHWGeometryState.fArrayPtrsDirty ||
759 vertexOffset != fHWGeometryState.fVertexOffset ||
760 newStride != oldStride;
761
762 // position and tex coord offsets change if above conditions are true
763 // or the type/normalization changed based on text vs nontext type coords.
764 bool posAndTexChange = allOffsetsChange ||
765 (((GrGLTextType != GrGLType) || GR_GL_TEXT_TEXTURE_NORMALIZED) &&
766 (kTextFormat_VertexLayoutBit &
767 (fHWGeometryState.fVertexLayout ^
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000768 this->getGeomSrc().fVertexLayout)));
junov@google.comf93e7172011-03-31 21:26:24 +0000769
770 if (posAndTexChange) {
bsalomon@google.com91961302011-05-09 18:39:58 +0000771 int idx = GrGLProgram::PositionAttributeIdx();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000772 GL_CALL(VertexAttribPointer(idx, 2, scalarType, false, newStride,
bsalomon@google.com91961302011-05-09 18:39:58 +0000773 (GrGLvoid*)vertexOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000774 fHWGeometryState.fVertexOffset = vertexOffset;
775 }
776
777 for (int t = 0; t < kMaxTexCoords; ++t) {
778 if (newTexCoordOffsets[t] > 0) {
779 GrGLvoid* texCoordOffset = (GrGLvoid*)(vertexOffset + newTexCoordOffsets[t]);
bsalomon@google.com91961302011-05-09 18:39:58 +0000780 int idx = GrGLProgram::TexCoordAttributeIdx(t);
junov@google.comf93e7172011-03-31 21:26:24 +0000781 if (oldTexCoordOffsets[t] <= 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000782 GL_CALL(EnableVertexAttribArray(idx));
783 GL_CALL(VertexAttribPointer(idx, 2, scalarType, texCoordNorm,
bsalomon@google.com91961302011-05-09 18:39:58 +0000784 newStride, texCoordOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000785 } else if (posAndTexChange ||
786 newTexCoordOffsets[t] != oldTexCoordOffsets[t]) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000787 GL_CALL(VertexAttribPointer(idx, 2, scalarType, texCoordNorm,
bsalomon@google.com91961302011-05-09 18:39:58 +0000788 newStride, texCoordOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000789 }
790 } else if (oldTexCoordOffsets[t] > 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000791 GL_CALL(DisableVertexAttribArray(GrGLProgram::TexCoordAttributeIdx(t)));
junov@google.comf93e7172011-03-31 21:26:24 +0000792 }
793 }
794
795 if (newColorOffset > 0) {
796 GrGLvoid* colorOffset = (int8_t*)(vertexOffset + newColorOffset);
bsalomon@google.com91961302011-05-09 18:39:58 +0000797 int idx = GrGLProgram::ColorAttributeIdx();
junov@google.comf93e7172011-03-31 21:26:24 +0000798 if (oldColorOffset <= 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000799 GL_CALL(EnableVertexAttribArray(idx));
800 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
junov@google.comf93e7172011-03-31 21:26:24 +0000801 true, newStride, colorOffset));
802 } else if (allOffsetsChange || newColorOffset != oldColorOffset) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000803 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
junov@google.comf93e7172011-03-31 21:26:24 +0000804 true, newStride, colorOffset));
805 }
806 } else if (oldColorOffset > 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000807 GL_CALL(DisableVertexAttribArray(GrGLProgram::ColorAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000808 }
809
bsalomon@google.coma3108262011-10-10 14:08:47 +0000810 if (newCoverageOffset > 0) {
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000811 // bind a single channel, they should all have the same value.
812 GrGLvoid* coverageOffset = (int8_t*)(vertexOffset + newCoverageOffset);
bsalomon@google.coma3108262011-10-10 14:08:47 +0000813 int idx = GrGLProgram::CoverageAttributeIdx();
814 if (oldCoverageOffset <= 0) {
815 GL_CALL(EnableVertexAttribArray(idx));
816 GL_CALL(VertexAttribPointer(idx, 1, GR_GL_UNSIGNED_BYTE,
817 true, newStride, coverageOffset));
818 } else if (allOffsetsChange || newCoverageOffset != oldCoverageOffset) {
819 GL_CALL(VertexAttribPointer(idx, 1, GR_GL_UNSIGNED_BYTE,
820 true, newStride, coverageOffset));
821 }
822 } else if (oldCoverageOffset > 0) {
823 GL_CALL(DisableVertexAttribArray(GrGLProgram::CoverageAttributeIdx()));
824 }
825
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000826 if (newEdgeOffset > 0) {
827 GrGLvoid* edgeOffset = (int8_t*)(vertexOffset + newEdgeOffset);
828 int idx = GrGLProgram::EdgeAttributeIdx();
829 if (oldEdgeOffset <= 0) {
830 GL_CALL(EnableVertexAttribArray(idx));
831 GL_CALL(VertexAttribPointer(idx, 4, scalarType,
832 false, newStride, edgeOffset));
833 } else if (allOffsetsChange || newEdgeOffset != oldEdgeOffset) {
834 GL_CALL(VertexAttribPointer(idx, 4, scalarType,
835 false, newStride, edgeOffset));
836 }
837 } else if (oldEdgeOffset > 0) {
838 GL_CALL(DisableVertexAttribArray(GrGLProgram::EdgeAttributeIdx()));
839 }
840
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000841 fHWGeometryState.fVertexLayout = this->getGeomSrc().fVertexLayout;
junov@google.comf93e7172011-03-31 21:26:24 +0000842 fHWGeometryState.fArrayPtrsDirty = false;
843}
844
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000845void GrGpuGLShaders::buildProgram(GrPrimitiveType type,
846 BlendOptFlags blendOpts,
847 GrBlendCoeff dstCoeff) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000848 ProgramDesc& desc = fCurrentProgram.fProgramDesc;
junov@google.comf93e7172011-03-31 21:26:24 +0000849
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000850 // This should already have been caught
851 GrAssert(!(kSkipDraw_BlendOptFlag & blendOpts));
852
853 bool skipCoverage = SkToBool(blendOpts & kEmitTransBlack_BlendOptFlag);
854
855 bool skipColor = SkToBool(blendOpts & (kEmitTransBlack_BlendOptFlag |
856 kEmitCoverage_BlendOptFlag));
857
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000858 // The descriptor is used as a cache key. Thus when a field of the
859 // descriptor will not affect program generation (because of the vertex
860 // layout in use or other descriptor field settings) it should be set
861 // to a canonical value to avoid duplicate programs with different keys.
862
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000863 // Must initialize all fields or cache will have false negatives!
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000864 desc.fVertexLayout = this->getGeomSrc().fVertexLayout;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000865
866 desc.fEmitsPointSize = kPoints_PrimitiveType == type;
867
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000868 bool requiresAttributeColors =
869 !skipColor && SkToBool(desc.fVertexLayout & kColor_VertexLayoutBit);
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000870 // fColorType records how colors are specified for the program. Strip
871 // the bit from the layout to avoid false negatives when searching for an
872 // existing program in the cache.
873 desc.fVertexLayout &= ~(kColor_VertexLayoutBit);
874
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000875 desc.fColorFilterXfermode = skipColor ?
876 SkXfermode::kDst_Mode :
877 fCurrDrawState.fColorFilterXfermode;
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000878
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000879 // no reason to do edge aa or look at per-vertex coverage if coverage is
880 // ignored
881 if (skipCoverage) {
882 desc.fVertexLayout &= ~(kEdge_VertexLayoutBit |
883 kCoverage_VertexLayoutBit);
884 }
885
886 bool colorIsTransBlack = SkToBool(blendOpts & kEmitTransBlack_BlendOptFlag);
887 bool colorIsSolidWhite = (blendOpts & kEmitCoverage_BlendOptFlag) ||
888 (!requiresAttributeColors &&
889 0xffffffff == fCurrDrawState.fColor);
890 if (GR_AGGRESSIVE_SHADER_OPTS && colorIsTransBlack) {
891 desc.fColorType = ProgramDesc::kTransBlack_ColorType;
892 } else if (GR_AGGRESSIVE_SHADER_OPTS && colorIsSolidWhite) {
893 desc.fColorType = ProgramDesc::kSolidWhite_ColorType;
894 } else if (GR_GL_NO_CONSTANT_ATTRIBUTES && !requiresAttributeColors) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000895 desc.fColorType = ProgramDesc::kUniform_ColorType;
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000896 } else {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000897 desc.fColorType = ProgramDesc::kAttribute_ColorType;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000898 }
junov@google.comf93e7172011-03-31 21:26:24 +0000899
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000900 desc.fEdgeAANumEdges = skipCoverage ? 0 : fCurrDrawState.fEdgeAANumEdges;
901 desc.fEdgeAAConcave = desc.fEdgeAANumEdges > 0 &&
902 SkToBool(fCurrDrawState.fFlagBits &
903 kEdgeAAConcave_StateBit);
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000904
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000905 int lastEnabledStage = -1;
906
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000907 if (!skipCoverage && (desc.fVertexLayout &
908 GrDrawTarget::kEdge_VertexLayoutBit)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000909 desc.fVertexEdgeType = fCurrDrawState.fVertexEdgeType;
910 } else {
911 // use canonical value when not set to avoid cache misses
912 desc.fVertexEdgeType = GrDrawTarget::kHairLine_EdgeType;
913 }
914
junov@google.comf93e7172011-03-31 21:26:24 +0000915 for (int s = 0; s < kNumStages; ++s) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000916 StageDesc& stage = desc.fStages[s];
junov@google.comf93e7172011-03-31 21:26:24 +0000917
tomhudson@google.com0d831722011-06-02 15:37:14 +0000918 stage.fOptFlags = 0;
919 stage.setEnabled(this->isStageEnabled(s));
junov@google.comf93e7172011-03-31 21:26:24 +0000920
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000921 bool skip = s < fCurrDrawState.fFirstCoverageStage ? skipColor :
922 skipCoverage;
923
924 if (!skip && stage.isEnabled()) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000925 lastEnabledStage = s;
junov@google.comf93e7172011-03-31 21:26:24 +0000926 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
927 GrAssert(NULL != texture);
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000928 const GrSamplerState& sampler = fCurrDrawState.fSamplerStates[s];
junov@google.comf93e7172011-03-31 21:26:24 +0000929 // we matrix to invert when orientation is TopDown, so make sure
930 // we aren't in that case before flagging as identity.
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000931 if (TextureMatrixIsIdentity(texture, sampler)) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000932 stage.fOptFlags |= StageDesc::kIdentityMatrix_OptFlagBit;
junov@google.comf93e7172011-03-31 21:26:24 +0000933 } else if (!getSamplerMatrix(s).hasPerspective()) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000934 stage.fOptFlags |= StageDesc::kNoPerspective_OptFlagBit;
junov@google.comf93e7172011-03-31 21:26:24 +0000935 }
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000936 switch (sampler.getSampleMode()) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000937 case GrSamplerState::kNormal_SampleMode:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000938 stage.fCoordMapping = StageDesc::kIdentity_CoordMapping;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000939 break;
940 case GrSamplerState::kRadial_SampleMode:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000941 stage.fCoordMapping = StageDesc::kRadialGradient_CoordMapping;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000942 break;
943 case GrSamplerState::kRadial2_SampleMode:
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000944 if (sampler.radial2IsDegenerate()) {
945 stage.fCoordMapping =
946 StageDesc::kRadial2GradientDegenerate_CoordMapping;
947 } else {
948 stage.fCoordMapping =
949 StageDesc::kRadial2Gradient_CoordMapping;
950 }
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000951 break;
952 case GrSamplerState::kSweep_SampleMode:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000953 stage.fCoordMapping = StageDesc::kSweepGradient_CoordMapping;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000954 break;
955 default:
956 GrCrash("Unexpected sample mode!");
957 break;
958 }
959
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000960 switch (sampler.getFilter()) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000961 // these both can use a regular texture2D()
962 case GrSamplerState::kNearest_Filter:
963 case GrSamplerState::kBilinear_Filter:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000964 stage.fFetchMode = StageDesc::kSingle_FetchMode;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000965 break;
966 // performs 4 texture2D()s
967 case GrSamplerState::k4x4Downsample_Filter:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000968 stage.fFetchMode = StageDesc::k2x2_FetchMode;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000969 break;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000970 // performs fKernelWidth texture2D()s
971 case GrSamplerState::kConvolution_Filter:
972 stage.fFetchMode = StageDesc::kConvolution_FetchMode;
973 break;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000974 default:
975 GrCrash("Unexpected filter!");
976 break;
junov@google.comf93e7172011-03-31 21:26:24 +0000977 }
978
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000979 if (sampler.hasTextureDomain()) {
tomhudson@google.com0d831722011-06-02 15:37:14 +0000980 GrAssert(GrSamplerState::kClamp_WrapMode ==
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000981 sampler.getWrapX() &&
982 GrSamplerState::kClamp_WrapMode ==
983 sampler.getWrapY());
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000984 stage.fOptFlags |= StageDesc::kCustomTextureDomain_OptFlagBit;
junov@google.com6acc9b32011-05-16 18:32:07 +0000985 }
986
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000987 if (GrPixelConfigIsAlphaOnly(texture->config())) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000988 stage.fModulation = StageDesc::kAlpha_Modulation;
junov@google.comf93e7172011-03-31 21:26:24 +0000989 } else {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000990 stage.fModulation = StageDesc::kColor_Modulation;
junov@google.comf93e7172011-03-31 21:26:24 +0000991 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000992 if (sampler.getFilter() == GrSamplerState::kConvolution_Filter) {
993 stage.fKernelWidth = sampler.getKernelWidth();
994 } else {
995 stage.fKernelWidth = 0;
996 }
junov@google.comf93e7172011-03-31 21:26:24 +0000997 } else {
998 stage.fOptFlags = 0;
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000999 stage.fCoordMapping = (StageDesc::CoordMapping)0;
1000 stage.fModulation = (StageDesc::Modulation)0;
bsalomon@google.com17f33942011-10-18 15:13:13 +00001001 stage.fFetchMode = (StageDesc::FetchMode) 0;
1002 stage.fKernelWidth = 0;
junov@google.comf93e7172011-03-31 21:26:24 +00001003 }
1004 }
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001005
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001006 desc.fDualSrcOutput = ProgramDesc::kNone_DualSrcOutput;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +00001007
1008 // currently the experimental GS will only work with triangle prims
1009 // (and it doesn't do anything other than pass through values from
1010 // the VS to the FS anyway).
1011#if 0 && GR_GL_EXPERIMENTAL_GS
1012 desc.fExperimentalGS = this->getCaps().fGeometryShaderSupport;
1013#endif
1014
bsalomon@google.coma3108262011-10-10 14:08:47 +00001015 // we want to avoid generating programs with different "first cov stage"
1016 // values when they would compute the same result.
1017 // We set field in the desc to kNumStages when either there are no
1018 // coverage stages or the distinction between coverage and color is
1019 // immaterial.
1020 int firstCoverageStage = kNumStages;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001021 desc.fFirstCoverageStage = kNumStages;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001022 bool hasCoverage = fCurrDrawState.fFirstCoverageStage <= lastEnabledStage;
1023 if (hasCoverage) {
1024 firstCoverageStage = fCurrDrawState.fFirstCoverageStage;
1025 }
1026
1027 // other coverage inputs
1028 if (!hasCoverage) {
1029 hasCoverage =
1030 desc.fEdgeAANumEdges ||
1031 (desc.fVertexLayout & GrDrawTarget::kCoverage_VertexLayoutBit) ||
1032 (desc.fVertexLayout & GrDrawTarget::kEdge_VertexLayoutBit);
1033 }
1034
1035 if (hasCoverage) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001036 // color filter is applied between color/coverage computation
1037 if (SkXfermode::kDst_Mode != desc.fColorFilterXfermode) {
bsalomon@google.coma3108262011-10-10 14:08:47 +00001038 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001039 }
1040
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001041 if (this->getCaps().fDualSourceBlendingSupport &&
1042 !(blendOpts & (kEmitCoverage_BlendOptFlag |
1043 kCoverageAsAlpha_BlendOptFlag))) {
1044 if (kZero_BlendCoeff == dstCoeff) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001045 // write the coverage value to second color
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001046 desc.fDualSrcOutput = ProgramDesc::kCoverage_DualSrcOutput;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001047 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001048 } else if (kSA_BlendCoeff == dstCoeff) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001049 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially
1050 // cover
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001051 desc.fDualSrcOutput = ProgramDesc::kCoverageISA_DualSrcOutput;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001052 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com86c1f712011-10-12 14:54:26 +00001053 } else if (kSC_BlendCoeff == dstCoeff) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001054 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially
1055 // cover
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001056 desc.fDualSrcOutput = ProgramDesc::kCoverageISC_DualSrcOutput;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001057 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001058 }
1059 }
1060 }
junov@google.comf93e7172011-03-31 21:26:24 +00001061}