blob: 514d176afc3343b18e83807bec69902a68c05868 [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"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000013#include "GrContext.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000014#include "GrIndexBuffer.h"
tomhudson@google.comdd182cb2012-02-10 21:01:00 +000015#include "GrStencilBuffer.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000016#include "GrVertexBuffer.h"
bsalomon@google.com1c13c962011-02-14 16:51:21 +000017
18// probably makes no sense for this to be less than a page
bsalomon@google.comee435122011-07-01 14:57:55 +000019static const size_t VERTEX_POOL_VB_SIZE = 1 << 18;
20static const int VERTEX_POOL_VB_COUNT = 4;
bsalomon@google.com25fd36c2011-07-06 17:41:08 +000021static const size_t INDEX_POOL_IB_SIZE = 1 << 16;
22static const int INDEX_POOL_IB_COUNT = 4;
reed@google.comac10a2d2010-12-22 21:39:39 +000023
bsalomon@google.comd302f142011-03-03 13:54:13 +000024////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000025
26extern void gr_run_unittests();
27
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000028#define DEBUG_INVAL_BUFFER 0xdeadcafe
29#define DEBUG_INVAL_START_IDX -1
30
bsalomon@google.com8fe72472011-03-30 21:26:44 +000031GrGpu::GrGpu()
robertphillips@google.com5d8d1862012-08-15 14:36:41 +000032 : fContext(NULL)
bsalomon@google.com979432b2011-11-05 21:38:22 +000033 , fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000034 , fVertexPool(NULL)
35 , fIndexPool(NULL)
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000036 , fVertexPoolUseCnt(0)
37 , fIndexPoolUseCnt(0)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000038 , fQuadIndexBuffer(NULL)
39 , fUnitSquareVertexBuffer(NULL)
robertphillips@google.com9474ed02012-09-04 13:34:32 +000040 , fContextIsDirty(true) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +000041
robertphillips@google.com5d8d1862012-08-15 14:36:41 +000042 fClipMaskManager.setGpu(this);
43
reed@google.comac10a2d2010-12-22 21:39:39 +000044#if GR_DEBUG
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +000045 //gr_run_unittests();
reed@google.comac10a2d2010-12-22 21:39:39 +000046#endif
robertphillips@google.com5d8d1862012-08-15 14:36:41 +000047
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000048 fGeomPoolStateStack.push_back();
49#if GR_DEBUG
50 GeometryPoolState& poolState = fGeomPoolStateStack.back();
51 poolState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
52 poolState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
53 poolState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
54 poolState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
55#endif
robertphillips@google.com99a5ac02012-04-10 19:26:38 +000056
57 for (int i = 0; i < kGrPixelConfigCount; ++i) {
58 fConfigRenderSupport[i] = false;
59 };
reed@google.comac10a2d2010-12-22 21:39:39 +000060}
61
62GrGpu::~GrGpu() {
bsalomon@google.com558a75b2011-08-08 17:01:14 +000063 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +000064}
65
bsalomon@google.com8fe72472011-03-30 21:26:44 +000066void GrGpu::abandonResources() {
67
robertphillips@google.comf105b102012-05-14 12:18:26 +000068 fClipMaskManager.releaseResources();
69
robertphillips@google.com9474ed02012-09-04 13:34:32 +000070 while (NULL != fResourceList.head()) {
71 fResourceList.head()->abandon();
bsalomon@google.com8fe72472011-03-30 21:26:44 +000072 }
73
74 GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid());
75 GrAssert(NULL == fUnitSquareVertexBuffer ||
76 !fUnitSquareVertexBuffer->isValid());
77 GrSafeSetNull(fQuadIndexBuffer);
78 GrSafeSetNull(fUnitSquareVertexBuffer);
79 delete fVertexPool;
80 fVertexPool = NULL;
81 delete fIndexPool;
82 fIndexPool = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +000083}
84
bsalomon@google.com8fe72472011-03-30 21:26:44 +000085void GrGpu::releaseResources() {
86
robertphillips@google.comf105b102012-05-14 12:18:26 +000087 fClipMaskManager.releaseResources();
88
robertphillips@google.com9474ed02012-09-04 13:34:32 +000089 while (NULL != fResourceList.head()) {
90 fResourceList.head()->release();
bsalomon@google.com8fe72472011-03-30 21:26:44 +000091 }
92
93 GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid());
94 GrAssert(NULL == fUnitSquareVertexBuffer ||
95 !fUnitSquareVertexBuffer->isValid());
96 GrSafeSetNull(fQuadIndexBuffer);
97 GrSafeSetNull(fUnitSquareVertexBuffer);
98 delete fVertexPool;
99 fVertexPool = NULL;
100 delete fIndexPool;
101 fIndexPool = NULL;
102}
103
104void GrGpu::insertResource(GrResource* resource) {
105 GrAssert(NULL != resource);
106 GrAssert(this == resource->getGpu());
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000107
robertphillips@google.com9474ed02012-09-04 13:34:32 +0000108 fResourceList.addToHead(resource);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000109}
110
111void GrGpu::removeResource(GrResource* resource) {
112 GrAssert(NULL != resource);
robertphillips@google.com9474ed02012-09-04 13:34:32 +0000113 GrAssert(this == resource->getGpu());
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000114
robertphillips@google.com9474ed02012-09-04 13:34:32 +0000115 fResourceList.remove(resource);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000116}
117
118
reed@google.comac10a2d2010-12-22 21:39:39 +0000119void GrGpu::unimpl(const char msg[]) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000120#if GR_DEBUG
121 GrPrintf("--- GrGpu unimplemented(\"%s\")\n", msg);
122#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000123}
124
bsalomon@google.comd302f142011-03-03 13:54:13 +0000125////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000126
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000127GrTexture* GrGpu::createTexture(const GrTextureDesc& desc,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000128 const void* srcData, size_t rowBytes) {
129 this->handleDirtyContext();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000130 GrTexture* tex = this->onCreateTexture(desc, srcData, rowBytes);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000131 if (NULL != tex &&
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000132 (kRenderTarget_GrTextureFlagBit & desc.fFlags) &&
133 !(kNoStencil_GrTextureFlagBit & desc.fFlags)) {
134 GrAssert(NULL != tex->asRenderTarget());
135 // TODO: defer this and attach dynamically
136 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) {
137 tex->unref();
138 return NULL;
139 }
140 }
141 return tex;
142}
143
144bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) {
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000145 GrAssert(NULL == rt->getStencilBuffer());
rmistry@google.comd6176b02012-08-23 18:14:13 +0000146 GrStencilBuffer* sb =
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000147 this->getContext()->findStencilBuffer(rt->width(),
148 rt->height(),
149 rt->numSamples());
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000150 if (NULL != sb) {
151 rt->setStencilBuffer(sb);
152 bool attached = this->attachStencilBufferToRenderTarget(sb, rt);
153 if (!attached) {
154 rt->setStencilBuffer(NULL);
155 }
156 return attached;
157 }
bsalomon@google.com99621082011-11-15 16:47:16 +0000158 if (this->createStencilBufferForRenderTarget(rt,
159 rt->width(), rt->height())) {
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000160 // Right now we're clearing the stencil buffer here after it is
161 // attached to an RT for the first time. When we start matching
162 // stencil buffers with smaller color targets this will no longer
163 // be correct because it won't be guaranteed to clear the entire
164 // sb.
165 // We used to clear down in the GL subclass using a special purpose
166 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
167 // FBO status.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000168 GrDrawState::AutoRenderTargetRestore artr(this->drawState(), rt);
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000169 this->clearStencil();
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000170 return true;
171 } else {
172 return false;
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000173 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000174}
175
bsalomon@google.come269f212011-11-07 13:29:52 +0000176GrTexture* GrGpu::createPlatformTexture(const GrPlatformTextureDesc& desc) {
177 this->handleDirtyContext();
178 GrTexture* tex = this->onCreatePlatformTexture(desc);
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000179 if (NULL == tex) {
180 return NULL;
181 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000182 // TODO: defer this and attach dynamically
183 GrRenderTarget* tgt = tex->asRenderTarget();
184 if (NULL != tgt &&
185 !this->attachStencilBufferToRenderTarget(tgt)) {
186 tex->unref();
187 return NULL;
188 } else {
189 return tex;
190 }
191}
192
193GrRenderTarget* GrGpu::createPlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) {
194 this->handleDirtyContext();
195 return this->onCreatePlatformRenderTarget(desc);
196}
197
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000198GrVertexBuffer* GrGpu::createVertexBuffer(uint32_t size, bool dynamic) {
199 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000200 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000201}
202
203GrIndexBuffer* GrGpu::createIndexBuffer(uint32_t size, bool dynamic) {
204 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000205 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000206}
207
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000208GrPath* GrGpu::createPath(const SkPath& path) {
bsalomon@google.comf6601872012-08-28 21:11:35 +0000209 GrAssert(fCaps.pathStencilingSupport());
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000210 this->handleDirtyContext();
211 return this->onCreatePath(path);
212}
213
rmistry@google.comd6176b02012-08-23 18:14:13 +0000214void GrGpu::clear(const GrIRect* rect,
215 GrColor color,
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000216 GrRenderTarget* renderTarget) {
217 GrRenderTarget* oldRT = NULL;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000218 if (NULL != renderTarget &&
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000219 renderTarget != this->drawState()->getRenderTarget()) {
220 oldRT = this->drawState()->getRenderTarget();
221 this->drawState()->setRenderTarget(renderTarget);
222 }
223
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000224 if (NULL == this->getDrawState().getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000225 return;
226 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000227 this->handleDirtyContext();
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000228 this->onClear(rect, color);
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000229
230 if (NULL != oldRT) {
231 this->drawState()->setRenderTarget(oldRT);
232 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000233}
234
235void GrGpu::forceRenderTargetFlush() {
236 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000237 this->onForceRenderTargetFlush();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000238}
239
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000240bool GrGpu::readPixels(GrRenderTarget* target,
241 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000242 GrPixelConfig config, void* buffer,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000243 size_t rowBytes, bool invertY) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000244 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000245 return this->onReadPixels(target, left, top, width, height,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000246 config, buffer, rowBytes, invertY);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000247}
248
bsalomon@google.com6f379512011-11-16 20:36:03 +0000249void GrGpu::writeTexturePixels(GrTexture* texture,
250 int left, int top, int width, int height,
251 GrPixelConfig config, const void* buffer,
252 size_t rowBytes) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000253 this->handleDirtyContext();
254 this->onWriteTexturePixels(texture, left, top, width, height,
255 config, buffer, rowBytes);
256}
257
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000258void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
259 GrAssert(target);
260 this->handleDirtyContext();
261 this->onResolveRenderTarget(target);
262}
263
264
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000265////////////////////////////////////////////////////////////////////////////////
266
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000267static const int MAX_QUADS = 1 << 12; // max possible: (1 << 14) - 1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000268
reed@google.com8195f672011-01-12 18:14:28 +0000269GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535);
reed@google.comac10a2d2010-12-22 21:39:39 +0000270
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000271static inline void fill_indices(uint16_t* indices, int quadCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000272 for (int i = 0; i < quadCount; ++i) {
273 indices[6 * i + 0] = 4 * i + 0;
274 indices[6 * i + 1] = 4 * i + 1;
275 indices[6 * i + 2] = 4 * i + 2;
276 indices[6 * i + 3] = 4 * i + 0;
277 indices[6 * i + 4] = 4 * i + 2;
278 indices[6 * i + 5] = 4 * i + 3;
279 }
280}
281
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000282const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000283 if (NULL == fQuadIndexBuffer) {
284 static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS;
285 GrGpu* me = const_cast<GrGpu*>(this);
286 fQuadIndexBuffer = me->createIndexBuffer(SIZE, false);
287 if (NULL != fQuadIndexBuffer) {
288 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->lock();
289 if (NULL != indices) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000290 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000291 fQuadIndexBuffer->unlock();
292 } else {
293 indices = (uint16_t*)GrMalloc(SIZE);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000294 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000295 if (!fQuadIndexBuffer->updateData(indices, SIZE)) {
296 fQuadIndexBuffer->unref();
297 fQuadIndexBuffer = NULL;
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000298 GrCrash("Can't get indices into buffer!");
reed@google.comac10a2d2010-12-22 21:39:39 +0000299 }
300 GrFree(indices);
301 }
302 }
303 }
304
305 return fQuadIndexBuffer;
306}
307
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000308const GrVertexBuffer* GrGpu::getUnitSquareVertexBuffer() const {
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000309 if (NULL == fUnitSquareVertexBuffer) {
310
311 static const GrPoint DATA[] = {
reed@google.com7744c202011-05-06 19:26:26 +0000312 { 0, 0 },
313 { GR_Scalar1, 0 },
314 { GR_Scalar1, GR_Scalar1 },
315 { 0, GR_Scalar1 }
316#if 0
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000317 GrPoint(0, 0),
318 GrPoint(GR_Scalar1,0),
319 GrPoint(GR_Scalar1,GR_Scalar1),
320 GrPoint(0, GR_Scalar1)
reed@google.com7744c202011-05-06 19:26:26 +0000321#endif
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000322 };
323 static const size_t SIZE = sizeof(DATA);
324
325 GrGpu* me = const_cast<GrGpu*>(this);
326 fUnitSquareVertexBuffer = me->createVertexBuffer(SIZE, false);
327 if (NULL != fUnitSquareVertexBuffer) {
328 if (!fUnitSquareVertexBuffer->updateData(DATA, SIZE)) {
329 fUnitSquareVertexBuffer->unref();
330 fUnitSquareVertexBuffer = NULL;
331 GrCrash("Can't get vertices into buffer!");
332 }
333 }
334 }
335
336 return fUnitSquareVertexBuffer;
337}
338
bsalomon@google.comd302f142011-03-03 13:54:13 +0000339////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000340
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000341bool GrGpu::setupClipAndFlushState(DrawType type) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000342
bsalomon@google.coma3201942012-06-21 19:58:20 +0000343 if (!fClipMaskManager.setupClipping(fClip)) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000344 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000345 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000346
bsalomon@google.comd302f142011-03-03 13:54:13 +0000347 if (!this->flushGraphicsState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000348 return false;
349 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000350
reed@google.comac10a2d2010-12-22 21:39:39 +0000351 return true;
352}
353
bsalomon@google.comd302f142011-03-03 13:54:13 +0000354////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000355
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000356void GrGpu::geometrySourceWillPush() {
357 const GeometrySrcState& geoSrc = this->getGeomSrc();
358 if (kArray_GeometrySrcType == geoSrc.fVertexSrc ||
359 kReserved_GeometrySrcType == geoSrc.fVertexSrc) {
360 this->finalizeReservedVertices();
361 }
362 if (kArray_GeometrySrcType == geoSrc.fIndexSrc ||
363 kReserved_GeometrySrcType == geoSrc.fIndexSrc) {
364 this->finalizeReservedIndices();
365 }
366 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
367#if GR_DEBUG
368 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
369 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
370 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
371 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
372#endif
373}
374
375void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) {
376 // if popping last entry then pops are unbalanced with pushes
377 GrAssert(fGeomPoolStateStack.count() > 1);
378 fGeomPoolStateStack.pop_back();
379}
380
381void GrGpu::onDrawIndexed(GrPrimitiveType type,
382 int startVertex,
383 int startIndex,
384 int vertexCount,
385 int indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000386
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000387 this->handleDirtyContext();
388
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000389 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000390 return;
391 }
392
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000393 int sVertex = startVertex;
394 int sIndex = startIndex;
395 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000396
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000397 this->onGpuDrawIndexed(type, sVertex, sIndex,
398 vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000399}
400
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000401void GrGpu::onDrawNonIndexed(GrPrimitiveType type,
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000402 int startVertex,
403 int vertexCount) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000404 this->handleDirtyContext();
405
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000406 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000407 return;
408 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000409
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000410 int sVertex = startVertex;
411 setupGeometry(&sVertex, NULL, vertexCount, 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000412
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000413 this->onGpuDrawNonIndexed(type, sVertex, vertexCount);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000414}
415
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000416void GrGpu::onStencilPath(const GrPath* path, GrPathFill fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000417 this->handleDirtyContext();
418
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000419 // TODO: make this more effecient (don't copy and copy back)
420 GrAutoTRestore<GrStencilSettings> asr(this->drawState()->stencil());
421
422 this->setStencilPathSettings(*path, fill, this->drawState()->stencil());
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000423 if (!this->setupClipAndFlushState(kStencilPath_DrawType)) {
424 return;
425 }
426
427 this->onGpuStencilPath(path, fill);
428}
429
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000430void GrGpu::finalizeReservedVertices() {
431 GrAssert(NULL != fVertexPool);
432 fVertexPool->unlock();
433}
434
435void GrGpu::finalizeReservedIndices() {
436 GrAssert(NULL != fIndexPool);
437 fIndexPool->unlock();
438}
439
440void GrGpu::prepareVertexPool() {
441 if (NULL == fVertexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000442 GrAssert(0 == fVertexPoolUseCnt);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000443 fVertexPool = SkNEW_ARGS(GrVertexBufferAllocPool, (this, true,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000444 VERTEX_POOL_VB_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000445 VERTEX_POOL_VB_COUNT));
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000446 fVertexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000447 } else if (!fVertexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000448 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000449 fVertexPool->reset();
450 }
451}
452
453void GrGpu::prepareIndexPool() {
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000454 if (NULL == fIndexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000455 GrAssert(0 == fIndexPoolUseCnt);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000456 fIndexPool = SkNEW_ARGS(GrIndexBufferAllocPool, (this, true,
bsalomon@google.com25fd36c2011-07-06 17:41:08 +0000457 INDEX_POOL_IB_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000458 INDEX_POOL_IB_COUNT));
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000459 fIndexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000460 } else if (!fIndexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000461 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000462 fIndexPool->reset();
463 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000464}
465
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000466bool GrGpu::onReserveVertexSpace(GrVertexLayout vertexLayout,
467 int vertexCount,
468 void** vertices) {
469 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000470
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000471 GrAssert(vertexCount > 0);
472 GrAssert(NULL != vertices);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000473
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000474 this->prepareVertexPool();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000475
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000476 *vertices = fVertexPool->makeSpace(vertexLayout,
477 vertexCount,
478 &geomPoolState.fPoolVertexBuffer,
479 &geomPoolState.fPoolStartVertex);
480 if (NULL == *vertices) {
481 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000482 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000483 ++fVertexPoolUseCnt;
reed@google.comac10a2d2010-12-22 21:39:39 +0000484 return true;
485}
486
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000487bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) {
488 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000489
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000490 GrAssert(indexCount > 0);
491 GrAssert(NULL != indices);
492
493 this->prepareIndexPool();
494
495 *indices = fIndexPool->makeSpace(indexCount,
496 &geomPoolState.fPoolIndexBuffer,
497 &geomPoolState.fPoolStartIndex);
498 if (NULL == *indices) {
499 return false;
500 }
501 ++fIndexPoolUseCnt;
502 return true;
503}
504
505void GrGpu::releaseReservedVertexSpace() {
506 const GeometrySrcState& geoSrc = this->getGeomSrc();
507 GrAssert(kReserved_GeometrySrcType == geoSrc.fVertexSrc);
508 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
509 fVertexPool->putBack(bytes);
510 --fVertexPoolUseCnt;
511}
512
513void GrGpu::releaseReservedIndexSpace() {
514 const GeometrySrcState& geoSrc = this->getGeomSrc();
515 GrAssert(kReserved_GeometrySrcType == geoSrc.fIndexSrc);
516 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
517 fIndexPool->putBack(bytes);
518 --fIndexPoolUseCnt;
519}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000520
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000521void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000522 this->prepareVertexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000523 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000524#if GR_DEBUG
525 bool success =
526#endif
bsalomon@google.come79c8152012-03-29 19:07:12 +0000527 fVertexPool->appendVertices(this->getVertexLayout(),
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000528 vertexCount,
529 vertexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000530 &geomPoolState.fPoolVertexBuffer,
531 &geomPoolState.fPoolStartVertex);
532 ++fVertexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000533 GR_DEBUGASSERT(success);
534}
535
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000536void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000537 this->prepareIndexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000538 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000539#if GR_DEBUG
540 bool success =
541#endif
542 fIndexPool->appendIndices(indexCount,
543 indexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000544 &geomPoolState.fPoolIndexBuffer,
545 &geomPoolState.fPoolStartIndex);
546 ++fIndexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000547 GR_DEBUGASSERT(success);
reed@google.comac10a2d2010-12-22 21:39:39 +0000548}
549
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000550void GrGpu::releaseVertexArray() {
551 // if vertex source was array, we stowed data in the pool
552 const GeometrySrcState& geoSrc = this->getGeomSrc();
553 GrAssert(kArray_GeometrySrcType == geoSrc.fVertexSrc);
554 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
555 fVertexPool->putBack(bytes);
556 --fVertexPoolUseCnt;
557}
558
559void GrGpu::releaseIndexArray() {
560 // if index source was array, we stowed data in the pool
561 const GeometrySrcState& geoSrc = this->getGeomSrc();
562 GrAssert(kArray_GeometrySrcType == geoSrc.fIndexSrc);
563 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
564 fIndexPool->putBack(bytes);
565 --fIndexPoolUseCnt;
566}
567