blob: 67c0cd3a4791a323509d7e5a52cd52374387ade0 [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,
joshualittbd769d02014-09-04 08:56:46 -070093 const GrEffectStage* geometryProcessor,
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
joshualittbd769d02014-09-04 08:56:46 -0700130 GrGLProgram* program = GrGLProgram::Create(fGpu, desc, geometryProcessor,
131 colorStages, coverageStages);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000132 if (NULL == program) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000133 return NULL;
134 }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000135 int purgeIdx = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000136 if (fCount < kMaxEntries) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000137 entry = SkNEW(Entry);
138 purgeIdx = fCount++;
139 fEntries[purgeIdx] = entry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000140 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000141 SkASSERT(fCount == kMaxEntries);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000142 purgeIdx = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000143 for (int i = 1; i < kMaxEntries; ++i) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000144 if (fEntries[i]->fLRUStamp < fEntries[purgeIdx]->fLRUStamp) {
145 purgeIdx = i;
junov@google.comf93e7172011-03-31 21:26:24 +0000146 }
junov@google.comf93e7172011-03-31 21:26:24 +0000147 }
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000148 entry = fEntries[purgeIdx];
149 int purgedHashIdx = entry->fProgram->getDesc().getChecksum() & ((1 << kHashBits) - 1);
150 if (fHashTable[purgedHashIdx] == entry) {
151 fHashTable[purgedHashIdx] = NULL;
152 }
junov@google.comf93e7172011-03-31 21:26:24 +0000153 }
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000154 SkASSERT(fEntries[purgeIdx] == entry);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000155 entry->fProgram.reset(program);
skia.committer@gmail.com2d816ad2013-05-23 07:01:22 +0000156 // We need to shift fEntries around so that the entry currently at purgeIdx is placed
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000157 // just before the entry at ~entryIdx (in order to keep fEntries sorted by descriptor).
158 entryIdx = ~entryIdx;
159 if (entryIdx < purgeIdx) {
160 // Let E and P be the entries at index entryIdx and purgeIdx, respectively.
161 // If the entries array looks like this:
162 // aaaaEbbbbbPccccc
163 // we rearrange it to look like this:
164 // aaaaPEbbbbbccccc
165 size_t copySize = (purgeIdx - entryIdx) * sizeof(Entry*);
166 memmove(fEntries + entryIdx + 1, fEntries + entryIdx, copySize);
167 fEntries[entryIdx] = entry;
168 } else if (purgeIdx < entryIdx) {
169 // If the entries array looks like this:
170 // aaaaPbbbbbEccccc
171 // we rearrange it to look like this:
172 // aaaabbbbbPEccccc
173 size_t copySize = (entryIdx - purgeIdx - 1) * sizeof(Entry*);
174 memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1, copySize);
175 fEntries[entryIdx - 1] = entry;
176 }
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000177#ifdef SK_DEBUG
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000178 SkASSERT(NULL != fEntries[0]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000179 for (int i = 0; i < fCount - 1; ++i) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000180 SkASSERT(NULL != fEntries[i + 1]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000181 const GrGLProgramDesc& a = fEntries[i]->fProgram->getDesc();
182 const GrGLProgramDesc& b = fEntries[i + 1]->fProgram->getDesc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000183 SkASSERT(GrGLProgramDesc::Less(a, b));
184 SkASSERT(!GrGLProgramDesc::Less(b, a));
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000185 }
186#endif
junov@google.comf93e7172011-03-31 21:26:24 +0000187 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000188
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000189 fHashTable[hashIdx] = entry;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000190 entry->fLRUStamp = fCurrLRUStamp;
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000191
192 if (SK_MaxU32 == fCurrLRUStamp) {
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000193 // wrap around! just trash our LRU, one time hit.
194 for (int i = 0; i < fCount; ++i) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000195 fEntries[i]->fLRUStamp = 0;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000196 }
197 }
198 ++fCurrLRUStamp;
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000199 return entry->fProgram;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000200}
junov@google.comf93e7172011-03-31 21:26:24 +0000201
bsalomon@google.com1e257a52011-07-06 19:52:16 +0000202////////////////////////////////////////////////////////////////////////////////
203
bsalomon@google.com0b77d682011-08-19 13:28:54 +0000204#define GL_CALL(X) GR_GL_CALL(this->glInterface(), X)
205
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000206bool GrGpuGL::flushGraphicsState(DrawType type, const GrDeviceCoordTexture* dstCopy) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000207 const GrDrawState& drawState = this->getDrawState();
208
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000209 // GrGpu::setupClipAndFlushState should have already checked this and bailed if not true.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000210 SkASSERT(NULL != drawState.getRenderTarget());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000211
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000212 if (kStencilPath_DrawType == type) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000213 const GrRenderTarget* rt = this->getDrawState().getRenderTarget();
214 SkISize size;
215 size.set(rt->width(), rt->height());
kkinnunenccdaa042014-08-20 01:36:23 -0700216 this->glPathRendering()->setProjectionMatrix(drawState.getViewMatrix(), size, rt->origin());
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000217 } else {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000218 this->flushMiscFixedFunctionState();
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000219
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000220 GrBlendCoeff srcCoeff;
221 GrBlendCoeff dstCoeff;
bsalomon@google.com2b446732013-02-12 16:47:41 +0000222 GrDrawState::BlendOptFlags blendOpts = drawState.getBlendOpts(false, &srcCoeff, &dstCoeff);
223 if (GrDrawState::kSkipDraw_BlendOptFlag & blendOpts) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000224 return false;
225 }
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000226
joshualittbd769d02014-09-04 08:56:46 -0700227 const GrEffectStage* geometryProcessor = NULL;
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000228 SkSTArray<8, const GrEffectStage*, true> colorStages;
229 SkSTArray<8, const GrEffectStage*, true> coverageStages;
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000230 GrGLProgramDesc desc;
bsalomon848faf02014-07-11 10:01:02 -0700231 if (!GrGLProgramDesc::Build(this->getDrawState(),
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000232 type,
bsalomon@google.com91207482013-02-12 21:45:24 +0000233 blendOpts,
234 srcCoeff,
235 dstCoeff,
236 this,
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000237 dstCopy,
joshualittbd769d02014-09-04 08:56:46 -0700238 &geometryProcessor,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000239 &colorStages,
240 &coverageStages,
bsalomon848faf02014-07-11 10:01:02 -0700241 &desc)) {
242 SkDEBUGFAIL("Failed to generate GL program descriptor");
243 return false;
244 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000245
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000246 fCurrentProgram.reset(fProgramCache->getProgram(desc,
joshualittbd769d02014-09-04 08:56:46 -0700247 geometryProcessor,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000248 colorStages.begin(),
249 coverageStages.begin()));
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000250 if (NULL == fCurrentProgram.get()) {
mtklein@google.com330313a2013-08-22 15:37:26 +0000251 SkDEBUGFAIL("Failed to create program!");
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000252 return false;
253 }
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000254
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
kkinnunenec56e452014-08-25 22:21:16 -0700266 fCurrentProgram->setData(type,
267 blendOpts,
joshualittbd769d02014-09-04 08:56:46 -0700268 geometryProcessor,
bsalomon@google.com2c84aa32013-06-06 20:28:57 +0000269 colorStages.begin(),
270 coverageStages.begin(),
271 dstCopy,
272 &fSharedGLProgramState);
junov@google.comf93e7172011-03-31 21:26:24 +0000273 }
bsalomonb0bd4f62014-09-03 07:19:50 -0700274
275 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(drawState.getRenderTarget());
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000276 this->flushStencil(type);
bsalomonb0bd4f62014-09-03 07:19:50 -0700277 this->flushScissor(glRT->getViewport(), glRT->origin());
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000278 this->flushAAState(type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000279
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000280 SkIRect* devRect = NULL;
281 SkIRect devClipBounds;
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +0000282 if (drawState.isClipState()) {
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000283 this->getClip()->getConservativeBounds(drawState.getRenderTarget(), &devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000284 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000285 }
286 // This must come after textures are flushed because a texture may need
287 // to be msaa-resolved (which will modify bound FBO state).
bsalomonb0bd4f62014-09-03 07:19:50 -0700288 this->flushRenderTarget(glRT, devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000289
junov@google.comf93e7172011-03-31 21:26:24 +0000290 return true;
291}
292
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000293void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) {
junov@google.comf93e7172011-03-31 21:26:24 +0000294
egdaniel7b3d5ee2014-08-28 05:41:14 -0700295 GrGLsizei stride = static_cast<GrGLsizei>(this->getDrawState().getVertexStride());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000296
bsalomon@google.com6918d482013-03-07 19:09:11 +0000297 size_t vertexOffsetInBytes = stride * info.startVertex();
298
299 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
300
301 GrGLVertexBuffer* vbuf;
302 switch (this->getGeomSrc().fVertexSrc) {
303 case kBuffer_GeometrySrcType:
304 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
305 break;
306 case kArray_GeometrySrcType:
307 case kReserved_GeometrySrcType:
308 this->finalizeReservedVertices();
309 vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize;
310 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
311 break;
312 default:
313 vbuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000314 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000315 }
316
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000317 SkASSERT(NULL != vbuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000318 SkASSERT(!vbuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000319 vertexOffsetInBytes += vbuf->baseOffset();
320
321 GrGLIndexBuffer* ibuf = NULL;
322 if (info.isIndexed()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000323 SkASSERT(NULL != indexOffsetInBytes);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000324
325 switch (this->getGeomSrc().fIndexSrc) {
326 case kBuffer_GeometrySrcType:
327 *indexOffsetInBytes = 0;
328 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
329 break;
330 case kArray_GeometrySrcType:
331 case kReserved_GeometrySrcType:
332 this->finalizeReservedIndices();
333 *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort);
334 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
335 break;
336 default:
337 ibuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000338 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000339 }
340
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000341 SkASSERT(NULL != ibuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000342 SkASSERT(!ibuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000343 *indexOffsetInBytes += ibuf->baseOffset();
344 }
345 GrGLAttribArrayState* attribState =
346 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
junov@google.comf93e7172011-03-31 21:26:24 +0000347
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000348 if (fCurrentProgram->hasVertexShader()) {
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000349 int vertexAttribCount = this->getDrawState().getVertexAttribCount();
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000350 uint32_t usedAttribArraysMask = 0;
351 const GrVertexAttrib* vertexAttrib = this->getDrawState().getVertexAttribs();
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000352
egdaniel02cafcc2014-07-21 11:37:28 -0700353 bool canIgnoreColorAttrib = this->getDrawState().canIgnoreColorAttribute();
354
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000355 for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount;
356 ++vertexAttribIndex, ++vertexAttrib) {
robertphillips@google.comaf3a3b92013-02-28 23:08:28 +0000357
egdaniel02cafcc2014-07-21 11:37:28 -0700358 if (kColor_GrVertexAttribBinding != vertexAttrib->fBinding || !canIgnoreColorAttrib) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000359 usedAttribArraysMask |= (1 << vertexAttribIndex);
360 GrVertexAttribType attribType = vertexAttrib->fType;
361 attribState->set(this,
362 vertexAttribIndex,
363 vbuf,
364 GrGLAttribTypeToLayout(attribType).fCount,
365 GrGLAttribTypeToLayout(attribType).fType,
366 GrGLAttribTypeToLayout(attribType).fNormalized,
367 stride,
368 reinterpret_cast<GrGLvoid*>(
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000369 vertexOffsetInBytes + vertexAttrib->fOffset));
egdaniel02cafcc2014-07-21 11:37:28 -0700370 }
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000371 }
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000372 attribState->disableUnusedArrays(this, usedAttribArraysMask);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000373 }
junov@google.comf93e7172011-03-31 21:26:24 +0000374}