blob: 4f9adb727d7011712ed9ab27e893f91a5462196c [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 }
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000255
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000256 SkASSERT(kDrawPath_DrawType != type || !fCurrentProgram->hasVertexShader());
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000257
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000258 fCurrentProgram.get()->ref();
junov@google.comf93e7172011-03-31 21:26:24 +0000259
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000260 GrGLuint programID = fCurrentProgram->programID();
261 if (fHWProgramID != programID) {
262 GL_CALL(UseProgram(programID));
263 fHWProgramID = programID;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000264 }
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000265
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000266 fCurrentProgram->overrideBlend(&srcCoeff, &dstCoeff);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000267 this->flushBlend(kDrawLines_DrawType == type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000268
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000269 fCurrentProgram->setData(blendOpts,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000270 colorStages.begin(),
271 coverageStages.begin(),
272 dstCopy,
273 &fSharedGLProgramState);
junov@google.comf93e7172011-03-31 21:26:24 +0000274 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000275 this->flushStencil(type);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000276 this->flushScissor();
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000277 this->flushAAState(type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000278
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000279 SkIRect* devRect = NULL;
280 SkIRect devClipBounds;
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000281 if (drawState.isClipState()) {
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000282 this->getClip()->getConservativeBounds(drawState.getRenderTarget(), &devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000283 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000284 }
285 // This must come after textures are flushed because a texture may need
286 // to be msaa-resolved (which will modify bound FBO state).
robertphillips@google.com7b112892012-07-31 15:18:21 +0000287 this->flushRenderTarget(devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000288
junov@google.comf93e7172011-03-31 21:26:24 +0000289 return true;
290}
291
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000292void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) {
junov@google.comf93e7172011-03-31 21:26:24 +0000293
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000294 GrGLsizei stride = this->getDrawState().getVertexSize();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000295
bsalomon@google.com6918d482013-03-07 19:09:11 +0000296 size_t vertexOffsetInBytes = stride * info.startVertex();
297
298 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
299
300 GrGLVertexBuffer* vbuf;
301 switch (this->getGeomSrc().fVertexSrc) {
302 case kBuffer_GeometrySrcType:
303 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
304 break;
305 case kArray_GeometrySrcType:
306 case kReserved_GeometrySrcType:
307 this->finalizeReservedVertices();
308 vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize;
309 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
310 break;
311 default:
312 vbuf = NULL; // suppress warning
313 GrCrash("Unknown geometry src type!");
314 }
315
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000316 SkASSERT(NULL != vbuf);
317 SkASSERT(!vbuf->isLocked());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000318 vertexOffsetInBytes += vbuf->baseOffset();
319
320 GrGLIndexBuffer* ibuf = NULL;
321 if (info.isIndexed()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000322 SkASSERT(NULL != indexOffsetInBytes);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000323
324 switch (this->getGeomSrc().fIndexSrc) {
325 case kBuffer_GeometrySrcType:
326 *indexOffsetInBytes = 0;
327 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
328 break;
329 case kArray_GeometrySrcType:
330 case kReserved_GeometrySrcType:
331 this->finalizeReservedIndices();
332 *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort);
333 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
334 break;
335 default:
336 ibuf = NULL; // suppress warning
337 GrCrash("Unknown geometry src type!");
338 }
339
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000340 SkASSERT(NULL != ibuf);
341 SkASSERT(!ibuf->isLocked());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000342 *indexOffsetInBytes += ibuf->baseOffset();
343 }
344 GrGLAttribArrayState* attribState =
345 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
junov@google.comf93e7172011-03-31 21:26:24 +0000346
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000347 if (!fCurrentProgram->hasVertexShader()) {
348 int posIdx = this->getDrawState().positionAttributeIndex();
349 const GrVertexAttrib* vertexArray = this->getDrawState().getVertexAttribs() + posIdx;
350 GrVertexAttribType vertexArrayType = vertexArray->fType;
351 SkASSERT(!GrGLAttribTypeToLayout(vertexArrayType).fNormalized);
352 SkASSERT(GrGLAttribTypeToLayout(vertexArrayType).fCount == 2);
353 attribState->setFixedFunctionVertexArray(this,
354 vbuf,
355 2,
356 GrGLAttribTypeToLayout(vertexArrayType).fType,
357 stride,
358 reinterpret_cast<GrGLvoid*>(
359 vertexOffsetInBytes + vertexArray->fOffset));
360 attribState->disableUnusedArrays(this, 0, true);
361 } else {
362 uint32_t usedAttribArraysMask = 0;
363 const GrVertexAttrib* vertexAttrib = this->getDrawState().getVertexAttribs();
364 int vertexAttribCount = this->getDrawState().getVertexAttribCount();
365 for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount;
366 ++vertexAttribIndex, ++vertexAttrib) {
robertphillips@google.comaf3a3b92013-02-28 23:08:28 +0000367
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000368 usedAttribArraysMask |= (1 << vertexAttribIndex);
369 GrVertexAttribType attribType = vertexAttrib->fType;
370 attribState->set(this,
371 vertexAttribIndex,
372 vbuf,
373 GrGLAttribTypeToLayout(attribType).fCount,
374 GrGLAttribTypeToLayout(attribType).fType,
375 GrGLAttribTypeToLayout(attribType).fNormalized,
376 stride,
377 reinterpret_cast<GrGLvoid*>(
378 vertexOffsetInBytes + vertexAttrib->fOffset));
379 }
380
381 attribState->disableUnusedArrays(this, usedAttribArraysMask, false);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000382 }
junov@google.comf93e7172011-03-31 21:26:24 +0000383}