blob: bf73f0059c3a1b1ba9343f3de29f0e042cc9c3aa [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
joshualitt47bb3822014-10-07 16:43:25 -070010#include "builders/GrGLProgramBuilder.h"
joshualittb0a8a372014-09-23 09:50:21 -070011#include "GrProcessor.h"
12#include "GrGLProcessor.h"
egdaniel8a4c1032014-09-16 07:18:54 -070013#include "GrGLPathRendering.h"
egdaniel170f90b2014-09-16 12:54:40 -070014#include "GrOptDrawState.h"
15#include "SkRTConf.h"
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000016#include "SkTSearch.h"
junov@google.comf93e7172011-03-31 21:26:24 +000017
jvanverth@google.coma2f4b152013-09-16 20:00:46 +000018#ifdef PROGRAM_CACHE_STATS
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000019SK_CONF_DECLARE(bool, c_DisplayCache, "gpu.displayCache", false,
20 "Display program cache usage.");
jvanverth@google.coma2f4b152013-09-16 20:00:46 +000021#endif
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000022
kkinnunen7510b222014-07-30 00:04:16 -070023typedef GrGLProgramDataManager::UniformHandle UniformHandle;
bsalomon@google.comdbbc4e22012-07-25 17:48:39 +000024
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000025struct GrGpuGL::ProgramCache::Entry {
26 SK_DECLARE_INST_COUNT_ROOT(Entry);
27 Entry() : fProgram(NULL), fLRUStamp(0) {}
28
29 SkAutoTUnref<GrGLProgram> fProgram;
30 unsigned int fLRUStamp;
31};
32
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000033struct GrGpuGL::ProgramCache::ProgDescLess {
34 bool operator() (const GrGLProgramDesc& desc, const Entry* entry) {
bsalomon49f085d2014-09-05 13:34:00 -070035 SkASSERT(entry->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000036 return GrGLProgramDesc::Less(desc, entry->fProgram->getDesc());
37 }
38
39 bool operator() (const Entry* entry, const GrGLProgramDesc& desc) {
bsalomon49f085d2014-09-05 13:34:00 -070040 SkASSERT(entry->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000041 return GrGLProgramDesc::Less(entry->fProgram->getDesc(), desc);
42 }
43};
junov@google.comf93e7172011-03-31 21:26:24 +000044
commit-bot@chromium.org9188a152013-09-05 18:28:24 +000045GrGpuGL::ProgramCache::ProgramCache(GrGpuGL* gpu)
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000046 : fCount(0)
47 , fCurrLRUStamp(0)
commit-bot@chromium.org9188a152013-09-05 18:28:24 +000048 , fGpu(gpu)
jvanverth@google.com94878772013-03-12 16:00:54 +000049#ifdef PROGRAM_CACHE_STATS
50 , fTotalRequests(0)
51 , fCacheMisses(0)
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000052 , fHashMisses(0)
jvanverth@google.com94878772013-03-12 16:00:54 +000053#endif
54{
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000055 for (int i = 0; i < 1 << kHashBits; ++i) {
56 fHashTable[i] = NULL;
57 }
jvanverth@google.com94878772013-03-12 16:00:54 +000058}
59
60GrGpuGL::ProgramCache::~ProgramCache() {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000061 for (int i = 0; i < fCount; ++i){
62 SkDELETE(fEntries[i]);
63 }
jvanverth@google.com94878772013-03-12 16:00:54 +000064 // dump stats
65#ifdef PROGRAM_CACHE_STATS
jvanverth@google.com5c9b6fa2013-09-16 19:40:31 +000066 if (c_DisplayCache) {
67 SkDebugf("--- Program Cache ---\n");
68 SkDebugf("Total requests: %d\n", fTotalRequests);
69 SkDebugf("Cache misses: %d\n", fCacheMisses);
70 SkDebugf("Cache miss %%: %f\n", (fTotalRequests > 0) ?
71 100.f * fCacheMisses / fTotalRequests :
72 0.f);
73 int cacheHits = fTotalRequests - fCacheMisses;
74 SkDebugf("Hash miss %%: %f\n", (cacheHits > 0) ? 100.f * fHashMisses / cacheHits : 0.f);
75 SkDebugf("---------------------\n");
76 }
jvanverth@google.com94878772013-03-12 16:00:54 +000077#endif
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000078}
junov@google.comf93e7172011-03-31 21:26:24 +000079
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000080void GrGpuGL::ProgramCache::abandon() {
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000081 for (int i = 0; i < fCount; ++i) {
bsalomon49f085d2014-09-05 13:34:00 -070082 SkASSERT(fEntries[i]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000083 fEntries[i]->fProgram->abandon();
bsalomon944bcf02014-07-29 08:01:52 -070084 SkDELETE(fEntries[i]);
bsalomon@google.comecb60aa2012-07-18 13:20:29 +000085 }
bsalomon@google.comc1d2a582012-06-01 15:08:19 +000086 fCount = 0;
87}
88
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000089int GrGpuGL::ProgramCache::search(const GrGLProgramDesc& desc) const {
90 ProgDescLess less;
91 return SkTSearch(fEntries, fCount, desc, sizeof(Entry*), less);
92}
93
egdaniel307796b2014-10-06 12:13:54 -070094GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrOptDrawState& optState,
95 const GrGLProgramDesc& desc,
joshualitta5305a12014-10-10 17:47:00 -070096 DrawType type) {
jvanverth@google.com94878772013-03-12 16:00:54 +000097#ifdef PROGRAM_CACHE_STATS
98 ++fTotalRequests;
99#endif
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000100
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000101 Entry* entry = NULL;
102
103 uint32_t hashIdx = desc.getChecksum();
104 hashIdx ^= hashIdx >> 16;
105 if (kHashBits <= 8) {
106 hashIdx ^= hashIdx >> 8;
107 }
108 hashIdx &=((1 << kHashBits) - 1);
109 Entry* hashedEntry = fHashTable[hashIdx];
bsalomon49f085d2014-09-05 13:34:00 -0700110 if (hashedEntry && hashedEntry->fProgram->getDesc() == desc) {
111 SkASSERT(hashedEntry->fProgram);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000112 entry = hashedEntry;
113 }
114
115 int entryIdx;
bsalomon@google.comc1d2a582012-06-01 15:08:19 +0000116 if (NULL == entry) {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000117 entryIdx = this->search(desc);
118 if (entryIdx >= 0) {
119 entry = fEntries[entryIdx];
120#ifdef PROGRAM_CACHE_STATS
121 ++fHashMisses;
122#endif
123 }
124 }
125
126 if (NULL == entry) {
127 // We have a cache miss
jvanverth@google.com94878772013-03-12 16:00:54 +0000128#ifdef PROGRAM_CACHE_STATS
129 ++fCacheMisses;
130#endif
joshualitta5305a12014-10-10 17:47:00 -0700131 GrGLProgram* program = GrGLProgramBuilder::CreateProgram(optState, desc, type, fGpu);
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
bsalomon49f085d2014-09-05 13:34:00 -0700178 SkASSERT(fEntries[0]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000179 for (int i = 0; i < fCount - 1; ++i) {
bsalomon49f085d2014-09-05 13:34:00 -0700180 SkASSERT(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
joshualitt77b13072014-10-27 14:51:01 -0700206bool GrGpuGL::flushGraphicsState(DrawType type,
207 const ScissorState& scissorState,
208 const GrDeviceCoordTexture* dstCopy) {
egdanielb109ac22014-10-07 06:45:44 -0700209 SkAutoTUnref<GrOptDrawState> optState(GrOptDrawState::Create(this->getDrawState(),
210 *this->caps(),
211 type));
212
213 if (!optState) {
214 return false;
215 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000216
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000217 // GrGpu::setupClipAndFlushState should have already checked this and bailed if not true.
egdaniel170f90b2014-09-16 12:54:40 -0700218 SkASSERT(optState->getRenderTarget());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000219
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000220 if (kStencilPath_DrawType == type) {
egdaniel170f90b2014-09-16 12:54:40 -0700221 const GrRenderTarget* rt = optState->getRenderTarget();
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000222 SkISize size;
223 size.set(rt->width(), rt->height());
egdaniel170f90b2014-09-16 12:54:40 -0700224 this->glPathRendering()->setProjectionMatrix(optState->getViewMatrix(), size, rt->origin());
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000225 } else {
egdanield632ea42014-09-24 10:30:12 -0700226 this->flushMiscFixedFunctionState(*optState.get());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000227
egdaniel170f90b2014-09-16 12:54:40 -0700228 GrBlendCoeff srcCoeff = optState->getSrcBlendCoeff();
229 GrBlendCoeff dstCoeff = optState->getDstBlendCoeff();
230
231 // In these blend coeff's we end up drawing nothing so we can skip draw all together
232 if (kZero_GrBlendCoeff == srcCoeff && kOne_GrBlendCoeff == dstCoeff &&
233 !optState->getStencil().doesWrite()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000234 return false;
235 }
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000236
bsalomon@google.com31ec7982013-03-27 18:14:57 +0000237 GrGLProgramDesc desc;
joshualitta5305a12014-10-10 17:47:00 -0700238 if (!GrGLProgramDesc::Build(*optState.get(), type, this, dstCopy, &desc)) {
bsalomon848faf02014-07-11 10:01:02 -0700239 SkDEBUGFAIL("Failed to generate GL program descriptor");
240 return false;
241 }
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000242
joshualitta5305a12014-10-10 17:47:00 -0700243 fCurrentProgram.reset(fProgramCache->getProgram(*optState.get(), desc, type));
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000244 if (NULL == fCurrentProgram.get()) {
mtklein@google.com330313a2013-08-22 15:37:26 +0000245 SkDEBUGFAIL("Failed to create program!");
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000246 return false;
247 }
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000248
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000249 fCurrentProgram.get()->ref();
junov@google.comf93e7172011-03-31 21:26:24 +0000250
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000251 GrGLuint programID = fCurrentProgram->programID();
252 if (fHWProgramID != programID) {
253 GL_CALL(UseProgram(programID));
254 fHWProgramID = programID;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000255 }
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000256
egdanield632ea42014-09-24 10:30:12 -0700257 this->flushBlend(*optState.get(), kDrawLines_DrawType == type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000258
joshualitta5305a12014-10-10 17:47:00 -0700259 fCurrentProgram->setData(*optState.get(), type, dstCopy, &fSharedGLProgramState);
junov@google.comf93e7172011-03-31 21:26:24 +0000260 }
bsalomonb0bd4f62014-09-03 07:19:50 -0700261
egdaniel170f90b2014-09-16 12:54:40 -0700262 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(optState->getRenderTarget());
joshualitta58fe352014-10-27 08:39:00 -0700263 this->flushStencil(optState->getStencil(), type);
joshualitt77b13072014-10-27 14:51:01 -0700264 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
egdanield632ea42014-09-24 10:30:12 -0700265 this->flushAAState(*optState.get(), type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000266
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000267 SkIRect* devRect = NULL;
268 SkIRect devClipBounds;
egdaniel170f90b2014-09-16 12:54:40 -0700269 if (optState->isClipState()) {
270 this->getClip()->getConservativeBounds(optState->getRenderTarget(), &devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000271 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000272 }
273 // This must come after textures are flushed because a texture may need
274 // to be msaa-resolved (which will modify bound FBO state).
bsalomonb0bd4f62014-09-03 07:19:50 -0700275 this->flushRenderTarget(glRT, devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000276
junov@google.comf93e7172011-03-31 21:26:24 +0000277 return true;
278}
279
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000280void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) {
egdanielb109ac22014-10-07 06:45:44 -0700281 SkAutoTUnref<GrOptDrawState> optState(
282 GrOptDrawState::Create(this->getDrawState(), *this->caps(),
283 PrimTypeToDrawType(info.primitiveType())));
284
285 // If the optState would is NULL it should have been caught in flushGraphicsState before getting
286 // here.
287 SkASSERT(optState);
junov@google.comf93e7172011-03-31 21:26:24 +0000288
egdaniel170f90b2014-09-16 12:54:40 -0700289 GrGLsizei stride = static_cast<GrGLsizei>(optState->getVertexStride());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000290
bsalomon@google.com6918d482013-03-07 19:09:11 +0000291 size_t vertexOffsetInBytes = stride * info.startVertex();
292
293 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
294
295 GrGLVertexBuffer* vbuf;
296 switch (this->getGeomSrc().fVertexSrc) {
297 case kBuffer_GeometrySrcType:
298 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
299 break;
300 case kArray_GeometrySrcType:
301 case kReserved_GeometrySrcType:
302 this->finalizeReservedVertices();
303 vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize;
304 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
305 break;
306 default:
307 vbuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000308 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000309 }
310
bsalomon49f085d2014-09-05 13:34:00 -0700311 SkASSERT(vbuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000312 SkASSERT(!vbuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000313 vertexOffsetInBytes += vbuf->baseOffset();
314
315 GrGLIndexBuffer* ibuf = NULL;
316 if (info.isIndexed()) {
bsalomon49f085d2014-09-05 13:34:00 -0700317 SkASSERT(indexOffsetInBytes);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000318
319 switch (this->getGeomSrc().fIndexSrc) {
320 case kBuffer_GeometrySrcType:
321 *indexOffsetInBytes = 0;
322 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
323 break;
324 case kArray_GeometrySrcType:
325 case kReserved_GeometrySrcType:
326 this->finalizeReservedIndices();
327 *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort);
328 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
329 break;
330 default:
331 ibuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000332 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000333 }
334
bsalomon49f085d2014-09-05 13:34:00 -0700335 SkASSERT(ibuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000336 SkASSERT(!ibuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000337 *indexOffsetInBytes += ibuf->baseOffset();
338 }
339 GrGLAttribArrayState* attribState =
340 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
junov@google.comf93e7172011-03-31 21:26:24 +0000341
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000342 if (fCurrentProgram->hasVertexShader()) {
egdaniel170f90b2014-09-16 12:54:40 -0700343 int vertexAttribCount = optState->getVertexAttribCount();
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000344 uint32_t usedAttribArraysMask = 0;
egdaniel170f90b2014-09-16 12:54:40 -0700345 const GrVertexAttrib* vertexAttrib = optState->getVertexAttribs();
egdaniel02cafcc2014-07-21 11:37:28 -0700346
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000347 for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount;
348 ++vertexAttribIndex, ++vertexAttrib) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000349 usedAttribArraysMask |= (1 << vertexAttribIndex);
350 GrVertexAttribType attribType = vertexAttrib->fType;
351 attribState->set(this,
352 vertexAttribIndex,
353 vbuf,
354 GrGLAttribTypeToLayout(attribType).fCount,
355 GrGLAttribTypeToLayout(attribType).fType,
356 GrGLAttribTypeToLayout(attribType).fNormalized,
357 stride,
358 reinterpret_cast<GrGLvoid*>(
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000359 vertexOffsetInBytes + vertexAttrib->fOffset));
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000360 }
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000361 attribState->disableUnusedArrays(this, usedAttribArraysMask);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000362 }
junov@google.comf93e7172011-03-31 21:26:24 +0000363}