blob: 9c0c9cc89db6dcb4dd291911ff39fa138b123b48 [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;
207 float colorType = random.nextF();
208 if (colorType < 1.f / 3.f) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000209 pdesc.fColorType = ProgramDesc::kAttribute_ColorType;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000210 } else if (colorType < 2.f / 3.f) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000211 pdesc.fColorType = ProgramDesc::kUniform_ColorType;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000212 } else {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000213 pdesc.fColorType = ProgramDesc::kNone_ColorType;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000214 }
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000215
216 int idx = (int)(random.nextF() * (SkXfermode::kCoeffModesCnt));
217 pdesc.fColorFilterXfermode = (SkXfermode::Mode)idx;
218
219 idx = (int)(random.nextF() * (kNumStages+1));
220 pdesc.fFirstCoverageStage = idx;
221
bsalomon@google.coma3108262011-10-10 14:08:47 +0000222 pdesc.fVertexLayout |= (random.nextF() > .5f) ?
223 GrDrawTarget::kCoverage_VertexLayoutBit :
224 0;
225
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000226#if GR_GL_EXPERIMENTAL_GS
bsalomon@google.com6f92f182011-09-29 15:05:48 +0000227 pdesc.fExperimentalGS = this->getCaps().fGeometryShaderSupport &&
228 random.nextF() > .5f;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000229#endif
230
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000231 bool edgeAA = random.nextF() > .5f;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000232 if (edgeAA) {
233 bool vertexEdgeAA = random.nextF() > .5f;
234 if (vertexEdgeAA) {
235 pdesc.fVertexLayout |= GrDrawTarget::kEdge_VertexLayoutBit;
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000236 if (this->getCaps().fShaderDerivativeSupport) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000237 pdesc.fVertexEdgeType = random.nextF() > 0.5f ?
238 kHairQuad_EdgeType :
239 kHairLine_EdgeType;
240 } else {
241 pdesc.fVertexEdgeType = kHairLine_EdgeType;
242 }
243 pdesc.fEdgeAANumEdges = 0;
244 } else {
bsalomon@google.coma3108262011-10-10 14:08:47 +0000245 pdesc.fEdgeAANumEdges = static_cast<int>(1 + random.nextF() *
246 this->getMaxEdges());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000247 pdesc.fEdgeAAConcave = random.nextF() > .5f;
248 }
249 } else {
250 pdesc.fEdgeAANumEdges = 0;
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000251 }
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000252
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000253 if (this->getCaps().fDualSourceBlendingSupport) {
tomhudson@google.com0d831722011-06-02 15:37:14 +0000254 pdesc.fDualSrcOutput =
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000255 (ProgramDesc::DualSrcOutput)
256 (int)(random.nextF() * ProgramDesc::kDualSrcOutputCnt);
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000257 } else {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000258 pdesc.fDualSrcOutput = ProgramDesc::kNone_DualSrcOutput;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000259 }
260
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000261 for (int s = 0; s < kNumStages; ++s) {
262 // enable the stage?
263 if (random.nextF() > .5f) {
264 // use separate tex coords?
265 if (random.nextF() > .5f) {
266 int t = (int)(random.nextF() * kMaxTexCoords);
267 pdesc.fVertexLayout |= StageTexCoordVertexLayoutBit(s, t);
268 } else {
269 pdesc.fVertexLayout |= StagePosAsTexCoordVertexLayoutBit(s);
270 }
271 }
272 // use text-formatted verts?
273 if (random.nextF() > .5f) {
274 pdesc.fVertexLayout |= kTextFormat_VertexLayoutBit;
275 }
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000276 idx = (int)(random.nextF() * GR_ARRAY_COUNT(STAGE_OPTS));
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000277 StageDesc& stage = pdesc.fStages[s];
278 stage.fOptFlags = STAGE_OPTS[idx];
279 stage.fModulation = random_val(&random, StageDesc::kModulationCnt);
280 stage.fCoordMapping = random_val(&random, StageDesc::kCoordMappingCnt);
281 stage.fFetchMode = random_val(&random, StageDesc::kFetchModeCnt);
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000282 // convolution shaders don't work with persp tex matrix
283 if (stage.fFetchMode == StageDesc::kConvolution_FetchMode) {
284 stage.fOptFlags |= StageDesc::kNoPerspective_OptFlagBit;
285 }
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000286 stage.setEnabled(VertexUsesStage(s, pdesc.fVertexLayout));
bsalomon@google.com9d12f5c2011-09-29 18:08:18 +0000287 stage.fKernelWidth = static_cast<int8_t>(4 * random.nextF() + 2);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000288 }
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000289 CachedData cachedData;
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000290 if (!program.genProgram(this->glInterface(),
291 glslVersion,
292 &cachedData)) {
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000293 return false;
294 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000295 DeleteProgram(this->glInterface(), &cachedData);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000296 }
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000297 return true;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000298}
299
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000300namespace {
301GrGLBinding get_binding_in_use(const GrGLInterface* gl) {
302 if (gl->supportsDesktop()) {
303 return kDesktop_GrGLBinding;
304 } else {
305 GrAssert(gl->supportsES2());
306 return kES2_GrGLBinding;
307 }
308}
309}
310
311GrGpuGLShaders::GrGpuGLShaders(const GrGLInterface* gl)
312 : GrGpuGL(gl, get_binding_in_use(gl)) {
junov@google.comf93e7172011-03-31 21:26:24 +0000313
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000314 GrGLProgram::GLSLVersion glslVersion =
315 get_glsl_version(this->glBinding(), gl);
316
317 // Enable supported shader-releated caps
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000318 fCaps.fShaderSupport = true;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000319 fCaps.fSupportPerVertexCoverage = true;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000320 if (kDesktop_GrGLBinding == this->glBinding()) {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000321 fCaps.fDualSourceBlendingSupport =
bsalomon@google.comc82b8892011-09-22 14:10:33 +0000322 this->glVersion() >= GR_GL_VER(3,3) ||
bsalomon@google.com2c17fcd2011-07-06 17:47:02 +0000323 this->hasExtension("GL_ARB_blend_func_extended");
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000324 fCaps.fShaderDerivativeSupport = true;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000325 // we don't support GL_ARB_geometry_shader4, just GL 3.2+ GS
326 fCaps.fGeometryShaderSupport =
327 this->glVersion() >= GR_GL_VER(3,2) &&
328 glslVersion >= GrGLProgram::k150_GLSLVersion;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000329 } else {
bsalomon@google.com18c9c192011-09-22 21:01:31 +0000330 fCaps.fShaderDerivativeSupport =
bsalomon@google.com1f221a72011-08-23 20:54:07 +0000331 this->hasExtension("GL_OES_standard_derivatives");
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000332 }
junov@google.comf93e7172011-03-31 21:26:24 +0000333
334 fProgramData = NULL;
bsalomon@google.com4fa66942011-09-20 19:06:12 +0000335 fProgramCache = new ProgramCache(gl, glslVersion);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000336
337#if 0
bsalomon@google.coma8e686e2011-08-16 15:45:58 +0000338 this->programUnitTest();
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000339#endif
junov@google.comf93e7172011-03-31 21:26:24 +0000340}
341
342GrGpuGLShaders::~GrGpuGLShaders() {
343 delete fProgramCache;
344}
345
346const GrMatrix& GrGpuGLShaders::getHWSamplerMatrix(int stage) {
junov@google.comf93e7172011-03-31 21:26:24 +0000347 GrAssert(fProgramData);
bsalomon@google.com91961302011-05-09 18:39:58 +0000348
349 if (GrGLProgram::kSetAsAttribute ==
350 fProgramData->fUniLocations.fStages[stage].fTextureMatrixUni) {
351 return fHWDrawState.fSamplerStates[stage].getMatrix();
352 } else {
353 return fProgramData->fTextureMatrices[stage];
354 }
junov@google.comf93e7172011-03-31 21:26:24 +0000355}
356
357void GrGpuGLShaders::recordHWSamplerMatrix(int stage, const GrMatrix& matrix) {
junov@google.comf93e7172011-03-31 21:26:24 +0000358 GrAssert(fProgramData);
bsalomon@google.com91961302011-05-09 18:39:58 +0000359 if (GrGLProgram::kSetAsAttribute ==
360 fProgramData->fUniLocations.fStages[stage].fTextureMatrixUni) {
361 fHWDrawState.fSamplerStates[stage].setMatrix(matrix);
362 } else {
363 fProgramData->fTextureMatrices[stage] = matrix;
364 }
junov@google.comf93e7172011-03-31 21:26:24 +0000365}
366
367void GrGpuGLShaders::resetContext() {
368 INHERITED::resetContext();
junov@google.comf93e7172011-03-31 21:26:24 +0000369
junov@google.comf93e7172011-03-31 21:26:24 +0000370 fHWGeometryState.fVertexLayout = 0;
371 fHWGeometryState.fVertexOffset = ~0;
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000372 GL_CALL(DisableVertexAttribArray(GrGLProgram::ColorAttributeIdx()));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000373 GL_CALL(DisableVertexAttribArray(GrGLProgram::EdgeAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000374 for (int t = 0; t < kMaxTexCoords; ++t) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000375 GL_CALL(DisableVertexAttribArray(GrGLProgram::TexCoordAttributeIdx(t)));
junov@google.comf93e7172011-03-31 21:26:24 +0000376 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000377 GL_CALL(EnableVertexAttribArray(GrGLProgram::PositionAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000378
379 fHWProgramID = 0;
380}
381
382void GrGpuGLShaders::flushViewMatrix() {
383 GrAssert(NULL != fCurrDrawState.fRenderTarget);
bsalomon@google.comcc4dac32011-05-10 13:52:42 +0000384 GrMatrix m;
385 m.setAll(
junov@google.comf93e7172011-03-31 21:26:24 +0000386 GrIntToScalar(2) / fCurrDrawState.fRenderTarget->width(), 0, -GR_Scalar1,
387 0,-GrIntToScalar(2) / fCurrDrawState.fRenderTarget->height(), GR_Scalar1,
388 0, 0, GrMatrix::I()[8]);
389 m.setConcat(m, fCurrDrawState.fViewMatrix);
390
391 // ES doesn't allow you to pass true to the transpose param,
392 // so do our own transpose
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000393 GrGLfloat mt[] = {
394 GrScalarToFloat(m[GrMatrix::kMScaleX]),
395 GrScalarToFloat(m[GrMatrix::kMSkewY]),
396 GrScalarToFloat(m[GrMatrix::kMPersp0]),
397 GrScalarToFloat(m[GrMatrix::kMSkewX]),
398 GrScalarToFloat(m[GrMatrix::kMScaleY]),
399 GrScalarToFloat(m[GrMatrix::kMPersp1]),
400 GrScalarToFloat(m[GrMatrix::kMTransX]),
401 GrScalarToFloat(m[GrMatrix::kMTransY]),
402 GrScalarToFloat(m[GrMatrix::kMPersp2])
junov@google.comf93e7172011-03-31 21:26:24 +0000403 };
bsalomon@google.com91961302011-05-09 18:39:58 +0000404
405 if (GrGLProgram::kSetAsAttribute ==
406 fProgramData->fUniLocations.fViewMatrixUni) {
407 int baseIdx = GrGLProgram::ViewMatrixAttributeIdx();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000408 GL_CALL(VertexAttrib4fv(baseIdx + 0, mt+0));
409 GL_CALL(VertexAttrib4fv(baseIdx + 1, mt+3));
410 GL_CALL(VertexAttrib4fv(baseIdx + 2, mt+6));
bsalomon@google.com91961302011-05-09 18:39:58 +0000411 } else {
412 GrAssert(GrGLProgram::kUnusedUniform !=
413 fProgramData->fUniLocations.fViewMatrixUni);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000414 GL_CALL(UniformMatrix3fv(fProgramData->fUniLocations.fViewMatrixUni,
415 1, false, mt));
bsalomon@google.com91961302011-05-09 18:39:58 +0000416 }
junov@google.comf93e7172011-03-31 21:26:24 +0000417}
418
junov@google.com6acc9b32011-05-16 18:32:07 +0000419void GrGpuGLShaders::flushTextureDomain(int s) {
420 const GrGLint& uni = fProgramData->fUniLocations.fStages[s].fTexDomUni;
421 if (GrGLProgram::kUnusedUniform != uni) {
twiz@google.com76b82742011-06-02 20:30:02 +0000422 const GrRect &texDom =
junov@google.com6acc9b32011-05-16 18:32:07 +0000423 fCurrDrawState.fSamplerStates[s].getTextureDomain();
424
twiz@google.com76b82742011-06-02 20:30:02 +0000425 if (((1 << s) & fDirtyFlags.fTextureChangedMask) ||
426 fProgramData->fTextureDomain[s] != texDom) {
junov@google.com6acc9b32011-05-16 18:32:07 +0000427
junov@google.com2f839402011-05-24 15:13:01 +0000428 fProgramData->fTextureDomain[s] = texDom;
junov@google.com6acc9b32011-05-16 18:32:07 +0000429
junov@google.com2f839402011-05-24 15:13:01 +0000430 float values[4] = {
twiz@google.com76b82742011-06-02 20:30:02 +0000431 GrScalarToFloat(texDom.left()),
432 GrScalarToFloat(texDom.top()),
433 GrScalarToFloat(texDom.right()),
434 GrScalarToFloat(texDom.bottom())
junov@google.com2f839402011-05-24 15:13:01 +0000435 };
436
437 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
438 GrGLTexture::Orientation orientation = texture->orientation();
439
440 // vertical flip if necessary
441 if (GrGLTexture::kBottomUp_Orientation == orientation) {
442 values[1] = 1.0f - values[1];
443 values[3] = 1.0f - values[3];
twiz@google.com76b82742011-06-02 20:30:02 +0000444 // The top and bottom were just flipped, so correct the ordering
445 // of elements so that values = (l, t, r, b).
446 SkTSwap(values[1], values[3]);
junov@google.com2f839402011-05-24 15:13:01 +0000447 }
448
449 values[0] *= SkScalarToFloat(texture->contentScaleX());
450 values[2] *= SkScalarToFloat(texture->contentScaleX());
451 values[1] *= SkScalarToFloat(texture->contentScaleY());
452 values[3] *= SkScalarToFloat(texture->contentScaleY());
453
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000454 GL_CALL(Uniform4fv(uni, 1, values));
junov@google.com6acc9b32011-05-16 18:32:07 +0000455 }
junov@google.com6acc9b32011-05-16 18:32:07 +0000456 }
457}
458
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000459void GrGpuGLShaders::flushTextureMatrix(int s) {
junov@google.com6acc9b32011-05-16 18:32:07 +0000460 const GrGLint& uni = fProgramData->fUniLocations.fStages[s].fTextureMatrixUni;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000461 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
462 if (NULL != texture) {
bsalomon@google.com91961302011-05-09 18:39:58 +0000463 if (GrGLProgram::kUnusedUniform != uni &&
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000464 (((1 << s) & fDirtyFlags.fTextureChangedMask) ||
465 getHWSamplerMatrix(s) != getSamplerMatrix(s))) {
junov@google.comf93e7172011-03-31 21:26:24 +0000466
bsalomon@google.com91961302011-05-09 18:39:58 +0000467 GrAssert(NULL != fCurrDrawState.fTextures[s]);
junov@google.comf93e7172011-03-31 21:26:24 +0000468
bsalomon@google.com91961302011-05-09 18:39:58 +0000469 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
junov@google.comf93e7172011-03-31 21:26:24 +0000470
bsalomon@google.com91961302011-05-09 18:39:58 +0000471 GrMatrix m = getSamplerMatrix(s);
472 GrSamplerState::SampleMode mode =
473 fCurrDrawState.fSamplerStates[s].getSampleMode();
474 AdjustTextureMatrix(texture, mode, &m);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000475
bsalomon@google.com91961302011-05-09 18:39:58 +0000476 // ES doesn't allow you to pass true to the transpose param,
477 // so do our own transpose
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000478 GrGLfloat mt[] = {
479 GrScalarToFloat(m[GrMatrix::kMScaleX]),
480 GrScalarToFloat(m[GrMatrix::kMSkewY]),
481 GrScalarToFloat(m[GrMatrix::kMPersp0]),
482 GrScalarToFloat(m[GrMatrix::kMSkewX]),
483 GrScalarToFloat(m[GrMatrix::kMScaleY]),
484 GrScalarToFloat(m[GrMatrix::kMPersp1]),
485 GrScalarToFloat(m[GrMatrix::kMTransX]),
486 GrScalarToFloat(m[GrMatrix::kMTransY]),
487 GrScalarToFloat(m[GrMatrix::kMPersp2])
bsalomon@google.com91961302011-05-09 18:39:58 +0000488 };
bsalomon@google.com27a4dc42011-05-16 13:14:03 +0000489
bsalomon@google.com91961302011-05-09 18:39:58 +0000490 if (GrGLProgram::kSetAsAttribute ==
491 fProgramData->fUniLocations.fStages[s].fTextureMatrixUni) {
492 int baseIdx = GrGLProgram::TextureMatrixAttributeIdx(s);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000493 GL_CALL(VertexAttrib4fv(baseIdx + 0, mt+0));
494 GL_CALL(VertexAttrib4fv(baseIdx + 1, mt+3));
495 GL_CALL(VertexAttrib4fv(baseIdx + 2, mt+6));
bsalomon@google.com91961302011-05-09 18:39:58 +0000496 } else {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000497 GL_CALL(UniformMatrix3fv(uni, 1, false, mt));
bsalomon@google.com91961302011-05-09 18:39:58 +0000498 }
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000499 recordHWSamplerMatrix(s, getSamplerMatrix(s));
500 }
501 }
junov@google.comf93e7172011-03-31 21:26:24 +0000502}
503
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000504void GrGpuGLShaders::flushRadial2(int s) {
junov@google.comf93e7172011-03-31 21:26:24 +0000505
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000506 const int &uni = fProgramData->fUniLocations.fStages[s].fRadial2Uni;
507 const GrSamplerState& sampler = fCurrDrawState.fSamplerStates[s];
bsalomon@google.com91961302011-05-09 18:39:58 +0000508 if (GrGLProgram::kUnusedUniform != uni &&
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000509 (fProgramData->fRadial2CenterX1[s] != sampler.getRadial2CenterX1() ||
510 fProgramData->fRadial2Radius0[s] != sampler.getRadial2Radius0() ||
511 fProgramData->fRadial2PosRoot[s] != sampler.isRadial2PosRoot())) {
junov@google.comf93e7172011-03-31 21:26:24 +0000512
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000513 GrScalar centerX1 = sampler.getRadial2CenterX1();
514 GrScalar radius0 = sampler.getRadial2Radius0();
junov@google.comf93e7172011-03-31 21:26:24 +0000515
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000516 GrScalar a = GrMul(centerX1, centerX1) - GR_Scalar1;
junov@google.comf93e7172011-03-31 21:26:24 +0000517
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000518 // when were in the degenerate (linear) case the second
519 // value will be INF but the program doesn't read it. (We
520 // use the same 6 uniforms even though we don't need them
521 // all in the linear case just to keep the code complexity
522 // down).
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000523 float values[6] = {
524 GrScalarToFloat(a),
525 1 / (2.f * values[0]),
526 GrScalarToFloat(centerX1),
527 GrScalarToFloat(radius0),
528 GrScalarToFloat(GrMul(radius0, radius0)),
529 sampler.isRadial2PosRoot() ? 1.f : -1.f
530 };
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000531 GL_CALL(Uniform1fv(uni, 6, values));
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000532 fProgramData->fRadial2CenterX1[s] = sampler.getRadial2CenterX1();
533 fProgramData->fRadial2Radius0[s] = sampler.getRadial2Radius0();
534 fProgramData->fRadial2PosRoot[s] = sampler.isRadial2PosRoot();
535 }
536}
537
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000538void GrGpuGLShaders::flushConvolution(int s) {
539 const GrSamplerState& sampler = fCurrDrawState.fSamplerStates[s];
540 int kernelUni = fProgramData->fUniLocations.fStages[s].fKernelUni;
541 if (GrGLProgram::kUnusedUniform != kernelUni) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000542 GL_CALL(Uniform1fv(kernelUni, sampler.getKernelWidth(),
543 sampler.getKernel()));
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000544 }
545 int imageIncrementUni = fProgramData->fUniLocations.fStages[s].fImageIncrementUni;
546 if (GrGLProgram::kUnusedUniform != imageIncrementUni) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000547 GL_CALL(Uniform2fv(imageIncrementUni, 1, sampler.getImageIncrement()));
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000548 }
549}
550
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000551void GrGpuGLShaders::flushTexelSize(int s) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000552 const int& uni = fProgramData->fUniLocations.fStages[s].fNormalizedTexelSizeUni;
bsalomon@google.com91961302011-05-09 18:39:58 +0000553 if (GrGLProgram::kUnusedUniform != uni) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000554 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
bsalomon@google.com0168afc2011-08-08 13:21:05 +0000555 if (texture->allocatedWidth() != fProgramData->fTextureWidth[s] ||
556 texture->allocatedHeight() != fProgramData->fTextureWidth[s]) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000557
bsalomon@google.com0168afc2011-08-08 13:21:05 +0000558 float texelSize[] = {1.f / texture->allocatedWidth(),
559 1.f / texture->allocatedHeight()};
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000560 GL_CALL(Uniform2fv(uni, 1, texelSize));
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000561 }
562 }
junov@google.comf93e7172011-03-31 21:26:24 +0000563}
564
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000565void GrGpuGLShaders::flushEdgeAAData() {
566 const int& uni = fProgramData->fUniLocations.fEdgesUni;
567 if (GrGLProgram::kUnusedUniform != uni) {
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +0000568 int count = fCurrDrawState.fEdgeAANumEdges;
569 Edge edges[kMaxEdges];
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000570 // Flip the edges in Y
bsalomon@google.com9d12f5c2011-09-29 18:08:18 +0000571 float height =
572 static_cast<float>(fCurrDrawState.fRenderTarget->height());
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +0000573 for (int i = 0; i < count; ++i) {
574 edges[i] = fCurrDrawState.fEdgeAAEdges[i];
575 float b = edges[i].fY;
576 edges[i].fY = -b;
577 edges[i].fZ += b * height;
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000578 }
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000579 GL_CALL(Uniform3fv(uni, count, &edges[0].fX));
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000580 }
581}
582
Scroggo01b87ec2011-05-11 18:05:38 +0000583static const float ONE_OVER_255 = 1.f / 255.f;
584
585#define GR_COLOR_TO_VEC4(color) {\
586 GrColorUnpackR(color) * ONE_OVER_255,\
587 GrColorUnpackG(color) * ONE_OVER_255,\
588 GrColorUnpackB(color) * ONE_OVER_255,\
589 GrColorUnpackA(color) * ONE_OVER_255 \
590}
591
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000592void GrGpuGLShaders::flushColor() {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000593 const ProgramDesc& desc = fCurrentProgram.getDesc();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000594 if (this->getGeomSrc().fVertexLayout & kColor_VertexLayoutBit) {
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000595 // color will be specified per-vertex as an attribute
596 // invalidate the const vertex attrib color
597 fHWDrawState.fColor = GrColor_ILLEGAL;
598 } else {
599 switch (desc.fColorType) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000600 case ProgramDesc::kAttribute_ColorType:
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000601 if (fHWDrawState.fColor != fCurrDrawState.fColor) {
602 // OpenGL ES only supports the float varities of glVertexAttrib
Scroggo01b87ec2011-05-11 18:05:38 +0000603 float c[] = GR_COLOR_TO_VEC4(fCurrDrawState.fColor);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000604 GL_CALL(VertexAttrib4fv(GrGLProgram::ColorAttributeIdx(),
605 c));
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000606 fHWDrawState.fColor = fCurrDrawState.fColor;
607 }
608 break;
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000609 case ProgramDesc::kUniform_ColorType:
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000610 if (fProgramData->fColor != fCurrDrawState.fColor) {
611 // OpenGL ES only supports the float varities of glVertexAttrib
Scroggo01b87ec2011-05-11 18:05:38 +0000612 float c[] = GR_COLOR_TO_VEC4(fCurrDrawState.fColor);
bsalomon@google.com91961302011-05-09 18:39:58 +0000613 GrAssert(GrGLProgram::kUnusedUniform !=
614 fProgramData->fUniLocations.fColorUni);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000615 GL_CALL(Uniform4fv(fProgramData->fUniLocations.fColorUni,
616 1, c));
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000617 fProgramData->fColor = fCurrDrawState.fColor;
618 }
619 break;
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000620 case ProgramDesc::kNone_ColorType:
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000621 GrAssert(0xffffffff == fCurrDrawState.fColor);
622 break;
623 default:
624 GrCrash("Unknown color type.");
625 }
626 }
Scroggo97c88c22011-05-11 14:05:25 +0000627 if (fProgramData->fUniLocations.fColorFilterUni
628 != GrGLProgram::kUnusedUniform
629 && fProgramData->fColorFilterColor
630 != fCurrDrawState.fColorFilterColor) {
Scroggo01b87ec2011-05-11 18:05:38 +0000631 float c[] = GR_COLOR_TO_VEC4(fCurrDrawState.fColorFilterColor);
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000632 GL_CALL(Uniform4fv(fProgramData->fUniLocations.fColorFilterUni, 1, c));
Scroggo97c88c22011-05-11 14:05:25 +0000633 fProgramData->fColorFilterColor = fCurrDrawState.fColorFilterColor;
634 }
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000635}
636
637
junov@google.comf93e7172011-03-31 21:26:24 +0000638bool GrGpuGLShaders::flushGraphicsState(GrPrimitiveType type) {
639 if (!flushGLStateCommon(type)) {
640 return false;
641 }
642
643 if (fDirtyFlags.fRenderTargetChanged) {
644 // our coords are in pixel space and the GL matrices map to NDC
645 // so if the viewport changed, our matrix is now wrong.
junov@google.comf93e7172011-03-31 21:26:24 +0000646 fHWDrawState.fViewMatrix = GrMatrix::InvalidMatrix();
junov@google.comf93e7172011-03-31 21:26:24 +0000647 // we assume all shader matrices may be wrong after viewport changes
648 fProgramCache->invalidateViewMatrices();
junov@google.comf93e7172011-03-31 21:26:24 +0000649 }
650
junov@google.comf93e7172011-03-31 21:26:24 +0000651 buildProgram(type);
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000652 fProgramData = fProgramCache->getProgramData(fCurrentProgram);
bsalomon@google.com91961302011-05-09 18:39:58 +0000653 if (NULL == fProgramData) {
654 GrAssert(!"Failed to create program!");
655 return false;
656 }
junov@google.comf93e7172011-03-31 21:26:24 +0000657
658 if (fHWProgramID != fProgramData->fProgramID) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000659 GL_CALL(UseProgram(fProgramData->fProgramID));
junov@google.comf93e7172011-03-31 21:26:24 +0000660 fHWProgramID = fProgramData->fProgramID;
661 }
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000662 GrBlendCoeff srcCoeff = fCurrDrawState.fSrcBlend;
663 GrBlendCoeff dstCoeff = fCurrDrawState.fDstBlend;
664
665 fCurrentProgram.overrideBlend(&srcCoeff, &dstCoeff);
666 this->flushBlend(type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000667
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000668 this->flushColor();
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000669
bsalomon@google.com91961302011-05-09 18:39:58 +0000670 GrMatrix* currViewMatrix;
671 if (GrGLProgram::kSetAsAttribute ==
672 fProgramData->fUniLocations.fViewMatrixUni) {
673 currViewMatrix = &fHWDrawState.fViewMatrix;
674 } else {
675 currViewMatrix = &fProgramData->fViewMatrix;
676 }
junov@google.comf93e7172011-03-31 21:26:24 +0000677
bsalomon@google.com91961302011-05-09 18:39:58 +0000678 if (*currViewMatrix != fCurrDrawState.fViewMatrix) {
junov@google.comf93e7172011-03-31 21:26:24 +0000679 flushViewMatrix();
bsalomon@google.com91961302011-05-09 18:39:58 +0000680 *currViewMatrix = fCurrDrawState.fViewMatrix;
junov@google.comf93e7172011-03-31 21:26:24 +0000681 }
682
683 for (int s = 0; s < kNumStages; ++s) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000684 this->flushTextureMatrix(s);
junov@google.comf93e7172011-03-31 21:26:24 +0000685
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000686 this->flushRadial2(s);
junov@google.comf93e7172011-03-31 21:26:24 +0000687
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000688 this->flushConvolution(s);
689
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000690 this->flushTexelSize(s);
junov@google.com6acc9b32011-05-16 18:32:07 +0000691
692 this->flushTextureDomain(s);
junov@google.comf93e7172011-03-31 21:26:24 +0000693 }
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000694 this->flushEdgeAAData();
junov@google.comf93e7172011-03-31 21:26:24 +0000695 resetDirtyFlags();
696 return true;
697}
698
699void GrGpuGLShaders::postDraw() {
junov@google.comf93e7172011-03-31 21:26:24 +0000700}
701
702void GrGpuGLShaders::setupGeometry(int* startVertex,
703 int* startIndex,
704 int vertexCount,
705 int indexCount) {
706
707 int newColorOffset;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000708 int newCoverageOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000709 int newTexCoordOffsets[kMaxTexCoords];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000710 int newEdgeOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000711
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000712 GrGLsizei newStride = VertexSizeAndOffsetsByIdx(
713 this->getGeomSrc().fVertexLayout,
714 newTexCoordOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000715 &newColorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000716 &newCoverageOffset,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000717 &newEdgeOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000718 int oldColorOffset;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000719 int oldCoverageOffset;
junov@google.comf93e7172011-03-31 21:26:24 +0000720 int oldTexCoordOffsets[kMaxTexCoords];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000721 int oldEdgeOffset;
722
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000723 GrGLsizei oldStride = VertexSizeAndOffsetsByIdx(
724 fHWGeometryState.fVertexLayout,
725 oldTexCoordOffsets,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000726 &oldColorOffset,
bsalomon@google.coma3108262011-10-10 14:08:47 +0000727 &oldCoverageOffset,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000728 &oldEdgeOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000729 bool indexed = NULL != startIndex;
730
731 int extraVertexOffset;
732 int extraIndexOffset;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000733 this->setBuffers(indexed, &extraVertexOffset, &extraIndexOffset);
junov@google.comf93e7172011-03-31 21:26:24 +0000734
735 GrGLenum scalarType;
736 bool texCoordNorm;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000737 if (this->getGeomSrc().fVertexLayout & kTextFormat_VertexLayoutBit) {
junov@google.comf93e7172011-03-31 21:26:24 +0000738 scalarType = GrGLTextType;
739 texCoordNorm = GR_GL_TEXT_TEXTURE_NORMALIZED;
740 } else {
741 scalarType = GrGLType;
742 texCoordNorm = false;
743 }
744
745 size_t vertexOffset = (*startVertex + extraVertexOffset) * newStride;
746 *startVertex = 0;
747 if (indexed) {
748 *startIndex += extraIndexOffset;
749 }
750
751 // all the Pointers must be set if any of these are true
752 bool allOffsetsChange = fHWGeometryState.fArrayPtrsDirty ||
753 vertexOffset != fHWGeometryState.fVertexOffset ||
754 newStride != oldStride;
755
756 // position and tex coord offsets change if above conditions are true
757 // or the type/normalization changed based on text vs nontext type coords.
758 bool posAndTexChange = allOffsetsChange ||
759 (((GrGLTextType != GrGLType) || GR_GL_TEXT_TEXTURE_NORMALIZED) &&
760 (kTextFormat_VertexLayoutBit &
761 (fHWGeometryState.fVertexLayout ^
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000762 this->getGeomSrc().fVertexLayout)));
junov@google.comf93e7172011-03-31 21:26:24 +0000763
764 if (posAndTexChange) {
bsalomon@google.com91961302011-05-09 18:39:58 +0000765 int idx = GrGLProgram::PositionAttributeIdx();
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000766 GL_CALL(VertexAttribPointer(idx, 2, scalarType, false, newStride,
bsalomon@google.com91961302011-05-09 18:39:58 +0000767 (GrGLvoid*)vertexOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000768 fHWGeometryState.fVertexOffset = vertexOffset;
769 }
770
771 for (int t = 0; t < kMaxTexCoords; ++t) {
772 if (newTexCoordOffsets[t] > 0) {
773 GrGLvoid* texCoordOffset = (GrGLvoid*)(vertexOffset + newTexCoordOffsets[t]);
bsalomon@google.com91961302011-05-09 18:39:58 +0000774 int idx = GrGLProgram::TexCoordAttributeIdx(t);
junov@google.comf93e7172011-03-31 21:26:24 +0000775 if (oldTexCoordOffsets[t] <= 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000776 GL_CALL(EnableVertexAttribArray(idx));
777 GL_CALL(VertexAttribPointer(idx, 2, scalarType, texCoordNorm,
bsalomon@google.com91961302011-05-09 18:39:58 +0000778 newStride, texCoordOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000779 } else if (posAndTexChange ||
780 newTexCoordOffsets[t] != oldTexCoordOffsets[t]) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000781 GL_CALL(VertexAttribPointer(idx, 2, scalarType, texCoordNorm,
bsalomon@google.com91961302011-05-09 18:39:58 +0000782 newStride, texCoordOffset));
junov@google.comf93e7172011-03-31 21:26:24 +0000783 }
784 } else if (oldTexCoordOffsets[t] > 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000785 GL_CALL(DisableVertexAttribArray(GrGLProgram::TexCoordAttributeIdx(t)));
junov@google.comf93e7172011-03-31 21:26:24 +0000786 }
787 }
788
789 if (newColorOffset > 0) {
790 GrGLvoid* colorOffset = (int8_t*)(vertexOffset + newColorOffset);
bsalomon@google.com91961302011-05-09 18:39:58 +0000791 int idx = GrGLProgram::ColorAttributeIdx();
junov@google.comf93e7172011-03-31 21:26:24 +0000792 if (oldColorOffset <= 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000793 GL_CALL(EnableVertexAttribArray(idx));
794 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
junov@google.comf93e7172011-03-31 21:26:24 +0000795 true, newStride, colorOffset));
796 } else if (allOffsetsChange || newColorOffset != oldColorOffset) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000797 GL_CALL(VertexAttribPointer(idx, 4, GR_GL_UNSIGNED_BYTE,
junov@google.comf93e7172011-03-31 21:26:24 +0000798 true, newStride, colorOffset));
799 }
800 } else if (oldColorOffset > 0) {
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000801 GL_CALL(DisableVertexAttribArray(GrGLProgram::ColorAttributeIdx()));
junov@google.comf93e7172011-03-31 21:26:24 +0000802 }
803
bsalomon@google.coma3108262011-10-10 14:08:47 +0000804 if (newCoverageOffset > 0) {
bsalomon@google.come10f6fd2011-10-11 20:15:26 +0000805 // bind a single channel, they should all have the same value.
806 GrGLvoid* coverageOffset = (int8_t*)(vertexOffset + newCoverageOffset);
bsalomon@google.coma3108262011-10-10 14:08:47 +0000807 int idx = GrGLProgram::CoverageAttributeIdx();
808 if (oldCoverageOffset <= 0) {
809 GL_CALL(EnableVertexAttribArray(idx));
810 GL_CALL(VertexAttribPointer(idx, 1, GR_GL_UNSIGNED_BYTE,
811 true, newStride, coverageOffset));
812 } else if (allOffsetsChange || newCoverageOffset != oldCoverageOffset) {
813 GL_CALL(VertexAttribPointer(idx, 1, GR_GL_UNSIGNED_BYTE,
814 true, newStride, coverageOffset));
815 }
816 } else if (oldCoverageOffset > 0) {
817 GL_CALL(DisableVertexAttribArray(GrGLProgram::CoverageAttributeIdx()));
818 }
819
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000820 if (newEdgeOffset > 0) {
821 GrGLvoid* edgeOffset = (int8_t*)(vertexOffset + newEdgeOffset);
822 int idx = GrGLProgram::EdgeAttributeIdx();
823 if (oldEdgeOffset <= 0) {
824 GL_CALL(EnableVertexAttribArray(idx));
825 GL_CALL(VertexAttribPointer(idx, 4, scalarType,
826 false, newStride, edgeOffset));
827 } else if (allOffsetsChange || newEdgeOffset != oldEdgeOffset) {
828 GL_CALL(VertexAttribPointer(idx, 4, scalarType,
829 false, newStride, edgeOffset));
830 }
831 } else if (oldEdgeOffset > 0) {
832 GL_CALL(DisableVertexAttribArray(GrGLProgram::EdgeAttributeIdx()));
833 }
834
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000835 fHWGeometryState.fVertexLayout = this->getGeomSrc().fVertexLayout;
junov@google.comf93e7172011-03-31 21:26:24 +0000836 fHWGeometryState.fArrayPtrsDirty = false;
837}
838
839void GrGpuGLShaders::buildProgram(GrPrimitiveType type) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000840 ProgramDesc& desc = fCurrentProgram.fProgramDesc;
junov@google.comf93e7172011-03-31 21:26:24 +0000841
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000842 // The descriptor is used as a cache key. Thus when a field of the
843 // descriptor will not affect program generation (because of the vertex
844 // layout in use or other descriptor field settings) it should be set
845 // to a canonical value to avoid duplicate programs with different keys.
846
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000847 // Must initialize all fields or cache will have false negatives!
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000848 desc.fVertexLayout = this->getGeomSrc().fVertexLayout;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000849
850 desc.fEmitsPointSize = kPoints_PrimitiveType == type;
851
bsalomon@google.com9d12f5c2011-09-29 18:08:18 +0000852 bool requiresAttributeColors = 0 != (desc.fVertexLayout & kColor_VertexLayoutBit);
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000853 // fColorType records how colors are specified for the program. Strip
854 // the bit from the layout to avoid false negatives when searching for an
855 // existing program in the cache.
856 desc.fVertexLayout &= ~(kColor_VertexLayoutBit);
857
bsalomon@google.comf2d91552011-05-16 20:56:06 +0000858 desc.fColorFilterXfermode = fCurrDrawState.fColorFilterXfermode;
859
junov@google.comf93e7172011-03-31 21:26:24 +0000860#if GR_AGGRESSIVE_SHADER_OPTS
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000861 if (!requiresAttributeColors && (0xffffffff == fCurrDrawState.fColor)) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000862 desc.fColorType = ProgramDesc::kNone_ColorType;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000863 } else
junov@google.comf93e7172011-03-31 21:26:24 +0000864#endif
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000865#if GR_GL_NO_CONSTANT_ATTRIBUTES
866 if (!requiresAttributeColors) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000867 desc.fColorType = ProgramDesc::kUniform_ColorType;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000868 } else
869#endif
870 {
bsalomon@google.com6a77cc52011-04-28 17:33:34 +0000871 if (requiresAttributeColors) {} // suppress unused var warning
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000872 desc.fColorType = ProgramDesc::kAttribute_ColorType;
bsalomon@google.com4be283f2011-04-19 21:15:09 +0000873 }
junov@google.comf93e7172011-03-31 21:26:24 +0000874
senorblanco@chromium.orgef3913b2011-05-19 17:11:07 +0000875 desc.fEdgeAANumEdges = fCurrDrawState.fEdgeAANumEdges;
senorblanco@chromium.org129b8e32011-06-15 17:52:09 +0000876 desc.fEdgeAAConcave = desc.fEdgeAANumEdges > 0 && SkToBool(fCurrDrawState.fFlagBits & kEdgeAAConcave_StateBit);
senorblanco@chromium.org92e0f222011-05-12 15:49:15 +0000877
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000878 int lastEnabledStage = -1;
879
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000880 if (desc.fVertexLayout & GrDrawTarget::kEdge_VertexLayoutBit) {
881 desc.fVertexEdgeType = fCurrDrawState.fVertexEdgeType;
882 } else {
883 // use canonical value when not set to avoid cache misses
884 desc.fVertexEdgeType = GrDrawTarget::kHairLine_EdgeType;
885 }
886
junov@google.comf93e7172011-03-31 21:26:24 +0000887 for (int s = 0; s < kNumStages; ++s) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000888 StageDesc& stage = desc.fStages[s];
junov@google.comf93e7172011-03-31 21:26:24 +0000889
tomhudson@google.com0d831722011-06-02 15:37:14 +0000890 stage.fOptFlags = 0;
891 stage.setEnabled(this->isStageEnabled(s));
junov@google.comf93e7172011-03-31 21:26:24 +0000892
tomhudson@google.com0d831722011-06-02 15:37:14 +0000893 if (stage.isEnabled()) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000894 lastEnabledStage = s;
junov@google.comf93e7172011-03-31 21:26:24 +0000895 GrGLTexture* texture = (GrGLTexture*) fCurrDrawState.fTextures[s];
896 GrAssert(NULL != texture);
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000897 const GrSamplerState& sampler = fCurrDrawState.fSamplerStates[s];
junov@google.comf93e7172011-03-31 21:26:24 +0000898 // we matrix to invert when orientation is TopDown, so make sure
899 // we aren't in that case before flagging as identity.
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000900 if (TextureMatrixIsIdentity(texture, sampler)) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000901 stage.fOptFlags |= StageDesc::kIdentityMatrix_OptFlagBit;
junov@google.comf93e7172011-03-31 21:26:24 +0000902 } else if (!getSamplerMatrix(s).hasPerspective()) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000903 stage.fOptFlags |= StageDesc::kNoPerspective_OptFlagBit;
junov@google.comf93e7172011-03-31 21:26:24 +0000904 }
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000905 switch (sampler.getSampleMode()) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000906 case GrSamplerState::kNormal_SampleMode:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000907 stage.fCoordMapping = StageDesc::kIdentity_CoordMapping;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000908 break;
909 case GrSamplerState::kRadial_SampleMode:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000910 stage.fCoordMapping = StageDesc::kRadialGradient_CoordMapping;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000911 break;
912 case GrSamplerState::kRadial2_SampleMode:
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000913 if (sampler.radial2IsDegenerate()) {
914 stage.fCoordMapping =
915 StageDesc::kRadial2GradientDegenerate_CoordMapping;
916 } else {
917 stage.fCoordMapping =
918 StageDesc::kRadial2Gradient_CoordMapping;
919 }
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000920 break;
921 case GrSamplerState::kSweep_SampleMode:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000922 stage.fCoordMapping = StageDesc::kSweepGradient_CoordMapping;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000923 break;
924 default:
925 GrCrash("Unexpected sample mode!");
926 break;
927 }
928
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000929 switch (sampler.getFilter()) {
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000930 // these both can use a regular texture2D()
931 case GrSamplerState::kNearest_Filter:
932 case GrSamplerState::kBilinear_Filter:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000933 stage.fFetchMode = StageDesc::kSingle_FetchMode;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000934 break;
935 // performs 4 texture2D()s
936 case GrSamplerState::k4x4Downsample_Filter:
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000937 stage.fFetchMode = StageDesc::k2x2_FetchMode;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000938 break;
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000939 // performs fKernelWidth texture2D()s
940 case GrSamplerState::kConvolution_Filter:
941 stage.fFetchMode = StageDesc::kConvolution_FetchMode;
942 break;
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000943 default:
944 GrCrash("Unexpected filter!");
945 break;
junov@google.comf93e7172011-03-31 21:26:24 +0000946 }
947
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000948 if (sampler.hasTextureDomain()) {
tomhudson@google.com0d831722011-06-02 15:37:14 +0000949 GrAssert(GrSamplerState::kClamp_WrapMode ==
bsalomon@google.com22c5dea2011-07-07 14:38:03 +0000950 sampler.getWrapX() &&
951 GrSamplerState::kClamp_WrapMode ==
952 sampler.getWrapY());
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000953 stage.fOptFlags |= StageDesc::kCustomTextureDomain_OptFlagBit;
junov@google.com6acc9b32011-05-16 18:32:07 +0000954 }
955
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000956 if (GrPixelConfigIsAlphaOnly(texture->config())) {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000957 stage.fModulation = StageDesc::kAlpha_Modulation;
junov@google.comf93e7172011-03-31 21:26:24 +0000958 } else {
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000959 stage.fModulation = StageDesc::kColor_Modulation;
junov@google.comf93e7172011-03-31 21:26:24 +0000960 }
senorblanco@chromium.org027de5f2011-07-08 18:03:33 +0000961 if (sampler.getFilter() == GrSamplerState::kConvolution_Filter) {
962 stage.fKernelWidth = sampler.getKernelWidth();
963 } else {
964 stage.fKernelWidth = 0;
965 }
junov@google.comf93e7172011-03-31 21:26:24 +0000966 } else {
967 stage.fOptFlags = 0;
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000968 stage.fCoordMapping = (StageDesc::CoordMapping)0;
969 stage.fModulation = (StageDesc::Modulation)0;
junov@google.comf93e7172011-03-31 21:26:24 +0000970 }
971 }
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000972
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000973 desc.fDualSrcOutput = ProgramDesc::kNone_DualSrcOutput;
bsalomon@google.comedfe1aa2011-09-29 14:40:26 +0000974
975 // currently the experimental GS will only work with triangle prims
976 // (and it doesn't do anything other than pass through values from
977 // the VS to the FS anyway).
978#if 0 && GR_GL_EXPERIMENTAL_GS
979 desc.fExperimentalGS = this->getCaps().fGeometryShaderSupport;
980#endif
981
bsalomon@google.coma3108262011-10-10 14:08:47 +0000982 // we want to avoid generating programs with different "first cov stage"
983 // values when they would compute the same result.
984 // We set field in the desc to kNumStages when either there are no
985 // coverage stages or the distinction between coverage and color is
986 // immaterial.
987 int firstCoverageStage = kNumStages;
bsalomon@google.com271cffc2011-05-20 14:13:56 +0000988 desc.fFirstCoverageStage = kNumStages;
bsalomon@google.coma3108262011-10-10 14:08:47 +0000989 bool hasCoverage = fCurrDrawState.fFirstCoverageStage <= lastEnabledStage;
990 if (hasCoverage) {
991 firstCoverageStage = fCurrDrawState.fFirstCoverageStage;
992 }
993
994 // other coverage inputs
995 if (!hasCoverage) {
996 hasCoverage =
997 desc.fEdgeAANumEdges ||
998 (desc.fVertexLayout & GrDrawTarget::kCoverage_VertexLayoutBit) ||
999 (desc.fVertexLayout & GrDrawTarget::kEdge_VertexLayoutBit);
1000 }
1001
1002 if (hasCoverage) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001003 // color filter is applied between color/coverage computation
1004 if (SkXfermode::kDst_Mode != desc.fColorFilterXfermode) {
bsalomon@google.coma3108262011-10-10 14:08:47 +00001005 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001006 }
1007
1008 // We could consider cases where the final color is solid (0xff alpha)
1009 // and the dst coeff can correctly be set to a non-dualsrc gl value.
1010 // (e.g. solid draw, and dst coeff is kZero. It's correct to make
1011 // the dst coeff be kISA. Or solid draw with kSA can be tweaked to be
1012 // kOne).
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001013 if (this->getCaps().fDualSourceBlendingSupport) {
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001014 if (kZero_BlendCoeff == fCurrDrawState.fDstBlend) {
1015 // write the coverage value to second color
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001016 desc.fDualSrcOutput = ProgramDesc::kCoverage_DualSrcOutput;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001017 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001018 } else if (kSA_BlendCoeff == fCurrDrawState.fDstBlend) {
1019 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially
1020 // cover
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001021 desc.fDualSrcOutput = ProgramDesc::kCoverageISA_DualSrcOutput;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001022 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001023 } else if (kSC_BlendCoeff == fCurrDrawState.fDstBlend) {
1024 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially
1025 // cover
bsalomon@google.com1e257a52011-07-06 19:52:16 +00001026 desc.fDualSrcOutput = ProgramDesc::kCoverageISC_DualSrcOutput;
bsalomon@google.coma3108262011-10-10 14:08:47 +00001027 desc.fFirstCoverageStage = firstCoverageStage;
bsalomon@google.com271cffc2011-05-20 14:13:56 +00001028 }
1029 }
1030 }
junov@google.comf93e7172011-03-31 21:26:24 +00001031}