blob: b19676adb9ba53cc9cefbf7f17f6a55130c35cb4 [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"
cdaltonc7103a12014-08-11 14:05:05 -070013#include "GrGLPathRendering.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000014#include "SkTSearch.h"
junov@google.comf93e7172011-03-31 21:26:24 +000015
jvanverth@google.coma2f4b152013-09-16 20:00:46 +000016#ifdef PROGRAM_CACHE_STATS
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000017SK_CONF_DECLARE(bool, c_DisplayCache, "gpu.displayCache", false,
18 "Display program cache usage.");
jvanverth@google.coma2f4b152013-09-16 20:00:46 +000019#endif
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000020
kkinnunen7510b222014-07-30 00:04:16 -070021typedef GrGLProgramDataManager::UniformHandle UniformHandle;
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +000022
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000023struct GrGpuGL::ProgramCache::Entry {
24 SK_DECLARE_INST_COUNT_ROOT(Entry);
25 Entry() : fProgram(NULL), fLRUStamp(0) {}
26
27 SkAutoTUnref<GrGLProgram> fProgram;
28 unsigned int fLRUStamp;
29};
30
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000031struct GrGpuGL::ProgramCache::ProgDescLess {
32 bool operator() (const GrGLProgramDesc& desc, const Entry* entry) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000033 SkASSERT(NULL != entry->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000034 return GrGLProgramDesc::Less(desc, entry->fProgram->getDesc());
35 }
36
37 bool operator() (const Entry* entry, const GrGLProgramDesc& desc) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000038 SkASSERT(NULL != entry->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000039 return GrGLProgramDesc::Less(entry->fProgram->getDesc(), desc);
40 }
41};
junov@google.comf93e7172011-03-31 21:26:24 +000042
commit-bot@chromium.org9188a152013-09-05 18:28:24 +000043GrGpuGL::ProgramCache::ProgramCache(GrGpuGL* gpu)
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000044 : fCount(0)
45 , fCurrLRUStamp(0)
commit-bot@chromium.org9188a152013-09-05 18:28:24 +000046 , fGpu(gpu)
jvanverth@google.com94878772013-03-12 16:00:54 +000047#ifdef PROGRAM_CACHE_STATS
48 , fTotalRequests(0)
49 , fCacheMisses(0)
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000050 , fHashMisses(0)
jvanverth@google.com94878772013-03-12 16:00:54 +000051#endif
52{
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000053 for (int i = 0; i < 1 << kHashBits; ++i) {
54 fHashTable[i] = NULL;
55 }
jvanverth@google.com94878772013-03-12 16:00:54 +000056}
57
58GrGpuGL::ProgramCache::~ProgramCache() {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000059 for (int i = 0; i < fCount; ++i){
60 SkDELETE(fEntries[i]);
61 }
jvanverth@google.com94878772013-03-12 16:00:54 +000062 // dump stats
63#ifdef PROGRAM_CACHE_STATS
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000064 if (c_DisplayCache) {
65 SkDebugf("--- Program Cache ---\n");
66 SkDebugf("Total requests: %d\n", fTotalRequests);
67 SkDebugf("Cache misses: %d\n", fCacheMisses);
68 SkDebugf("Cache miss %%: %f\n", (fTotalRequests > 0) ?
69 100.f * fCacheMisses / fTotalRequests :
70 0.f);
71 int cacheHits = fTotalRequests - fCacheMisses;
72 SkDebugf("Hash miss %%: %f\n", (cacheHits > 0) ? 100.f * fHashMisses / cacheHits : 0.f);
73 SkDebugf("---------------------\n");
74 }
jvanverth@google.com94878772013-03-12 16:00:54 +000075#endif
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000076}
junov@google.comf93e7172011-03-31 21:26:24 +000077
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000078void GrGpuGL::ProgramCache::abandon() {
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000079 for (int i = 0; i < fCount; ++i) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000080 SkASSERT(NULL != fEntries[i]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000081 fEntries[i]->fProgram->abandon();
bsalomon944bcf02014-07-29 08:01:52 -070082 SkDELETE(fEntries[i]);
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000083 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000084 fCount = 0;
85}
86
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000087int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const {
88 ProgDescLess less;
89 return SkTSearch(fEntries, fCount, desc, sizeof(Entry*), less);
90}
91
bsalomon@google.com31ec7982013-03-27 18:14:57 +000092GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrGLProgramDesc& desc,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +000093 const GrEffectStage* colorStages[],
94 const GrEffectStage* coverageStages[]) {
jvanverth@google.com94878772013-03-12 16:00:54 +000095#ifdef PROGRAM_CACHE_STATS
96 ++fTotalRequests;
97#endif
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +000098
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000099 Entry* entry = NULL;
100
101 uint32_t hashIdx = desc.getChecksum();
102 hashIdx ^= hashIdx >> 16;
103 if (kHashBits <= 8) {
104 hashIdx ^= hashIdx >> 8;
105 }
106 hashIdx &=((1 << kHashBits) - 1);
107 Entry* hashedEntry = fHashTable[hashIdx];
108 if (NULL != hashedEntry && hashedEntry->fProgram->getDesc() == desc) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000109 SkASSERT(NULL != hashedEntry->fProgram);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000110 entry = hashedEntry;
111 }
112
113 int entryIdx;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000114 if (NULL == entry) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000115 entryIdx = this->search(desc);
116 if (entryIdx >= 0) {
117 entry = fEntries[entryIdx];
118#ifdef PROGRAM_CACHE_STATS
119 ++fHashMisses;
120#endif
121 }
122 }
123
124 if (NULL == entry) {
125 // We have a cache miss
jvanverth@google.com94878772013-03-12 16:00:54 +0000126#ifdef PROGRAM_CACHE_STATS
127 ++fCacheMisses;
128#endif
commit-bot@chromium.org9188a152013-09-05 18:28:24 +0000129 GrGLProgram* program = GrGLProgram::Create(fGpu, desc, colorStages, coverageStages);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000130 if (NULL == program) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000131 return NULL;
132 }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000133 int purgeIdx = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000134 if (fCount < kMaxEntries) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000135 entry = SkNEW(Entry);
136 purgeIdx = fCount++;
137 fEntries[purgeIdx] = entry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000138 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000139 SkASSERT(fCount == kMaxEntries);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000140 purgeIdx = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000141 for (int i = 1; i < kMaxEntries; ++i) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000142 if (fEntries[i]->fLRUStamp < fEntries[purgeIdx]->fLRUStamp) {
143 purgeIdx = i;
junov@google.comf93e7172011-03-31 21:26:24 +0000144 }
junov@google.comf93e7172011-03-31 21:26:24 +0000145 }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000146 entry = fEntries[purgeIdx];
147 int purgedHashIdx = entry->fProgram->getDesc().getChecksum() & ((1 << kHashBits) - 1);
148 if (fHashTable[purgedHashIdx] == entry) {
149 fHashTable[purgedHashIdx] = NULL;
150 }
junov@google.comf93e7172011-03-31 21:26:24 +0000151 }
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000152 SkASSERT(fEntries[purgeIdx] == entry);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000153 entry->fProgram.reset(program);
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000154 // We need to shift fEntries around so that the entry currently at purgeIdx is placed
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000155 // just before the entry at ~entryIdx (in order to keep fEntries sorted by descriptor).
156 entryIdx = ~entryIdx;
157 if (entryIdx < purgeIdx) {
158 // Let E and P be the entries at index entryIdx and purgeIdx, respectively.
159 // If the entries array looks like this:
160 // aaaaEbbbbbPccccc
161 // we rearrange it to look like this:
162 // aaaaPEbbbbbccccc
163 size_t copySize = (purgeIdx - entryIdx) * sizeof(Entry*);
164 memmove(fEntries + entryIdx + 1, fEntries + entryIdx, copySize);
165 fEntries[entryIdx] = entry;
166 } else if (purgeIdx < entryIdx) {
167 // If the entries array looks like this:
168 // aaaaPbbbbbEccccc
169 // we rearrange it to look like this:
170 // aaaabbbbbPEccccc
171 size_t copySize = (entryIdx - purgeIdx - 1) * sizeof(Entry*);
172 memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1, copySize);
173 fEntries[entryIdx - 1] = entry;
174 }
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000175#ifdef SK_DEBUG
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000176 SkASSERT(NULL != fEntries[0]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000177 for (int i = 0; i < fCount - 1; ++i) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000178 SkASSERT(NULL != fEntries[i + 1]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000179 const GrGLProgramDesc& a = fEntries[i]->fProgram->getDesc();
180 const GrGLProgramDesc& b = fEntries[i + 1]->fProgram->getDesc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000181 SkASSERT(GrGLProgramDesc::Less(a, b));
182 SkASSERT(!GrGLProgramDesc::Less(b, a));
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000183 }
184#endif
junov@google.comf93e7172011-03-31 21:26:24 +0000185 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000186
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000187 fHashTable[hashIdx] = entry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000188 entry->fLRUStamp = fCurrLRUStamp;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000189
190 if (SK_MaxU32 == fCurrLRUStamp) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000191 // wrap around! just trash our LRU, one time hit.
192 for (int i = 0; i < fCount; ++i) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000193 fEntries[i]->fLRUStamp = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000194 }
195 }
196 ++fCurrLRUStamp;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000197 return entry->fProgram;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000198}
junov@google.comf93e7172011-03-31 21:26:24 +0000199
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000200////////////////////////////////////////////////////////////////////////////////
201
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000202#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
203
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000204bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000205 const GrDrawState& drawState = this->getDrawState();
206
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000207 // GrGpu::setupClipAndFlushState should have already checked this and bailed if not true.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000208 SkASSERT(NULL != drawState.getRenderTarget());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000209
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000210 if (kStencilPath_DrawType == type) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000211 const GrRenderTarget* rt = this->getDrawState().getRenderTarget();
212 SkISize size;
213 size.set(rt->width(), rt->height());
kkinnunenccdaa042014-08-20 01:36:23 -0700214 this->glPathRendering()->setProjectionMatrix(drawState.getViewMatrix(), size, rt->origin());
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000215 } else {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000216 this->flushMiscFixedFunctionState();
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000217
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000218 GrBlendCoeff srcCoeff;
219 GrBlendCoeff dstCoeff;
bsalomon@google.com2b446732013-02-12 16:47:41 +0000220 GrDrawState::BlendOptFlags blendOpts = drawState.getBlendOpts(false, &srcCoeff, &dstCoeff);
221 if (GrDrawState::kSkipDraw_BlendOptFlag & blendOpts) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000222 return false;
223 }
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000224
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000225 SkSTArray<8, const GrEffectStage*, true> colorStages;
226 SkSTArray<8, const GrEffectStage*, true> coverageStages;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000227 GrGLProgramDesc desc;
bsalomon848faf02014-07-11 10:01:02 -0700228 if (!GrGLProgramDesc::Build(this->getDrawState(),
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000229 type,
bsalomon@google.com91207482013-02-12 21:45:24 +0000230 blendOpts,
231 srcCoeff,
232 dstCoeff,
233 this,
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000234 dstCopy,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000235 &colorStages,
236 &coverageStages,
bsalomon848faf02014-07-11 10:01:02 -0700237 &desc)) {
238 SkDEBUGFAIL("Failed to generate GL program descriptor");
239 return false;
240 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000241
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000242 fCurrentProgram.reset(fProgramCache->getProgram(desc,
243 colorStages.begin(),
244 coverageStages.begin()));
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000245 if (NULL == fCurrentProgram.get()) {
mtklein@google.com330313a2013-08-22 15:37:26 +0000246 SkDEBUGFAIL("Failed to create program!");
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000247 return false;
248 }
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000249
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000250 fCurrentProgram.get()->ref();
junov@google.comf93e7172011-03-31 21:26:24 +0000251
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000252 GrGLuint programID = fCurrentProgram->programID();
253 if (fHWProgramID != programID) {
254 GL_CALL(UseProgram(programID));
255 fHWProgramID = programID;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000256 }
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000257
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000258 fCurrentProgram->overrideBlend(&srcCoeff, &dstCoeff);
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000259 this->flushBlend(kDrawLines_DrawType == type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000260
kkinnunenec56e452014-08-25 22:21:16 -0700261 fCurrentProgram->setData(type,
262 blendOpts,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000263 colorStages.begin(),
264 coverageStages.begin(),
265 dstCopy,
266 &fSharedGLProgramState);
junov@google.comf93e7172011-03-31 21:26:24 +0000267 }
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000268 this->flushStencil(type);
bsalomon@google.coma3201942012-06-21 19:58:20 +0000269 this->flushScissor();
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000270 this->flushAAState(type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000271
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000272 SkIRect* devRect = NULL;
273 SkIRect devClipBounds;
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000274 if (drawState.isClipState()) {
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000275 this->getClip()->getConservativeBounds(drawState.getRenderTarget(), &devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000276 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000277 }
278 // This must come after textures are flushed because a texture may need
279 // to be msaa-resolved (which will modify bound FBO state).
robertphillips@google.com7b112892012-07-31 15:18:21 +0000280 this->flushRenderTarget(devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000281
junov@google.comf93e7172011-03-31 21:26:24 +0000282 return true;
283}
284
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000285void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) {
junov@google.comf93e7172011-03-31 21:26:24 +0000286
djsollenea81ced2014-08-27 13:07:34 -0700287 GrGLsizei stride = static_cast<GrGLsizei>(this->getDrawState().getVertexSize());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000288
bsalomon@google.com6918d482013-03-07 19:09:11 +0000289 size_t vertexOffsetInBytes = stride * info.startVertex();
290
291 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
292
293 GrGLVertexBuffer* vbuf;
294 switch (this->getGeomSrc().fVertexSrc) {
295 case kBuffer_GeometrySrcType:
296 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
297 break;
298 case kArray_GeometrySrcType:
299 case kReserved_GeometrySrcType:
300 this->finalizeReservedVertices();
301 vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize;
302 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
303 break;
304 default:
305 vbuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000306 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000307 }
308
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000309 SkASSERT(NULL != vbuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000310 SkASSERT(!vbuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000311 vertexOffsetInBytes += vbuf->baseOffset();
312
313 GrGLIndexBuffer* ibuf = NULL;
314 if (info.isIndexed()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000315 SkASSERT(NULL != indexOffsetInBytes);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000316
317 switch (this->getGeomSrc().fIndexSrc) {
318 case kBuffer_GeometrySrcType:
319 *indexOffsetInBytes = 0;
320 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
321 break;
322 case kArray_GeometrySrcType:
323 case kReserved_GeometrySrcType:
324 this->finalizeReservedIndices();
325 *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort);
326 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
327 break;
328 default:
329 ibuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000330 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000331 }
332
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000333 SkASSERT(NULL != ibuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000334 SkASSERT(!ibuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000335 *indexOffsetInBytes += ibuf->baseOffset();
336 }
337 GrGLAttribArrayState* attribState =
338 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
junov@google.comf93e7172011-03-31 21:26:24 +0000339
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000340 if (fCurrentProgram->hasVertexShader()) {
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000341 int vertexAttribCount = this->getDrawState().getVertexAttribCount();
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000342 uint32_t usedAttribArraysMask = 0;
343 const GrVertexAttrib* vertexAttrib = this->getDrawState().getVertexAttribs();
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000344
egdaniel02cafcc2014-07-21 11:37:28 -0700345 bool canIgnoreColorAttrib = this->getDrawState().canIgnoreColorAttribute();
346
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000347 for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount;
348 ++vertexAttribIndex, ++vertexAttrib) {
robertphillips@google.comaf3a3b92013-02-28 23:08:28 +0000349
egdaniel02cafcc2014-07-21 11:37:28 -0700350 if (kColor_GrVertexAttribBinding != vertexAttrib->fBinding || !canIgnoreColorAttrib) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000351 usedAttribArraysMask |= (1 << vertexAttribIndex);
352 GrVertexAttribType attribType = vertexAttrib->fType;
353 attribState->set(this,
354 vertexAttribIndex,
355 vbuf,
356 GrGLAttribTypeToLayout(attribType).fCount,
357 GrGLAttribTypeToLayout(attribType).fType,
358 GrGLAttribTypeToLayout(attribType).fNormalized,
359 stride,
360 reinterpret_cast<GrGLvoid*>(
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000361 vertexOffsetInBytes + vertexAttrib->fOffset));
egdaniel02cafcc2014-07-21 11:37:28 -0700362 }
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000363 }
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000364 attribState->disableUnusedArrays(this, usedAttribArraysMask);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000365 }
junov@google.comf93e7172011-03-31 21:26:24 +0000366}