blob: 92eed8d9bb85751e6736408d3ec881e69a21f114 [file] [log] [blame]
junov@google.comf93e7172011-03-31 21:26:24 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
junov@google.comf93e7172011-03-31 21:26:24 +00006 */
7
bsalomon@google.com5739d2c2012-05-31 15:07:19 +00008#include "GrGpuGL.h"
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.coma469c282012-10-24 18:28:34 +000010#include "GrEffect.h"
bsalomon@google.comd698f772012-10-25 13:22:00 +000011#include "GrGLEffect.h"
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000012#include "SkRTConf.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000013#include "SkTSearch.h"
junov@google.comf93e7172011-03-31 21:26:24 +000014
jvanverth@google.coma2f4b152013-09-16 20:00:46 +000015#ifdef PROGRAM_CACHE_STATS
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000016SK_CONF_DECLARE(bool, c_DisplayCache, "gpu.displayCache", false,
17 "Display program cache usage.");
jvanverth@google.coma2f4b152013-09-16 20:00:46 +000018#endif
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000019
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +000020typedef GrGLUniformManager::UniformHandle UniformHandle;
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +000021
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000022struct GrGpuGL::ProgramCache::Entry {
23 SK_DECLARE_INST_COUNT_ROOT(Entry);
24 Entry() : fProgram(NULL), fLRUStamp(0) {}
25
26 SkAutoTUnref<GrGLProgram> fProgram;
27 unsigned int fLRUStamp;
28};
29
30SK_DEFINE_INST_COUNT(GrGpuGL::ProgramCache::Entry);
31
32struct GrGpuGL::ProgramCache::ProgDescLess {
33 bool operator() (const GrGLProgramDesc& desc, const Entry* entry) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000034 SkASSERT(NULL != entry->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000035 return GrGLProgramDesc::Less(desc, entry->fProgram->getDesc());
36 }
37
38 bool operator() (const Entry* entry, const GrGLProgramDesc& desc) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000039 SkASSERT(NULL != entry->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000040 return GrGLProgramDesc::Less(entry->fProgram->getDesc(), desc);
41 }
42};
junov@google.comf93e7172011-03-31 21:26:24 +000043
commit-bot@chromium.org9188a152013-09-05 18:28:24 +000044GrGpuGL::ProgramCache::ProgramCache(GrGpuGL* gpu)
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000045 : fCount(0)
46 , fCurrLRUStamp(0)
commit-bot@chromium.org9188a152013-09-05 18:28:24 +000047 , fGpu(gpu)
jvanverth@google.com94878772013-03-12 16:00:54 +000048#ifdef PROGRAM_CACHE_STATS
49 , fTotalRequests(0)
50 , fCacheMisses(0)
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000051 , fHashMisses(0)
jvanverth@google.com94878772013-03-12 16:00:54 +000052#endif
53{
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000054 for (int i = 0; i < 1 << kHashBits; ++i) {
55 fHashTable[i] = NULL;
56 }
jvanverth@google.com94878772013-03-12 16:00:54 +000057}
58
59GrGpuGL::ProgramCache::~ProgramCache() {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000060 for (int i = 0; i < fCount; ++i){
61 SkDELETE(fEntries[i]);
62 }
jvanverth@google.com94878772013-03-12 16:00:54 +000063 // dump stats
64#ifdef PROGRAM_CACHE_STATS
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000065 if (c_DisplayCache) {
66 SkDebugf("--- Program Cache ---\n");
67 SkDebugf("Total requests: %d\n", fTotalRequests);
68 SkDebugf("Cache misses: %d\n", fCacheMisses);
69 SkDebugf("Cache miss %%: %f\n", (fTotalRequests > 0) ?
70 100.f * fCacheMisses / fTotalRequests :
71 0.f);
72 int cacheHits = fTotalRequests - fCacheMisses;
73 SkDebugf("Hash miss %%: %f\n", (cacheHits > 0) ? 100.f * fHashMisses / cacheHits : 0.f);
74 SkDebugf("---------------------\n");
75 }
jvanverth@google.com94878772013-03-12 16:00:54 +000076#endif
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000077}
junov@google.comf93e7172011-03-31 21:26:24 +000078
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000079void GrGpuGL::ProgramCache::abandon() {
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000080 for (int i = 0; i < fCount; ++i) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000081 SkASSERT(NULL != fEntries[i]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000082 fEntries[i]->fProgram->abandon();
83 fEntries[i]->fProgram.reset(NULL);
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000084 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000085 fCount = 0;
86}
87
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000088int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const {
89 ProgDescLess less;
90 return SkTSearch(fEntries, fCount, desc, sizeof(Entry*), less);
91}
92
bsalomon@google.com31ec7982013-03-27 18:14:57 +000093GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +000094 const GrEffectStage* colorStages[],
95 const GrEffectStage* coverageStages[]) {
jvanverth@google.com94878772013-03-12 16:00:54 +000096#ifdef PROGRAM_CACHE_STATS
97 ++fTotalRequests;
98#endif
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +000099
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000100 Entry* entry = NULL;
101
102 uint32_t hashIdx = desc.getChecksum();
103 hashIdx ^= hashIdx >> 16;
104 if (kHashBits <= 8) {
105 hashIdx ^= hashIdx >> 8;
106 }
107 hashIdx &=((1 << kHashBits) - 1);
108 Entry* hashedEntry = fHashTable[hashIdx];
109 if (NULL != hashedEntry && hashedEntry->fProgram->getDesc() == desc) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000110 SkASSERT(NULL != hashedEntry->fProgram);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000111 entry = hashedEntry;
112 }
113
114 int entryIdx;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000115 if (NULL == entry) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000116 entryIdx = this->search(desc);
117 if (entryIdx >= 0) {
118 entry = fEntries[entryIdx];
119#ifdef PROGRAM_CACHE_STATS
120 ++fHashMisses;
121#endif
122 }
123 }
124
125 if (NULL == entry) {
126 // We have a cache miss
jvanverth@google.com94878772013-03-12 16:00:54 +0000127#ifdef PROGRAM_CACHE_STATS
128 ++fCacheMisses;
129#endif
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000130 GrGLProgram* program = GrGLProgram::Create(fGpu, desc, colorStages, coverageStages);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000131 if (NULL == program) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000132 return NULL;
133 }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000134 int purgeIdx = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000135 if (fCount < kMaxEntries) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000136 entry = SkNEW(Entry);
137 purgeIdx = fCount++;
138 fEntries[purgeIdx] = entry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000139 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000140 SkASSERT(fCount == kMaxEntries);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000141 purgeIdx = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000142 for (int i = 1; i < kMaxEntries; ++i) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000143 if (fEntries[i]->fLRUStamp < fEntries[purgeIdx]->fLRUStamp) {
144 purgeIdx = i;
junov@google.comf93e7172011-03-31 21:26:24 +0000145 }
junov@google.comf93e7172011-03-31 21:26:24 +0000146 }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000147 entry = fEntries[purgeIdx];
148 int purgedHashIdx = entry->fProgram->getDesc().getChecksum() & ((1 << kHashBits) - 1);
149 if (fHashTable[purgedHashIdx] == entry) {
150 fHashTable[purgedHashIdx] = NULL;
151 }
junov@google.comf93e7172011-03-31 21:26:24 +0000152 }
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000153 SkASSERT(fEntries[purgeIdx] == entry);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000154 entry->fProgram.reset(program);
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000155 // We need to shift fEntries around so that the entry currently at purgeIdx is placed
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000156 // just before the entry at ~entryIdx (in order to keep fEntries sorted by descriptor).
157 entryIdx = ~entryIdx;
158 if (entryIdx < purgeIdx) {
159 // Let E and P be the entries at index entryIdx and purgeIdx, respectively.
160 // If the entries array looks like this:
161 // aaaaEbbbbbPccccc
162 // we rearrange it to look like this:
163 // aaaaPEbbbbbccccc
164 size_t copySize = (purgeIdx - entryIdx) * sizeof(Entry*);
165 memmove(fEntries + entryIdx + 1, fEntries + entryIdx, copySize);
166 fEntries[entryIdx] = entry;
167 } else if (purgeIdx < entryIdx) {
168 // If the entries array looks like this:
169 // aaaaPbbbbbEccccc
170 // we rearrange it to look like this:
171 // aaaabbbbbPEccccc
172 size_t copySize = (entryIdx - purgeIdx - 1) * sizeof(Entry*);
173 memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1, copySize);
174 fEntries[entryIdx - 1] = entry;
175 }
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000176#ifdef SK_DEBUG
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000177 SkASSERT(NULL != fEntries[0]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000178 for (int i = 0; i < fCount - 1; ++i) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000179 SkASSERT(NULL != fEntries[i + 1]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000180 const GrGLProgramDesc& a = fEntries[i]->fProgram->getDesc();
181 const GrGLProgramDesc& b = fEntries[i + 1]->fProgram->getDesc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000182 SkASSERT(GrGLProgramDesc::Less(a, b));
183 SkASSERT(!GrGLProgramDesc::Less(b, a));
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000184 }
185#endif
junov@google.comf93e7172011-03-31 21:26:24 +0000186 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000187
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000188 fHashTable[hashIdx] = entry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000189 entry->fLRUStamp = fCurrLRUStamp;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000190
191 if (SK_MaxU32 == fCurrLRUStamp) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000192 // wrap around! just trash our LRU, one time hit.
193 for (int i = 0; i < fCount; ++i) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000194 fEntries[i]->fLRUStamp = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000195 }
196 }
197 ++fCurrLRUStamp;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000198 return entry->fProgram;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000199}
junov@google.comf93e7172011-03-31 21:26:24 +0000200
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000201////////////////////////////////////////////////////////////////////////////////
202
bsalomon@google.com5739d2c2012-05-31 15:07:19 +0000203void GrGpuGL::abandonResources(){
204 INHERITED::abandonResources();
205 fProgramCache->abandon();
206 fHWProgramID = 0;
207}
208
209////////////////////////////////////////////////////////////////////////////////
210
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000211#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
212
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000213bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000214 const GrDrawState& drawState = this->getDrawState();
215
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000216 // GrGpu::setupClipAndFlushState should have already checked this and bailed if not true.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000217 SkASSERT(NULL != drawState.getRenderTarget());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000218
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000219 if (kStencilPath_DrawType == type) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000220 const GrRenderTarget* rt = this->getDrawState().getRenderTarget();
221 SkISize size;
222 size.set(rt->width(), rt->height());
223 this->setProjectionMatrix(drawState.getViewMatrix(), size, rt->origin());
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000224 } else {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000225 this->flushMiscFixedFunctionState();
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000226
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000227 GrBlendCoeff srcCoeff;
228 GrBlendCoeff dstCoeff;
bsalomon@google.com2b446732013-02-12 16:47:41 +0000229 GrDrawState::BlendOptFlags blendOpts = drawState.getBlendOpts(false, &srcCoeff, &dstCoeff);
230 if (GrDrawState::kSkipDraw_BlendOptFlag & blendOpts) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000231 return false;
232 }
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000233
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000234 SkSTArray<8, const GrEffectStage*, true> colorStages;
235 SkSTArray<8, const GrEffectStage*, true> coverageStages;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000236 GrGLProgramDesc desc;
237 GrGLProgramDesc::Build(this->getDrawState(),
bsalomon@google.com91207482013-02-12 21:45:24 +0000238 kDrawPoints_DrawType == type,
239 blendOpts,
240 srcCoeff,
241 dstCoeff,
242 this,
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000243 dstCopy,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000244 &colorStages,
245 &coverageStages,
bsalomon@google.com91207482013-02-12 21:45:24 +0000246 &desc);
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000247
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000248 fCurrentProgram.reset(fProgramCache->getProgram(desc,
249 colorStages.begin(),
250 coverageStages.begin()));
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000251 if (NULL == fCurrentProgram.get()) {
mtklein@google.com330313a2013-08-22 15:37:26 +0000252 SkDEBUGFAIL("Failed to create program!");
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000253 return false;
254 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000255 fCurrentProgram.get()->ref();
junov@google.comf93e7172011-03-31 21:26:24 +0000256
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000257 GrGLuint programID = fCurrentProgram->programID();
258 if (fHWProgramID != programID) {
259 GL_CALL(UseProgram(programID));
260 fHWProgramID = programID;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000261 }
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000262
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000263 fCurrentProgram->overrideBlend(&srcCoeff, &dstCoeff);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000264 this->flushBlend(kDrawLines_DrawType == type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000265
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000266 fCurrentProgram->setData(blendOpts,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000267 colorStages.begin(),
268 coverageStages.begin(),
269 dstCopy,
270 &fSharedGLProgramState);
junov@google.comf93e7172011-03-31 21:26:24 +0000271 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000272 this->flushStencil(type);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000273 this->flushScissor();
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000274 this->flushAAState(type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000275
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000276 SkIRect* devRect = NULL;
277 SkIRect devClipBounds;
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000278 if (drawState.isClipState()) {
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000279 this->getClip()->getConservativeBounds(drawState.getRenderTarget(), &devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000280 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000281 }
282 // This must come after textures are flushed because a texture may need
283 // to be msaa-resolved (which will modify bound FBO state).
robertphillips@google.com7b112892012-07-31 15:18:21 +0000284 this->flushRenderTarget(devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000285
junov@google.comf93e7172011-03-31 21:26:24 +0000286 return true;
287}
288
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000289void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) {
junov@google.comf93e7172011-03-31 21:26:24 +0000290
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000291 GrGLsizei stride = this->getDrawState().getVertexSize();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000292
bsalomon@google.com6918d482013-03-07 19:09:11 +0000293 size_t vertexOffsetInBytes = stride * info.startVertex();
294
295 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
296
297 GrGLVertexBuffer* vbuf;
298 switch (this->getGeomSrc().fVertexSrc) {
299 case kBuffer_GeometrySrcType:
300 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
301 break;
302 case kArray_GeometrySrcType:
303 case kReserved_GeometrySrcType:
304 this->finalizeReservedVertices();
305 vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize;
306 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
307 break;
308 default:
309 vbuf = NULL; // suppress warning
310 GrCrash("Unknown geometry src type!");
311 }
312
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000313 SkASSERT(NULL != vbuf);
314 SkASSERT(!vbuf->isLocked());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000315 vertexOffsetInBytes += vbuf->baseOffset();
316
317 GrGLIndexBuffer* ibuf = NULL;
318 if (info.isIndexed()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000319 SkASSERT(NULL != indexOffsetInBytes);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000320
321 switch (this->getGeomSrc().fIndexSrc) {
322 case kBuffer_GeometrySrcType:
323 *indexOffsetInBytes = 0;
324 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
325 break;
326 case kArray_GeometrySrcType:
327 case kReserved_GeometrySrcType:
328 this->finalizeReservedIndices();
329 *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort);
330 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
331 break;
332 default:
333 ibuf = NULL; // suppress warning
334 GrCrash("Unknown geometry src type!");
335 }
336
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000337 SkASSERT(NULL != ibuf);
338 SkASSERT(!ibuf->isLocked());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000339 *indexOffsetInBytes += ibuf->baseOffset();
340 }
341 GrGLAttribArrayState* attribState =
342 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
junov@google.comf93e7172011-03-31 21:26:24 +0000343
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000344 if (!fCurrentProgram->hasVertexShader()) {
345 int posIdx = this->getDrawState().positionAttributeIndex();
346 const GrVertexAttrib* vertexArray = this->getDrawState().getVertexAttribs() + posIdx;
347 GrVertexAttribType vertexArrayType = vertexArray->fType;
348 SkASSERT(!GrGLAttribTypeToLayout(vertexArrayType).fNormalized);
349 SkASSERT(GrGLAttribTypeToLayout(vertexArrayType).fCount == 2);
350 attribState->setFixedFunctionVertexArray(this,
351 vbuf,
352 2,
353 GrGLAttribTypeToLayout(vertexArrayType).fType,
354 stride,
355 reinterpret_cast<GrGLvoid*>(
356 vertexOffsetInBytes + vertexArray->fOffset));
357 attribState->disableUnusedArrays(this, 0, true);
358 } else {
359 uint32_t usedAttribArraysMask = 0;
360 const GrVertexAttrib* vertexAttrib = this->getDrawState().getVertexAttribs();
361 int vertexAttribCount = this->getDrawState().getVertexAttribCount();
362 for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount;
363 ++vertexAttribIndex, ++vertexAttrib) {
robertphillips@google.comaf3a3b92013-02-28 23:08:28 +0000364
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000365 usedAttribArraysMask |= (1 << vertexAttribIndex);
366 GrVertexAttribType attribType = vertexAttrib->fType;
367 attribState->set(this,
368 vertexAttribIndex,
369 vbuf,
370 GrGLAttribTypeToLayout(attribType).fCount,
371 GrGLAttribTypeToLayout(attribType).fType,
372 GrGLAttribTypeToLayout(attribType).fNormalized,
373 stride,
374 reinterpret_cast<GrGLvoid*>(
375 vertexOffsetInBytes + vertexAttrib->fOffset));
376 }
377
378 attribState->disableUnusedArrays(this, usedAttribArraysMask, false);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000379 }
junov@google.comf93e7172011-03-31 21:26:24 +0000380}