blob: c8c983cbbed2477fc8b7c56547c767cdfbd41efd [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
digit@google.com9b482c42012-02-16 22:03:26 +0000354const GrStencilSettings* GrGpu::GetClipStencilSettings(void) {
355 // stencil settings to use when clip is in stencil
356 GR_STATIC_CONST_SAME_STENCIL_STRUCT(sClipStencilSettings,
357 kKeep_StencilOp,
358 kKeep_StencilOp,
359 kAlwaysIfInClip_StencilFunc,
360 0x0000,
361 0x0000,
362 0x0000);
363 return GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&sClipStencilSettings);
364}
bsalomon@google.comd302f142011-03-03 13:54:13 +0000365
bsalomon@google.comd302f142011-03-03 13:54:13 +0000366////////////////////////////////////////////////////////////////////////////////
367
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000368bool GrGpu::setupClipAndFlushState(DrawType type) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000369
370 ScissoringSettings scissoringSettings;
371
bsalomon@google.com13b85aa2012-06-15 21:09:40 +0000372 if (!fClipMaskManager.createClipMask(fClip, &scissoringSettings)) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000373 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000374 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000375
reed@google.comac10a2d2010-12-22 21:39:39 +0000376 // Must flush the scissor after graphics state
bsalomon@google.comd302f142011-03-03 13:54:13 +0000377 if (!this->flushGraphicsState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000378 return false;
379 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000380
381 scissoringSettings.setupScissoring(this);
reed@google.comac10a2d2010-12-22 21:39:39 +0000382 return true;
383}
384
bsalomon@google.comd302f142011-03-03 13:54:13 +0000385////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000386
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000387void GrGpu::geometrySourceWillPush() {
388 const GeometrySrcState& geoSrc = this->getGeomSrc();
389 if (kArray_GeometrySrcType == geoSrc.fVertexSrc ||
390 kReserved_GeometrySrcType == geoSrc.fVertexSrc) {
391 this->finalizeReservedVertices();
392 }
393 if (kArray_GeometrySrcType == geoSrc.fIndexSrc ||
394 kReserved_GeometrySrcType == geoSrc.fIndexSrc) {
395 this->finalizeReservedIndices();
396 }
397 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
398#if GR_DEBUG
399 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
400 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
401 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
402 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
403#endif
404}
405
406void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) {
407 // if popping last entry then pops are unbalanced with pushes
408 GrAssert(fGeomPoolStateStack.count() > 1);
409 fGeomPoolStateStack.pop_back();
410}
411
412void GrGpu::onDrawIndexed(GrPrimitiveType type,
413 int startVertex,
414 int startIndex,
415 int vertexCount,
416 int indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000417
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000418 this->handleDirtyContext();
419
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000420 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000421 return;
422 }
423
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000424 int sVertex = startVertex;
425 int sIndex = startIndex;
426 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000427
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000428 this->onGpuDrawIndexed(type, sVertex, sIndex,
429 vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000430}
431
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000432void GrGpu::onDrawNonIndexed(GrPrimitiveType type,
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000433 int startVertex,
434 int vertexCount) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000435 this->handleDirtyContext();
436
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000437 if (!this->setupClipAndFlushState(PrimTypeToDrawType(type))) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000438 return;
439 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000440
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000441 int sVertex = startVertex;
442 setupGeometry(&sVertex, NULL, vertexCount, 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000443
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000444 this->onGpuDrawNonIndexed(type, sVertex, vertexCount);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000445}
446
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000447void GrGpu::onStencilPath(const GrPath& path, GrPathFill fill) {
448 this->handleDirtyContext();
449
450 if (!this->setupClipAndFlushState(kStencilPath_DrawType)) {
451 return;
452 }
453
454 this->onGpuStencilPath(path, fill);
455}
456
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000457void GrGpu::finalizeReservedVertices() {
458 GrAssert(NULL != fVertexPool);
459 fVertexPool->unlock();
460}
461
462void GrGpu::finalizeReservedIndices() {
463 GrAssert(NULL != fIndexPool);
464 fIndexPool->unlock();
465}
466
467void GrGpu::prepareVertexPool() {
468 if (NULL == fVertexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000469 GrAssert(0 == fVertexPoolUseCnt);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000470 fVertexPool = new GrVertexBufferAllocPool(this, true,
471 VERTEX_POOL_VB_SIZE,
bsalomon@google.com7a5af8b2011-02-18 18:40:42 +0000472 VERTEX_POOL_VB_COUNT);
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000473 fVertexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000474 } else if (!fVertexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000475 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000476 fVertexPool->reset();
477 }
478}
479
480void GrGpu::prepareIndexPool() {
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000481 if (NULL == fIndexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000482 GrAssert(0 == fIndexPoolUseCnt);
bsalomon@google.com25fd36c2011-07-06 17:41:08 +0000483 fIndexPool = new GrIndexBufferAllocPool(this, true,
484 INDEX_POOL_IB_SIZE,
485 INDEX_POOL_IB_COUNT);
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000486 fIndexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000487 } else if (!fIndexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000488 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000489 fIndexPool->reset();
490 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000491}
492
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000493bool GrGpu::onReserveVertexSpace(GrVertexLayout vertexLayout,
494 int vertexCount,
495 void** vertices) {
496 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
497
498 GrAssert(vertexCount > 0);
499 GrAssert(NULL != vertices);
500
501 this->prepareVertexPool();
502
503 *vertices = fVertexPool->makeSpace(vertexLayout,
504 vertexCount,
505 &geomPoolState.fPoolVertexBuffer,
506 &geomPoolState.fPoolStartVertex);
507 if (NULL == *vertices) {
508 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000509 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000510 ++fVertexPoolUseCnt;
reed@google.comac10a2d2010-12-22 21:39:39 +0000511 return true;
512}
513
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000514bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) {
515 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
516
517 GrAssert(indexCount > 0);
518 GrAssert(NULL != indices);
519
520 this->prepareIndexPool();
521
522 *indices = fIndexPool->makeSpace(indexCount,
523 &geomPoolState.fPoolIndexBuffer,
524 &geomPoolState.fPoolStartIndex);
525 if (NULL == *indices) {
526 return false;
527 }
528 ++fIndexPoolUseCnt;
529 return true;
530}
531
532void GrGpu::releaseReservedVertexSpace() {
533 const GeometrySrcState& geoSrc = this->getGeomSrc();
534 GrAssert(kReserved_GeometrySrcType == geoSrc.fVertexSrc);
535 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
536 fVertexPool->putBack(bytes);
537 --fVertexPoolUseCnt;
538}
539
540void GrGpu::releaseReservedIndexSpace() {
541 const GeometrySrcState& geoSrc = this->getGeomSrc();
542 GrAssert(kReserved_GeometrySrcType == geoSrc.fIndexSrc);
543 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
544 fIndexPool->putBack(bytes);
545 --fIndexPoolUseCnt;
546}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000547
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000548void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000549 this->prepareVertexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000550 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000551#if GR_DEBUG
552 bool success =
553#endif
bsalomon@google.come79c8152012-03-29 19:07:12 +0000554 fVertexPool->appendVertices(this->getVertexLayout(),
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000555 vertexCount,
556 vertexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000557 &geomPoolState.fPoolVertexBuffer,
558 &geomPoolState.fPoolStartVertex);
559 ++fVertexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000560 GR_DEBUGASSERT(success);
561}
562
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000563void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000564 this->prepareIndexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000565 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000566#if GR_DEBUG
567 bool success =
568#endif
569 fIndexPool->appendIndices(indexCount,
570 indexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000571 &geomPoolState.fPoolIndexBuffer,
572 &geomPoolState.fPoolStartIndex);
573 ++fIndexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000574 GR_DEBUGASSERT(success);
reed@google.comac10a2d2010-12-22 21:39:39 +0000575}
576
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000577void GrGpu::releaseVertexArray() {
578 // if vertex source was array, we stowed data in the pool
579 const GeometrySrcState& geoSrc = this->getGeomSrc();
580 GrAssert(kArray_GeometrySrcType == geoSrc.fVertexSrc);
581 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
582 fVertexPool->putBack(bytes);
583 --fVertexPoolUseCnt;
584}
585
586void GrGpu::releaseIndexArray() {
587 // if index source was array, we stowed data in the pool
588 const GeometrySrcState& geoSrc = this->getGeomSrc();
589 GrAssert(kArray_GeometrySrcType == geoSrc.fIndexSrc);
590 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
591 fIndexPool->putBack(bytes);
592 --fIndexPoolUseCnt;
593}
594