blob: 330f348d86551f6ff20fa5cfbafc86f5b625bb79 [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 {
joshualitt79f8fae2014-10-28 17:59:26 -070034 bool operator() (const GrProgramDesc& desc, const Entry* entry) {
bsalomon49f085d2014-09-05 13:34:00 -070035 SkASSERT(entry->fProgram.get());
joshualitt79f8fae2014-10-28 17:59:26 -070036 return GrProgramDesc::Less(desc, entry->fProgram->getDesc());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000037 }
38
joshualitt79f8fae2014-10-28 17:59:26 -070039 bool operator() (const Entry* entry, const GrProgramDesc& desc) {
bsalomon49f085d2014-09-05 13:34:00 -070040 SkASSERT(entry->fProgram.get());
joshualitt79f8fae2014-10-28 17:59:26 -070041 return GrProgramDesc::Less(entry->fProgram->getDesc(), desc);
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000042 }
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
joshualitt79f8fae2014-10-28 17:59:26 -070089int GrGpuGL::ProgramCache::search(const GrProgramDesc& desc) const {
bsalomon@google.com2db3ded2013-05-22 14:34:04 +000090 ProgDescLess less;
91 return SkTSearch(fEntries, fCount, desc, sizeof(Entry*), less);
92}
93
joshualitt79f8fae2014-10-28 17:59:26 -070094GrGLProgram* GrGpuGL::ProgramCache::getProgram(const GrOptDrawState& optState, DrawType type) {
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
joshualitt79f8fae2014-10-28 17:59:26 -0700101 uint32_t hashIdx = optState.programDesc().getChecksum();
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000102 hashIdx ^= hashIdx >> 16;
103 if (kHashBits <= 8) {
104 hashIdx ^= hashIdx >> 8;
105 }
106 hashIdx &=((1 << kHashBits) - 1);
107 Entry* hashedEntry = fHashTable[hashIdx];
joshualitt79f8fae2014-10-28 17:59:26 -0700108 if (hashedEntry && hashedEntry->fProgram->getDesc() == optState.programDesc()) {
bsalomon49f085d2014-09-05 13:34:00 -0700109 SkASSERT(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) {
joshualitt79f8fae2014-10-28 17:59:26 -0700115 entryIdx = this->search(optState.programDesc());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000116 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
joshualitt79f8fae2014-10-28 17:59:26 -0700129 GrGLProgram* program = GrGLProgramBuilder::CreateProgram(optState, type, fGpu);
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
bsalomon49f085d2014-09-05 13:34:00 -0700176 SkASSERT(fEntries[0]->fProgram.get());
bsalomon@google.com2db3ded2013-05-22 14:34:04 +0000177 for (int i = 0; i < fCount - 1; ++i) {
bsalomon49f085d2014-09-05 13:34:00 -0700178 SkASSERT(fEntries[i + 1]->fProgram.get());
joshualitt79f8fae2014-10-28 17:59:26 -0700179 const GrProgramDesc& a = fEntries[i]->fProgram->getDesc();
180 const GrProgramDesc& b = fEntries[i + 1]->fProgram->getDesc();
181 SkASSERT(GrProgramDesc::Less(a, b));
182 SkASSERT(!GrProgramDesc::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
joshualitt77b13072014-10-27 14:51:01 -0700204bool GrGpuGL::flushGraphicsState(DrawType type,
joshualitt6db519c2014-10-29 08:48:18 -0700205 const GrClipMaskManager::ScissorState& scissorState,
joshualitt77b13072014-10-27 14:51:01 -0700206 const GrDeviceCoordTexture* dstCopy) {
egdanielb109ac22014-10-07 06:45:44 -0700207 SkAutoTUnref<GrOptDrawState> optState(GrOptDrawState::Create(this->getDrawState(),
joshualitt79f8fae2014-10-28 17:59:26 -0700208 this,
209 dstCopy,
egdanielb109ac22014-10-07 06:45:44 -0700210 type));
211
212 if (!optState) {
213 return false;
214 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000215
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000216 // GrGpu::setupClipAndFlushState should have already checked this and bailed if not true.
egdaniel170f90b2014-09-16 12:54:40 -0700217 SkASSERT(optState->getRenderTarget());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000218
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000219 if (kStencilPath_DrawType == type) {
egdaniel170f90b2014-09-16 12:54:40 -0700220 const GrRenderTarget* rt = optState->getRenderTarget();
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000221 SkISize size;
222 size.set(rt->width(), rt->height());
egdaniel170f90b2014-09-16 12:54:40 -0700223 this->glPathRendering()->setProjectionMatrix(optState->getViewMatrix(), size, rt->origin());
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000224 } else {
egdanield632ea42014-09-24 10:30:12 -0700225 this->flushMiscFixedFunctionState(*optState.get());
bsalomon@google.comc96cb3a2012-06-04 19:31:00 +0000226
egdaniel170f90b2014-09-16 12:54:40 -0700227 GrBlendCoeff srcCoeff = optState->getSrcBlendCoeff();
228 GrBlendCoeff dstCoeff = optState->getDstBlendCoeff();
229
230 // In these blend coeff's we end up drawing nothing so we can skip draw all together
231 if (kZero_GrBlendCoeff == srcCoeff && kOne_GrBlendCoeff == dstCoeff &&
232 !optState->getStencil().doesWrite()) {
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000233 return false;
234 }
bsalomon@google.com86c1f712011-10-12 14:54:26 +0000235
joshualitt79f8fae2014-10-28 17:59:26 -0700236 fCurrentProgram.reset(fProgramCache->getProgram(*optState.get(), type));
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000237 if (NULL == fCurrentProgram.get()) {
mtklein@google.com330313a2013-08-22 15:37:26 +0000238 SkDEBUGFAIL("Failed to create program!");
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000239 return false;
240 }
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000241
bsalomon@google.com9ba4fa62012-07-16 17:36:28 +0000242 fCurrentProgram.get()->ref();
junov@google.comf93e7172011-03-31 21:26:24 +0000243
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000244 GrGLuint programID = fCurrentProgram->programID();
245 if (fHWProgramID != programID) {
246 GL_CALL(UseProgram(programID));
247 fHWProgramID = programID;
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000248 }
bsalomon@google.com6a51dcb2013-02-13 16:03:51 +0000249
egdanield632ea42014-09-24 10:30:12 -0700250 this->flushBlend(*optState.get(), kDrawLines_DrawType == type, srcCoeff, dstCoeff);
junov@google.comf93e7172011-03-31 21:26:24 +0000251
joshualitt0e602822014-10-28 10:27:44 -0700252 fCurrentProgram->setData(*optState.get(), type, dstCopy);
junov@google.comf93e7172011-03-31 21:26:24 +0000253 }
bsalomonb0bd4f62014-09-03 07:19:50 -0700254
egdaniel170f90b2014-09-16 12:54:40 -0700255 GrGLRenderTarget* glRT = static_cast<GrGLRenderTarget*>(optState->getRenderTarget());
joshualitta58fe352014-10-27 08:39:00 -0700256 this->flushStencil(optState->getStencil(), type);
joshualitt77b13072014-10-27 14:51:01 -0700257 this->flushScissor(scissorState, glRT->getViewport(), glRT->origin());
egdanield632ea42014-09-24 10:30:12 -0700258 this->flushAAState(*optState.get(), type);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000259
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000260 SkIRect* devRect = NULL;
261 SkIRect devClipBounds;
egdaniel170f90b2014-09-16 12:54:40 -0700262 if (optState->isClipState()) {
263 this->getClip()->getConservativeBounds(optState->getRenderTarget(), &devClipBounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000264 devRect = &devClipBounds;
bsalomon@google.com4c883782012-06-04 19:05:11 +0000265 }
266 // This must come after textures are flushed because a texture may need
267 // to be msaa-resolved (which will modify bound FBO state).
bsalomonb0bd4f62014-09-03 07:19:50 -0700268 this->flushRenderTarget(glRT, devRect);
bsalomon@google.com4c883782012-06-04 19:05:11 +0000269
junov@google.comf93e7172011-03-31 21:26:24 +0000270 return true;
271}
272
bsalomon@google.com880b8fc2013-02-19 20:17:28 +0000273void GrGpuGL::setupGeometry(const DrawInfo& info, size_t* indexOffsetInBytes) {
egdanielb109ac22014-10-07 06:45:44 -0700274 SkAutoTUnref<GrOptDrawState> optState(
joshualitt79f8fae2014-10-28 17:59:26 -0700275 GrOptDrawState::Create(this->getDrawState(), this, info.getDstCopy(),
egdanielb109ac22014-10-07 06:45:44 -0700276 PrimTypeToDrawType(info.primitiveType())));
277
278 // If the optState would is NULL it should have been caught in flushGraphicsState before getting
279 // here.
280 SkASSERT(optState);
junov@google.comf93e7172011-03-31 21:26:24 +0000281
egdaniel170f90b2014-09-16 12:54:40 -0700282 GrGLsizei stride = static_cast<GrGLsizei>(optState->getVertexStride());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000283
bsalomon@google.com6918d482013-03-07 19:09:11 +0000284 size_t vertexOffsetInBytes = stride * info.startVertex();
285
286 const GeometryPoolState& geoPoolState = this->getGeomPoolState();
287
288 GrGLVertexBuffer* vbuf;
289 switch (this->getGeomSrc().fVertexSrc) {
290 case kBuffer_GeometrySrcType:
291 vbuf = (GrGLVertexBuffer*) this->getGeomSrc().fVertexBuffer;
292 break;
293 case kArray_GeometrySrcType:
294 case kReserved_GeometrySrcType:
295 this->finalizeReservedVertices();
296 vertexOffsetInBytes += geoPoolState.fPoolStartVertex * this->getGeomSrc().fVertexSize;
297 vbuf = (GrGLVertexBuffer*) geoPoolState.fPoolVertexBuffer;
298 break;
299 default:
300 vbuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000301 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000302 }
303
bsalomon49f085d2014-09-05 13:34:00 -0700304 SkASSERT(vbuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000305 SkASSERT(!vbuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000306 vertexOffsetInBytes += vbuf->baseOffset();
307
308 GrGLIndexBuffer* ibuf = NULL;
309 if (info.isIndexed()) {
bsalomon49f085d2014-09-05 13:34:00 -0700310 SkASSERT(indexOffsetInBytes);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000311
312 switch (this->getGeomSrc().fIndexSrc) {
313 case kBuffer_GeometrySrcType:
314 *indexOffsetInBytes = 0;
315 ibuf = (GrGLIndexBuffer*)this->getGeomSrc().fIndexBuffer;
316 break;
317 case kArray_GeometrySrcType:
318 case kReserved_GeometrySrcType:
319 this->finalizeReservedIndices();
320 *indexOffsetInBytes = geoPoolState.fPoolStartIndex * sizeof(GrGLushort);
321 ibuf = (GrGLIndexBuffer*) geoPoolState.fPoolIndexBuffer;
322 break;
323 default:
324 ibuf = NULL; // suppress warning
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000325 SkFAIL("Unknown geometry src type!");
bsalomon@google.com6918d482013-03-07 19:09:11 +0000326 }
327
bsalomon49f085d2014-09-05 13:34:00 -0700328 SkASSERT(ibuf);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000329 SkASSERT(!ibuf->isMapped());
bsalomon@google.com6918d482013-03-07 19:09:11 +0000330 *indexOffsetInBytes += ibuf->baseOffset();
331 }
332 GrGLAttribArrayState* attribState =
333 fHWGeometryState.bindArrayAndBuffersToDraw(this, vbuf, ibuf);
junov@google.comf93e7172011-03-31 21:26:24 +0000334
commit-bot@chromium.org0a6fe712014-04-23 19:26:26 +0000335 if (fCurrentProgram->hasVertexShader()) {
egdaniel170f90b2014-09-16 12:54:40 -0700336 int vertexAttribCount = optState->getVertexAttribCount();
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000337 uint32_t usedAttribArraysMask = 0;
egdaniel170f90b2014-09-16 12:54:40 -0700338 const GrVertexAttrib* vertexAttrib = optState->getVertexAttribs();
egdaniel02cafcc2014-07-21 11:37:28 -0700339
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000340 for (int vertexAttribIndex = 0; vertexAttribIndex < vertexAttribCount;
341 ++vertexAttribIndex, ++vertexAttrib) {
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000342 usedAttribArraysMask |= (1 << vertexAttribIndex);
343 GrVertexAttribType attribType = vertexAttrib->fType;
344 attribState->set(this,
345 vertexAttribIndex,
346 vbuf,
347 GrGLAttribTypeToLayout(attribType).fCount,
348 GrGLAttribTypeToLayout(attribType).fType,
349 GrGLAttribTypeToLayout(attribType).fNormalized,
350 stride,
351 reinterpret_cast<GrGLvoid*>(
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000352 vertexOffsetInBytes + vertexAttrib->fOffset));
commit-bot@chromium.org6b30e452013-10-04 20:02:53 +0000353 }
commit-bot@chromium.org6ebfbf92014-02-24 12:05:02 +0000354 attribState->disableUnusedArrays(this, usedAttribArraysMask);
bsalomon@google.com6918d482013-03-07 19:09:11 +0000355 }
junov@google.comf93e7172011-03-31 21:26:24 +0000356}
joshualitt79f8fae2014-10-28 17:59:26 -0700357
358void GrGpuGL::buildProgramDesc(const GrOptDrawState& optState,
359 const GrProgramDesc::DescInfo& descInfo,
360 GrGpu::DrawType drawType,
361 const GrDeviceCoordTexture* dstCopy,
362 GrProgramDesc* desc) {
363 if (!GrGLProgramDescBuilder::Build(optState, descInfo, drawType, this, dstCopy, desc)) {
364 SkDEBUGFAIL("Failed to generate GL program descriptor");
365 }
366}