blob: 132d2ed4db4a70075618361db69022a183a4d8a4 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@google.comac10a2d2010-12-22 21:39:39 +000010#include "GrGpu.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000011
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000012#include "GrBufferAllocPool.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000013#include "GrClipIterator.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000014#include "GrContext.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000015#include "GrIndexBuffer.h"
tomhudson@google.comdd182cb2012-02-10 21:01:00 +000016#include "GrStencilBuffer.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000017#include "GrVertexBuffer.h"
bsalomon@google.com1c13c962011-02-14 16:51:21 +000018
19// probably makes no sense for this to be less than a page
bsalomon@google.comee435122011-07-01 14:57:55 +000020static const size_t VERTEX_POOL_VB_SIZE = 1 << 18;
21static const int VERTEX_POOL_VB_COUNT = 4;
bsalomon@google.com25fd36c2011-07-06 17:41:08 +000022static const size_t INDEX_POOL_IB_SIZE = 1 << 16;
23static const int INDEX_POOL_IB_COUNT = 4;
reed@google.comac10a2d2010-12-22 21:39:39 +000024
bsalomon@google.comd302f142011-03-03 13:54:13 +000025////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000026
27extern void gr_run_unittests();
28
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000029#define DEBUG_INVAL_BUFFER 0xdeadcafe
30#define DEBUG_INVAL_START_IDX -1
31
bsalomon@google.com8fe72472011-03-30 21:26:44 +000032GrGpu::GrGpu()
bsalomon@google.com13b85aa2012-06-15 21:09:40 +000033 : fClipMaskManager(this)
34 , fContext(NULL)
bsalomon@google.com979432b2011-11-05 21:38:22 +000035 , fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000036 , fVertexPool(NULL)
37 , fIndexPool(NULL)
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000038 , fVertexPoolUseCnt(0)
39 , fIndexPoolUseCnt(0)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000040 , fQuadIndexBuffer(NULL)
41 , fUnitSquareVertexBuffer(NULL)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000042 , fContextIsDirty(true)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000043 , fResourceHead(NULL) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +000044
reed@google.comac10a2d2010-12-22 21:39:39 +000045#if GR_DEBUG
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +000046 //gr_run_unittests();
reed@google.comac10a2d2010-12-22 21:39:39 +000047#endif
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000048
49 fGeomPoolStateStack.push_back();
50#if GR_DEBUG
51 GeometryPoolState& poolState = fGeomPoolStateStack.back();
52 poolState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
53 poolState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
54 poolState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
55 poolState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
56#endif
robertphillips@google.com99a5ac02012-04-10 19:26:38 +000057
58 for (int i = 0; i < kGrPixelConfigCount; ++i) {
59 fConfigRenderSupport[i] = false;
60 };
reed@google.comac10a2d2010-12-22 21:39:39 +000061}
62
63GrGpu::~GrGpu() {
bsalomon@google.com558a75b2011-08-08 17:01:14 +000064 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +000065}
66
bsalomon@google.com8fe72472011-03-30 21:26:44 +000067void GrGpu::abandonResources() {
68
robertphillips@google.comf105b102012-05-14 12:18:26 +000069 fClipMaskManager.releaseResources();
70
bsalomon@google.com8fe72472011-03-30 21:26:44 +000071 while (NULL != fResourceHead) {
72 fResourceHead->abandon();
73 }
74
75 GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid());
76 GrAssert(NULL == fUnitSquareVertexBuffer ||
77 !fUnitSquareVertexBuffer->isValid());
78 GrSafeSetNull(fQuadIndexBuffer);
79 GrSafeSetNull(fUnitSquareVertexBuffer);
80 delete fVertexPool;
81 fVertexPool = NULL;
82 delete fIndexPool;
83 fIndexPool = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +000084}
85
bsalomon@google.com8fe72472011-03-30 21:26:44 +000086void GrGpu::releaseResources() {
87
robertphillips@google.comf105b102012-05-14 12:18:26 +000088 fClipMaskManager.releaseResources();
89
bsalomon@google.com8fe72472011-03-30 21:26:44 +000090 while (NULL != fResourceHead) {
91 fResourceHead->release();
92 }
93
94 GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid());
95 GrAssert(NULL == fUnitSquareVertexBuffer ||
96 !fUnitSquareVertexBuffer->isValid());
97 GrSafeSetNull(fQuadIndexBuffer);
98 GrSafeSetNull(fUnitSquareVertexBuffer);
99 delete fVertexPool;
100 fVertexPool = NULL;
101 delete fIndexPool;
102 fIndexPool = NULL;
103}
104
105void GrGpu::insertResource(GrResource* resource) {
106 GrAssert(NULL != resource);
107 GrAssert(this == resource->getGpu());
108 GrAssert(NULL == resource->fNext);
109 GrAssert(NULL == resource->fPrevious);
110
111 resource->fNext = fResourceHead;
112 if (NULL != fResourceHead) {
113 GrAssert(NULL == fResourceHead->fPrevious);
114 fResourceHead->fPrevious = resource;
115 }
116 fResourceHead = resource;
117}
118
119void GrGpu::removeResource(GrResource* resource) {
120 GrAssert(NULL != resource);
121 GrAssert(NULL != fResourceHead);
122
123 if (fResourceHead == resource) {
124 GrAssert(NULL == resource->fPrevious);
125 fResourceHead = resource->fNext;
126 } else {
127 GrAssert(NULL != fResourceHead);
128 resource->fPrevious->fNext = resource->fNext;
129 }
130 if (NULL != resource->fNext) {
131 resource->fNext->fPrevious = resource->fPrevious;
132 }
133 resource->fNext = NULL;
134 resource->fPrevious = NULL;
135}
136
137
reed@google.comac10a2d2010-12-22 21:39:39 +0000138void GrGpu::unimpl(const char msg[]) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000139#if GR_DEBUG
140 GrPrintf("--- GrGpu unimplemented(\"%s\")\n", msg);
141#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000142}
143
bsalomon@google.comd302f142011-03-03 13:54:13 +0000144////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000145
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000146GrTexture* GrGpu::createTexture(const GrTextureDesc& desc,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000147 const void* srcData, size_t rowBytes) {
148 this->handleDirtyContext();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000149 GrTexture* tex = this->onCreateTexture(desc, srcData, rowBytes);
150 if (NULL != tex &&
151 (kRenderTarget_GrTextureFlagBit & desc.fFlags) &&
152 !(kNoStencil_GrTextureFlagBit & desc.fFlags)) {
153 GrAssert(NULL != tex->asRenderTarget());
154 // TODO: defer this and attach dynamically
155 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) {
156 tex->unref();
157 return NULL;
158 }
159 }
160 return tex;
161}
162
163bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) {
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000164 GrAssert(NULL == rt->getStencilBuffer());
165 GrStencilBuffer* sb =
bsalomon@google.com99621082011-11-15 16:47:16 +0000166 this->getContext()->findStencilBuffer(rt->width(),
167 rt->height(),
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000168 rt->numSamples());
169 if (NULL != sb) {
170 rt->setStencilBuffer(sb);
171 bool attached = this->attachStencilBufferToRenderTarget(sb, rt);
172 if (!attached) {
173 rt->setStencilBuffer(NULL);
174 }
175 return attached;
176 }
bsalomon@google.com99621082011-11-15 16:47:16 +0000177 if (this->createStencilBufferForRenderTarget(rt,
178 rt->width(), rt->height())) {
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000179 rt->getStencilBuffer()->ref();
180 rt->getStencilBuffer()->transferToCacheAndLock();
181
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000182 // Right now we're clearing the stencil buffer here after it is
183 // attached to an RT for the first time. When we start matching
184 // stencil buffers with smaller color targets this will no longer
185 // be correct because it won't be guaranteed to clear the entire
186 // sb.
187 // We used to clear down in the GL subclass using a special purpose
188 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
189 // FBO status.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000190 GrDrawState::AutoRenderTargetRestore artr(this->drawState(), rt);
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000191 this->clearStencil();
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000192 return true;
193 } else {
194 return false;
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000195 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000196}
197
bsalomon@google.come269f212011-11-07 13:29:52 +0000198GrTexture* GrGpu::createPlatformTexture(const GrPlatformTextureDesc& desc) {
199 this->handleDirtyContext();
200 GrTexture* tex = this->onCreatePlatformTexture(desc);
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000201 if (NULL == tex) {
202 return NULL;
203 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000204 // TODO: defer this and attach dynamically
205 GrRenderTarget* tgt = tex->asRenderTarget();
206 if (NULL != tgt &&
207 !this->attachStencilBufferToRenderTarget(tgt)) {
208 tex->unref();
209 return NULL;
210 } else {
211 return tex;
212 }
213}
214
215GrRenderTarget* GrGpu::createPlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) {
216 this->handleDirtyContext();
217 return this->onCreatePlatformRenderTarget(desc);
218}
219
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000220GrVertexBuffer* GrGpu::createVertexBuffer(uint32_t size, bool dynamic) {
221 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000222 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000223}
224
225GrIndexBuffer* GrGpu::createIndexBuffer(uint32_t size, bool dynamic) {
226 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000227 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000228}
229
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000230GrPath* GrGpu::createPath(const SkPath& path) {
231 GrAssert(fCaps.fPathStencilingSupport);
232 this->handleDirtyContext();
233 return this->onCreatePath(path);
234}
235
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000236void GrGpu::clear(const GrIRect* rect, GrColor color) {
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000237 if (NULL == this->getDrawState().getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000238 return;
239 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000240 this->handleDirtyContext();
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000241 this->onClear(rect, color);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000242}
243
244void GrGpu::forceRenderTargetFlush() {
245 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000246 this->onForceRenderTargetFlush();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000247}
248
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000249bool GrGpu::readPixels(GrRenderTarget* target,
250 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000251 GrPixelConfig config, void* buffer,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000252 size_t rowBytes, bool invertY) {
253 GrAssert(GrPixelConfigIsUnpremultiplied(config) ==
254 GrPixelConfigIsUnpremultiplied(target->config()));
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000255 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000256 return this->onReadPixels(target, left, top, width, height,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000257 config, buffer, rowBytes, invertY);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000258}
259
bsalomon@google.com6f379512011-11-16 20:36:03 +0000260void GrGpu::writeTexturePixels(GrTexture* texture,
261 int left, int top, int width, int height,
262 GrPixelConfig config, const void* buffer,
263 size_t rowBytes) {
264 GrAssert(GrPixelConfigIsUnpremultiplied(config) ==
265 GrPixelConfigIsUnpremultiplied(texture->config()));
266 this->handleDirtyContext();
267 this->onWriteTexturePixels(texture, left, top, width, height,
268 config, buffer, rowBytes);
269}
270
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000271void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
272 GrAssert(target);
273 this->handleDirtyContext();
274 this->onResolveRenderTarget(target);
275}
276
277
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000278////////////////////////////////////////////////////////////////////////////////
279
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000280static const int MAX_QUADS = 1 << 12; // max possible: (1 << 14) - 1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000281
reed@google.com8195f672011-01-12 18:14:28 +0000282GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535);
reed@google.comac10a2d2010-12-22 21:39:39 +0000283
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000284static inline void fill_indices(uint16_t* indices, int quadCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000285 for (int i = 0; i < quadCount; ++i) {
286 indices[6 * i + 0] = 4 * i + 0;
287 indices[6 * i + 1] = 4 * i + 1;
288 indices[6 * i + 2] = 4 * i + 2;
289 indices[6 * i + 3] = 4 * i + 0;
290 indices[6 * i + 4] = 4 * i + 2;
291 indices[6 * i + 5] = 4 * i + 3;
292 }
293}
294
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000295const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000296 if (NULL == fQuadIndexBuffer) {
297 static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS;
298 GrGpu* me = const_cast<GrGpu*>(this);
299 fQuadIndexBuffer = me->createIndexBuffer(SIZE, false);
300 if (NULL != fQuadIndexBuffer) {
301 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->lock();
302 if (NULL != indices) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000303 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000304 fQuadIndexBuffer->unlock();
305 } else {
306 indices = (uint16_t*)GrMalloc(SIZE);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000307 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000308 if (!fQuadIndexBuffer->updateData(indices, SIZE)) {
309 fQuadIndexBuffer->unref();
310 fQuadIndexBuffer = NULL;
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000311 GrCrash("Can't get indices into buffer!");
reed@google.comac10a2d2010-12-22 21:39:39 +0000312 }
313 GrFree(indices);
314 }
315 }
316 }
317
318 return fQuadIndexBuffer;
319}
320
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000321const GrVertexBuffer* GrGpu::getUnitSquareVertexBuffer() const {
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000322 if (NULL == fUnitSquareVertexBuffer) {
323
324 static const GrPoint DATA[] = {
reed@google.com7744c202011-05-06 19:26:26 +0000325 { 0, 0 },
326 { GR_Scalar1, 0 },
327 { GR_Scalar1, GR_Scalar1 },
328 { 0, GR_Scalar1 }
329#if 0
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000330 GrPoint(0, 0),
331 GrPoint(GR_Scalar1,0),
332 GrPoint(GR_Scalar1,GR_Scalar1),
333 GrPoint(0, GR_Scalar1)
reed@google.com7744c202011-05-06 19:26:26 +0000334#endif
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000335 };
336 static const size_t SIZE = sizeof(DATA);
337
338 GrGpu* me = const_cast<GrGpu*>(this);
339 fUnitSquareVertexBuffer = me->createVertexBuffer(SIZE, false);
340 if (NULL != fUnitSquareVertexBuffer) {
341 if (!fUnitSquareVertexBuffer->updateData(DATA, SIZE)) {
342 fUnitSquareVertexBuffer->unref();
343 fUnitSquareVertexBuffer = NULL;
344 GrCrash("Can't get vertices into buffer!");
345 }
346 }
347 }
348
349 return fUnitSquareVertexBuffer;
350}
351
bsalomon@google.comd302f142011-03-03 13:54:13 +0000352////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000353
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000354bool GrGpu::setupClipAndFlushState(DrawType type) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000355
bsalomon@google.coma3201942012-06-21 19:58:20 +0000356 if (!fClipMaskManager.setupClipping(fClip)) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000357 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000358 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000359
bsalomon@google.comd302f142011-03-03 13:54:13 +0000360 if (!this->flushGraphicsState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000361 return false;
362 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000363
reed@google.comac10a2d2010-12-22 21:39:39 +0000364 return true;
365}
366
bsalomon@google.comd302f142011-03-03 13:54:13 +0000367////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000368
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000369void GrGpu::geometrySourceWillPush() {
370 const GeometrySrcState& geoSrc = this->getGeomSrc();
371 if (kArray_GeometrySrcType == geoSrc.fVertexSrc ||
372 kReserved_GeometrySrcType == geoSrc.fVertexSrc) {
373 this->finalizeReservedVertices();
374 }
375 if (kArray_GeometrySrcType == geoSrc.fIndexSrc ||
376 kReserved_GeometrySrcType == geoSrc.fIndexSrc) {
377 this->finalizeReservedIndices();
378 }
379 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
380#if GR_DEBUG
381 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
382 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
383 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
384 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
385#endif
386}
387
388void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) {
389 // if popping last entry then pops are unbalanced with pushes
390 GrAssert(fGeomPoolStateStack.count() > 1);
391 fGeomPoolStateStack.pop_back();
392}
393
394void GrGpu::onDrawIndexed(GrPrimitiveType type,
395 int startVertex,
396 int startIndex,
397 int vertexCount,
398 int indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000399
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000400 this->handleDirtyContext();
401
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000402 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000403 return;
404 }
405
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000406 int sVertex = startVertex;
407 int sIndex = startIndex;
408 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000409
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000410 this->onGpuDrawIndexed(type, sVertex, sIndex,
411 vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000412}
413
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000414void GrGpu::onDrawNonIndexed(GrPrimitiveType type,
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000415 int startVertex,
416 int vertexCount) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000417 this->handleDirtyContext();
418
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000419 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000420 return;
421 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000422
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000423 int sVertex = startVertex;
424 setupGeometry(&sVertex, NULL, vertexCount, 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000425
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000426 this->onGpuDrawNonIndexed(type, sVertex, vertexCount);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000427}
428
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000429void GrGpu::onStencilPath(const GrPath& path, GrPathFill fill) {
430 this->handleDirtyContext();
431
432 if (!this->setupClipAndFlushState(kStencilPath_DrawType)) {
433 return;
434 }
435
436 this->onGpuStencilPath(path, fill);
437}
438
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000439void GrGpu::finalizeReservedVertices() {
440 GrAssert(NULL != fVertexPool);
441 fVertexPool->unlock();
442}
443
444void GrGpu::finalizeReservedIndices() {
445 GrAssert(NULL != fIndexPool);
446 fIndexPool->unlock();
447}
448
449void GrGpu::prepareVertexPool() {
450 if (NULL == fVertexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000451 GrAssert(0 == fVertexPoolUseCnt);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000452 fVertexPool = new GrVertexBufferAllocPool(this, true,
453 VERTEX_POOL_VB_SIZE,
bsalomon@google.com7a5af8b2011-02-18 18:40:42 +0000454 VERTEX_POOL_VB_COUNT);
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000455 fVertexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000456 } else if (!fVertexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000457 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000458 fVertexPool->reset();
459 }
460}
461
462void GrGpu::prepareIndexPool() {
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000463 if (NULL == fIndexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000464 GrAssert(0 == fIndexPoolUseCnt);
bsalomon@google.com25fd36c2011-07-06 17:41:08 +0000465 fIndexPool = new GrIndexBufferAllocPool(this, true,
466 INDEX_POOL_IB_SIZE,
467 INDEX_POOL_IB_COUNT);
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000468 fIndexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000469 } else if (!fIndexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000470 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000471 fIndexPool->reset();
472 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000473}
474
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000475bool GrGpu::onReserveVertexSpace(GrVertexLayout vertexLayout,
476 int vertexCount,
477 void** vertices) {
478 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
479
480 GrAssert(vertexCount > 0);
481 GrAssert(NULL != vertices);
482
483 this->prepareVertexPool();
484
485 *vertices = fVertexPool->makeSpace(vertexLayout,
486 vertexCount,
487 &geomPoolState.fPoolVertexBuffer,
488 &geomPoolState.fPoolStartVertex);
489 if (NULL == *vertices) {
490 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000491 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000492 ++fVertexPoolUseCnt;
reed@google.comac10a2d2010-12-22 21:39:39 +0000493 return true;
494}
495
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000496bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) {
497 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
498
499 GrAssert(indexCount > 0);
500 GrAssert(NULL != indices);
501
502 this->prepareIndexPool();
503
504 *indices = fIndexPool->makeSpace(indexCount,
505 &geomPoolState.fPoolIndexBuffer,
506 &geomPoolState.fPoolStartIndex);
507 if (NULL == *indices) {
508 return false;
509 }
510 ++fIndexPoolUseCnt;
511 return true;
512}
513
514void GrGpu::releaseReservedVertexSpace() {
515 const GeometrySrcState& geoSrc = this->getGeomSrc();
516 GrAssert(kReserved_GeometrySrcType == geoSrc.fVertexSrc);
517 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
518 fVertexPool->putBack(bytes);
519 --fVertexPoolUseCnt;
520}
521
522void GrGpu::releaseReservedIndexSpace() {
523 const GeometrySrcState& geoSrc = this->getGeomSrc();
524 GrAssert(kReserved_GeometrySrcType == geoSrc.fIndexSrc);
525 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
526 fIndexPool->putBack(bytes);
527 --fIndexPoolUseCnt;
528}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000529
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000530void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000531 this->prepareVertexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000532 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000533#if GR_DEBUG
534 bool success =
535#endif
bsalomon@google.come79c8152012-03-29 19:07:12 +0000536 fVertexPool->appendVertices(this->getVertexLayout(),
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000537 vertexCount,
538 vertexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000539 &geomPoolState.fPoolVertexBuffer,
540 &geomPoolState.fPoolStartVertex);
541 ++fVertexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000542 GR_DEBUGASSERT(success);
543}
544
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000545void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000546 this->prepareIndexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000547 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000548#if GR_DEBUG
549 bool success =
550#endif
551 fIndexPool->appendIndices(indexCount,
552 indexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000553 &geomPoolState.fPoolIndexBuffer,
554 &geomPoolState.fPoolStartIndex);
555 ++fIndexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000556 GR_DEBUGASSERT(success);
reed@google.comac10a2d2010-12-22 21:39:39 +0000557}
558
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000559void GrGpu::releaseVertexArray() {
560 // if vertex source was array, we stowed data in the pool
561 const GeometrySrcState& geoSrc = this->getGeomSrc();
562 GrAssert(kArray_GeometrySrcType == geoSrc.fVertexSrc);
563 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
564 fVertexPool->putBack(bytes);
565 --fVertexPoolUseCnt;
566}
567
568void GrGpu::releaseIndexArray() {
569 // if index source was array, we stowed data in the pool
570 const GeometrySrcState& geoSrc = this->getGeomSrc();
571 GrAssert(kArray_GeometrySrcType == geoSrc.fIndexSrc);
572 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
573 fIndexPool->putBack(bytes);
574 --fIndexPoolUseCnt;
575}
576