blob: 542c458d3f03d69a201639e76f0e7c35d1ddf9af [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.com16e3dde2012-10-25 18:43:28 +0000176GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000177 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000178 GrTexture* tex = this->onWrapBackendTexture(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
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000193GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000194 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000195 return this->onWrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000196}
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) {
bsalomon@google.com2e602062012-09-28 21:40:15 +0000217 GrDrawState::AutoRenderTargetRestore art;
218 if (NULL != renderTarget) {
219 art.set(this->drawState(), renderTarget);
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000220 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000221 if (NULL == this->getDrawState().getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000222 return;
223 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000224 this->handleDirtyContext();
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000225 this->onClear(rect, color);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000226}
227
228void GrGpu::forceRenderTargetFlush() {
229 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000230 this->onForceRenderTargetFlush();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000231}
232
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000233bool GrGpu::readPixels(GrRenderTarget* target,
234 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000235 GrPixelConfig config, void* buffer,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000236 size_t rowBytes, bool invertY) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000237 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000238 return this->onReadPixels(target, left, top, width, height,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000239 config, buffer, rowBytes, invertY);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000240}
241
bsalomon@google.com6f379512011-11-16 20:36:03 +0000242void GrGpu::writeTexturePixels(GrTexture* texture,
243 int left, int top, int width, int height,
244 GrPixelConfig config, const void* buffer,
245 size_t rowBytes) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000246 this->handleDirtyContext();
247 this->onWriteTexturePixels(texture, left, top, width, height,
248 config, buffer, rowBytes);
249}
250
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000251void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
252 GrAssert(target);
253 this->handleDirtyContext();
254 this->onResolveRenderTarget(target);
255}
256
257
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000258////////////////////////////////////////////////////////////////////////////////
259
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000260static const int MAX_QUADS = 1 << 12; // max possible: (1 << 14) - 1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000261
reed@google.com8195f672011-01-12 18:14:28 +0000262GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535);
reed@google.comac10a2d2010-12-22 21:39:39 +0000263
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000264static inline void fill_indices(uint16_t* indices, int quadCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000265 for (int i = 0; i < quadCount; ++i) {
266 indices[6 * i + 0] = 4 * i + 0;
267 indices[6 * i + 1] = 4 * i + 1;
268 indices[6 * i + 2] = 4 * i + 2;
269 indices[6 * i + 3] = 4 * i + 0;
270 indices[6 * i + 4] = 4 * i + 2;
271 indices[6 * i + 5] = 4 * i + 3;
272 }
273}
274
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000275const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000276 if (NULL == fQuadIndexBuffer) {
277 static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS;
278 GrGpu* me = const_cast<GrGpu*>(this);
279 fQuadIndexBuffer = me->createIndexBuffer(SIZE, false);
280 if (NULL != fQuadIndexBuffer) {
281 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->lock();
282 if (NULL != indices) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000283 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000284 fQuadIndexBuffer->unlock();
285 } else {
286 indices = (uint16_t*)GrMalloc(SIZE);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000287 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000288 if (!fQuadIndexBuffer->updateData(indices, SIZE)) {
289 fQuadIndexBuffer->unref();
290 fQuadIndexBuffer = NULL;
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000291 GrCrash("Can't get indices into buffer!");
reed@google.comac10a2d2010-12-22 21:39:39 +0000292 }
293 GrFree(indices);
294 }
295 }
296 }
297
298 return fQuadIndexBuffer;
299}
300
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000301const GrVertexBuffer* GrGpu::getUnitSquareVertexBuffer() const {
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000302 if (NULL == fUnitSquareVertexBuffer) {
303
304 static const GrPoint DATA[] = {
reed@google.com7744c202011-05-06 19:26:26 +0000305 { 0, 0 },
306 { GR_Scalar1, 0 },
307 { GR_Scalar1, GR_Scalar1 },
308 { 0, GR_Scalar1 }
309#if 0
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000310 GrPoint(0, 0),
311 GrPoint(GR_Scalar1,0),
312 GrPoint(GR_Scalar1,GR_Scalar1),
313 GrPoint(0, GR_Scalar1)
reed@google.com7744c202011-05-06 19:26:26 +0000314#endif
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000315 };
316 static const size_t SIZE = sizeof(DATA);
317
318 GrGpu* me = const_cast<GrGpu*>(this);
319 fUnitSquareVertexBuffer = me->createVertexBuffer(SIZE, false);
320 if (NULL != fUnitSquareVertexBuffer) {
321 if (!fUnitSquareVertexBuffer->updateData(DATA, SIZE)) {
322 fUnitSquareVertexBuffer->unref();
323 fUnitSquareVertexBuffer = NULL;
324 GrCrash("Can't get vertices into buffer!");
325 }
326 }
327 }
328
329 return fUnitSquareVertexBuffer;
330}
331
bsalomon@google.comd302f142011-03-03 13:54:13 +0000332////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000333
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000334bool GrGpu::setupClipAndFlushState(DrawType type) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000335
bsalomon@google.coma3201942012-06-21 19:58:20 +0000336 if (!fClipMaskManager.setupClipping(fClip)) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000337 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000338 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000339
bsalomon@google.comd302f142011-03-03 13:54:13 +0000340 if (!this->flushGraphicsState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000341 return false;
342 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000343
reed@google.comac10a2d2010-12-22 21:39:39 +0000344 return true;
345}
346
bsalomon@google.comd302f142011-03-03 13:54:13 +0000347////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000348
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000349void GrGpu::geometrySourceWillPush() {
350 const GeometrySrcState& geoSrc = this->getGeomSrc();
351 if (kArray_GeometrySrcType == geoSrc.fVertexSrc ||
352 kReserved_GeometrySrcType == geoSrc.fVertexSrc) {
353 this->finalizeReservedVertices();
354 }
355 if (kArray_GeometrySrcType == geoSrc.fIndexSrc ||
356 kReserved_GeometrySrcType == geoSrc.fIndexSrc) {
357 this->finalizeReservedIndices();
358 }
359 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
360#if GR_DEBUG
361 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
362 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
363 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
364 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
365#endif
366}
367
368void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) {
369 // if popping last entry then pops are unbalanced with pushes
370 GrAssert(fGeomPoolStateStack.count() > 1);
371 fGeomPoolStateStack.pop_back();
372}
373
374void GrGpu::onDrawIndexed(GrPrimitiveType type,
375 int startVertex,
376 int startIndex,
377 int vertexCount,
378 int indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000379
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000380 this->handleDirtyContext();
381
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000382 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000383 return;
384 }
385
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000386 int sVertex = startVertex;
387 int sIndex = startIndex;
388 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000389
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000390 this->onGpuDrawIndexed(type, sVertex, sIndex,
391 vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000392}
393
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000394void GrGpu::onDrawNonIndexed(GrPrimitiveType type,
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000395 int startVertex,
396 int vertexCount) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000397 this->handleDirtyContext();
398
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000399 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000400 return;
401 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000402
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000403 int sVertex = startVertex;
404 setupGeometry(&sVertex, NULL, vertexCount, 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000405
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000406 this->onGpuDrawNonIndexed(type, sVertex, vertexCount);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000407}
408
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000409void GrGpu::onStencilPath(const GrPath* path, GrPathFill fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000410 this->handleDirtyContext();
411
bsalomon@google.comded4f4b2012-06-28 18:48:06 +0000412 // TODO: make this more effecient (don't copy and copy back)
413 GrAutoTRestore<GrStencilSettings> asr(this->drawState()->stencil());
414
415 this->setStencilPathSettings(*path, fill, this->drawState()->stencil());
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000416 if (!this->setupClipAndFlushState(kStencilPath_DrawType)) {
417 return;
418 }
419
420 this->onGpuStencilPath(path, fill);
421}
422
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000423void GrGpu::finalizeReservedVertices() {
424 GrAssert(NULL != fVertexPool);
425 fVertexPool->unlock();
426}
427
428void GrGpu::finalizeReservedIndices() {
429 GrAssert(NULL != fIndexPool);
430 fIndexPool->unlock();
431}
432
433void GrGpu::prepareVertexPool() {
434 if (NULL == fVertexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000435 GrAssert(0 == fVertexPoolUseCnt);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000436 fVertexPool = SkNEW_ARGS(GrVertexBufferAllocPool, (this, true,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000437 VERTEX_POOL_VB_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000438 VERTEX_POOL_VB_COUNT));
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000439 fVertexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000440 } else if (!fVertexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000441 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000442 fVertexPool->reset();
443 }
444}
445
446void GrGpu::prepareIndexPool() {
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000447 if (NULL == fIndexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000448 GrAssert(0 == fIndexPoolUseCnt);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000449 fIndexPool = SkNEW_ARGS(GrIndexBufferAllocPool, (this, true,
bsalomon@google.com25fd36c2011-07-06 17:41:08 +0000450 INDEX_POOL_IB_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000451 INDEX_POOL_IB_COUNT));
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000452 fIndexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000453 } else if (!fIndexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000454 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000455 fIndexPool->reset();
456 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000457}
458
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000459bool GrGpu::onReserveVertexSpace(GrVertexLayout vertexLayout,
460 int vertexCount,
461 void** vertices) {
462 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000463
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000464 GrAssert(vertexCount > 0);
465 GrAssert(NULL != vertices);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000466
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000467 this->prepareVertexPool();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000468
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000469 *vertices = fVertexPool->makeSpace(vertexLayout,
470 vertexCount,
471 &geomPoolState.fPoolVertexBuffer,
472 &geomPoolState.fPoolStartVertex);
473 if (NULL == *vertices) {
474 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000475 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000476 ++fVertexPoolUseCnt;
reed@google.comac10a2d2010-12-22 21:39:39 +0000477 return true;
478}
479
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000480bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) {
481 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000482
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000483 GrAssert(indexCount > 0);
484 GrAssert(NULL != indices);
485
486 this->prepareIndexPool();
487
488 *indices = fIndexPool->makeSpace(indexCount,
489 &geomPoolState.fPoolIndexBuffer,
490 &geomPoolState.fPoolStartIndex);
491 if (NULL == *indices) {
492 return false;
493 }
494 ++fIndexPoolUseCnt;
495 return true;
496}
497
498void GrGpu::releaseReservedVertexSpace() {
499 const GeometrySrcState& geoSrc = this->getGeomSrc();
500 GrAssert(kReserved_GeometrySrcType == geoSrc.fVertexSrc);
501 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
502 fVertexPool->putBack(bytes);
503 --fVertexPoolUseCnt;
504}
505
506void GrGpu::releaseReservedIndexSpace() {
507 const GeometrySrcState& geoSrc = this->getGeomSrc();
508 GrAssert(kReserved_GeometrySrcType == geoSrc.fIndexSrc);
509 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
510 fIndexPool->putBack(bytes);
511 --fIndexPoolUseCnt;
512}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000513
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000514void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000515 this->prepareVertexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000516 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000517#if GR_DEBUG
518 bool success =
519#endif
bsalomon@google.come79c8152012-03-29 19:07:12 +0000520 fVertexPool->appendVertices(this->getVertexLayout(),
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000521 vertexCount,
522 vertexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000523 &geomPoolState.fPoolVertexBuffer,
524 &geomPoolState.fPoolStartVertex);
525 ++fVertexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000526 GR_DEBUGASSERT(success);
527}
528
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000529void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000530 this->prepareIndexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000531 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000532#if GR_DEBUG
533 bool success =
534#endif
535 fIndexPool->appendIndices(indexCount,
536 indexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000537 &geomPoolState.fPoolIndexBuffer,
538 &geomPoolState.fPoolStartIndex);
539 ++fIndexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000540 GR_DEBUGASSERT(success);
reed@google.comac10a2d2010-12-22 21:39:39 +0000541}
542
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000543void GrGpu::releaseVertexArray() {
544 // if vertex source was array, we stowed data in the pool
545 const GeometrySrcState& geoSrc = this->getGeomSrc();
546 GrAssert(kArray_GeometrySrcType == geoSrc.fVertexSrc);
547 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
548 fVertexPool->putBack(bytes);
549 --fVertexPoolUseCnt;
550}
551
552void GrGpu::releaseIndexArray() {
553 // if index source was array, we stowed data in the pool
554 const GeometrySrcState& geoSrc = this->getGeomSrc();
555 GrAssert(kArray_GeometrySrcType == geoSrc.fIndexSrc);
556 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
557 fIndexPool->putBack(bytes);
558 --fIndexPoolUseCnt;
559}
560