blob: b7d1395098f96bc0aac070808c33ed6592d3435b [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"
bsalomon@google.com4043ae22011-08-02 14:19:11 +000016#include "GrPathRenderer.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000017#include "GrGLStencilBuffer.h"
18#include "GrVertexBuffer.h"
bsalomon@google.com1c13c962011-02-14 16:51:21 +000019
20// probably makes no sense for this to be less than a page
bsalomon@google.comee435122011-07-01 14:57:55 +000021static const size_t VERTEX_POOL_VB_SIZE = 1 << 18;
22static const int VERTEX_POOL_VB_COUNT = 4;
bsalomon@google.com25fd36c2011-07-06 17:41:08 +000023static const size_t INDEX_POOL_IB_SIZE = 1 << 16;
24static const int INDEX_POOL_IB_COUNT = 4;
reed@google.comac10a2d2010-12-22 21:39:39 +000025
bsalomon@google.comd302f142011-03-03 13:54:13 +000026////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000027
28extern void gr_run_unittests();
29
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000030#define DEBUG_INVAL_BUFFER 0xdeadcafe
31#define DEBUG_INVAL_START_IDX -1
32
bsalomon@google.com8fe72472011-03-30 21:26:44 +000033GrGpu::GrGpu()
bsalomon@google.com18c9c192011-09-22 21:01:31 +000034 : 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.com30085192011-08-19 15:42:31 +000042 , fPathRendererChain(NULL)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000043 , fContextIsDirty(true)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000044 , fResourceHead(NULL) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +000045
reed@google.comac10a2d2010-12-22 21:39:39 +000046#if GR_DEBUG
bsalomon@google.com5aaa69e2011-03-04 20:29:08 +000047 //gr_run_unittests();
reed@google.comac10a2d2010-12-22 21:39:39 +000048#endif
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000049
50 fGeomPoolStateStack.push_back();
51#if GR_DEBUG
52 GeometryPoolState& poolState = fGeomPoolStateStack.back();
53 poolState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
54 poolState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
55 poolState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
56 poolState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
57#endif
reed@google.comac10a2d2010-12-22 21:39:39 +000058 resetStats();
59}
60
61GrGpu::~GrGpu() {
bsalomon@google.com558a75b2011-08-08 17:01:14 +000062 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +000063}
64
bsalomon@google.com8fe72472011-03-30 21:26:44 +000065void GrGpu::abandonResources() {
66
67 while (NULL != fResourceHead) {
68 fResourceHead->abandon();
69 }
70
71 GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid());
72 GrAssert(NULL == fUnitSquareVertexBuffer ||
73 !fUnitSquareVertexBuffer->isValid());
74 GrSafeSetNull(fQuadIndexBuffer);
75 GrSafeSetNull(fUnitSquareVertexBuffer);
76 delete fVertexPool;
77 fVertexPool = NULL;
78 delete fIndexPool;
79 fIndexPool = NULL;
bsalomon@google.com30085192011-08-19 15:42:31 +000080 // in case path renderer has any GrResources, start from scratch
81 GrSafeSetNull(fPathRendererChain);
reed@google.comac10a2d2010-12-22 21:39:39 +000082}
83
bsalomon@google.com8fe72472011-03-30 21:26:44 +000084void GrGpu::releaseResources() {
85
86 while (NULL != fResourceHead) {
87 fResourceHead->release();
88 }
89
90 GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid());
91 GrAssert(NULL == fUnitSquareVertexBuffer ||
92 !fUnitSquareVertexBuffer->isValid());
93 GrSafeSetNull(fQuadIndexBuffer);
94 GrSafeSetNull(fUnitSquareVertexBuffer);
95 delete fVertexPool;
96 fVertexPool = NULL;
97 delete fIndexPool;
98 fIndexPool = NULL;
bsalomon@google.com30085192011-08-19 15:42:31 +000099 // in case path renderer has any GrResources, start from scratch
100 GrSafeSetNull(fPathRendererChain);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000101}
102
103void GrGpu::insertResource(GrResource* resource) {
104 GrAssert(NULL != resource);
105 GrAssert(this == resource->getGpu());
106 GrAssert(NULL == resource->fNext);
107 GrAssert(NULL == resource->fPrevious);
108
109 resource->fNext = fResourceHead;
110 if (NULL != fResourceHead) {
111 GrAssert(NULL == fResourceHead->fPrevious);
112 fResourceHead->fPrevious = resource;
113 }
114 fResourceHead = resource;
115}
116
117void GrGpu::removeResource(GrResource* resource) {
118 GrAssert(NULL != resource);
119 GrAssert(NULL != fResourceHead);
120
121 if (fResourceHead == resource) {
122 GrAssert(NULL == resource->fPrevious);
123 fResourceHead = resource->fNext;
124 } else {
125 GrAssert(NULL != fResourceHead);
126 resource->fPrevious->fNext = resource->fNext;
127 }
128 if (NULL != resource->fNext) {
129 resource->fNext->fPrevious = resource->fPrevious;
130 }
131 resource->fNext = NULL;
132 resource->fPrevious = NULL;
133}
134
135
reed@google.comac10a2d2010-12-22 21:39:39 +0000136void GrGpu::unimpl(const char msg[]) {
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000137#if GR_DEBUG
138 GrPrintf("--- GrGpu unimplemented(\"%s\")\n", msg);
139#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000140}
141
bsalomon@google.comd302f142011-03-03 13:54:13 +0000142////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000143
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000144GrTexture* GrGpu::createTexture(const GrTextureDesc& desc,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000145 const void* srcData, size_t rowBytes) {
146 this->handleDirtyContext();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000147 GrTexture* tex = this->onCreateTexture(desc, srcData, rowBytes);
148 if (NULL != tex &&
149 (kRenderTarget_GrTextureFlagBit & desc.fFlags) &&
150 !(kNoStencil_GrTextureFlagBit & desc.fFlags)) {
151 GrAssert(NULL != tex->asRenderTarget());
152 // TODO: defer this and attach dynamically
153 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) {
154 tex->unref();
155 return NULL;
156 }
157 }
158 return tex;
159}
160
161bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) {
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000162 GrAssert(NULL == rt->getStencilBuffer());
163 GrStencilBuffer* sb =
164 this->getContext()->findStencilBuffer(rt->allocatedWidth(),
165 rt->allocatedHeight(),
166 rt->numSamples());
167 if (NULL != sb) {
168 rt->setStencilBuffer(sb);
169 bool attached = this->attachStencilBufferToRenderTarget(sb, rt);
170 if (!attached) {
171 rt->setStencilBuffer(NULL);
172 }
173 return attached;
174 }
175 if (this->createStencilBufferForRenderTarget(rt, rt->allocatedWidth(),
176 rt->allocatedHeight())) {
177 rt->getStencilBuffer()->ref();
178 rt->getStencilBuffer()->transferToCacheAndLock();
179
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000180 // Right now we're clearing the stencil buffer here after it is
181 // attached to an RT for the first time. When we start matching
182 // stencil buffers with smaller color targets this will no longer
183 // be correct because it won't be guaranteed to clear the entire
184 // sb.
185 // We used to clear down in the GL subclass using a special purpose
186 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
187 // FBO status.
188 GrRenderTarget* oldRT = fCurrDrawState.fRenderTarget;
189 fCurrDrawState.fRenderTarget = rt;
190 this->clearStencil();
191 fCurrDrawState.fRenderTarget = oldRT;
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);
201 // TODO: defer this and attach dynamically
202 GrRenderTarget* tgt = tex->asRenderTarget();
203 if (NULL != tgt &&
204 !this->attachStencilBufferToRenderTarget(tgt)) {
205 tex->unref();
206 return NULL;
207 } else {
208 return tex;
209 }
210}
211
212GrRenderTarget* GrGpu::createPlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) {
213 this->handleDirtyContext();
214 return this->onCreatePlatformRenderTarget(desc);
215}
216
bsalomon@google.com5877ffd2011-04-11 17:58:48 +0000217GrResource* GrGpu::createPlatformSurface(const GrPlatformSurfaceDesc& desc) {
218 this->handleDirtyContext();
219 return this->onCreatePlatformSurface(desc);
220}
221
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000222GrVertexBuffer* GrGpu::createVertexBuffer(uint32_t size, bool dynamic) {
223 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000224 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000225}
226
227GrIndexBuffer* GrGpu::createIndexBuffer(uint32_t size, bool dynamic) {
228 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000229 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000230}
231
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000232void GrGpu::clear(const GrIRect* rect, GrColor color) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000233 this->handleDirtyContext();
bsalomon@google.com6aa25c32011-04-27 19:55:29 +0000234 this->onClear(rect, color);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000235}
236
237void GrGpu::forceRenderTargetFlush() {
238 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000239 this->onForceRenderTargetFlush();
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000240}
241
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000242bool GrGpu::readPixels(GrRenderTarget* target,
243 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000244 GrPixelConfig config, void* buffer,
245 size_t rowBytes) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000246
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000247 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000248 return this->onReadPixels(target, left, top, width, height,
249 config, buffer, rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000250}
251
252////////////////////////////////////////////////////////////////////////////////
253
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000254static const int MAX_QUADS = 1 << 12; // max possible: (1 << 14) - 1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000255
reed@google.com8195f672011-01-12 18:14:28 +0000256GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535);
reed@google.comac10a2d2010-12-22 21:39:39 +0000257
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000258static inline void fill_indices(uint16_t* indices, int quadCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000259 for (int i = 0; i < quadCount; ++i) {
260 indices[6 * i + 0] = 4 * i + 0;
261 indices[6 * i + 1] = 4 * i + 1;
262 indices[6 * i + 2] = 4 * i + 2;
263 indices[6 * i + 3] = 4 * i + 0;
264 indices[6 * i + 4] = 4 * i + 2;
265 indices[6 * i + 5] = 4 * i + 3;
266 }
267}
268
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000269const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000270 if (NULL == fQuadIndexBuffer) {
271 static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS;
272 GrGpu* me = const_cast<GrGpu*>(this);
273 fQuadIndexBuffer = me->createIndexBuffer(SIZE, false);
274 if (NULL != fQuadIndexBuffer) {
275 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->lock();
276 if (NULL != indices) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000277 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000278 fQuadIndexBuffer->unlock();
279 } else {
280 indices = (uint16_t*)GrMalloc(SIZE);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000281 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000282 if (!fQuadIndexBuffer->updateData(indices, SIZE)) {
283 fQuadIndexBuffer->unref();
284 fQuadIndexBuffer = NULL;
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000285 GrCrash("Can't get indices into buffer!");
reed@google.comac10a2d2010-12-22 21:39:39 +0000286 }
287 GrFree(indices);
288 }
289 }
290 }
291
292 return fQuadIndexBuffer;
293}
294
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000295const GrVertexBuffer* GrGpu::getUnitSquareVertexBuffer() const {
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000296 if (NULL == fUnitSquareVertexBuffer) {
297
298 static const GrPoint DATA[] = {
reed@google.com7744c202011-05-06 19:26:26 +0000299 { 0, 0 },
300 { GR_Scalar1, 0 },
301 { GR_Scalar1, GR_Scalar1 },
302 { 0, GR_Scalar1 }
303#if 0
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000304 GrPoint(0, 0),
305 GrPoint(GR_Scalar1,0),
306 GrPoint(GR_Scalar1,GR_Scalar1),
307 GrPoint(0, GR_Scalar1)
reed@google.com7744c202011-05-06 19:26:26 +0000308#endif
bsalomon@google.com6f7fbc92011-02-01 19:12:40 +0000309 };
310 static const size_t SIZE = sizeof(DATA);
311
312 GrGpu* me = const_cast<GrGpu*>(this);
313 fUnitSquareVertexBuffer = me->createVertexBuffer(SIZE, false);
314 if (NULL != fUnitSquareVertexBuffer) {
315 if (!fUnitSquareVertexBuffer->updateData(DATA, SIZE)) {
316 fUnitSquareVertexBuffer->unref();
317 fUnitSquareVertexBuffer = NULL;
318 GrCrash("Can't get vertices into buffer!");
319 }
320 }
321 }
322
323 return fUnitSquareVertexBuffer;
324}
325
bsalomon@google.comd302f142011-03-03 13:54:13 +0000326////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000327
bsalomon@google.comd302f142011-03-03 13:54:13 +0000328// stencil settings to use when clip is in stencil
329const GrStencilSettings GrGpu::gClipStencilSettings = {
330 kKeep_StencilOp, kKeep_StencilOp,
331 kKeep_StencilOp, kKeep_StencilOp,
332 kAlwaysIfInClip_StencilFunc, kAlwaysIfInClip_StencilFunc,
333 0, 0,
334 0, 0,
335 0, 0
336};
337
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000338// mapping of clip-respecting stencil funcs to normal stencil funcs
339// mapping depends on whether stencil-clipping is in effect.
bsalomon@google.comd302f142011-03-03 13:54:13 +0000340static const GrStencilFunc gGrClipToNormalStencilFunc[2][kClipStencilFuncCount] = {
341 {// Stencil-Clipping is DISABLED, effectively always inside the clip
342 // In the Clip Funcs
343 kAlways_StencilFunc, // kAlwaysIfInClip_StencilFunc
344 kEqual_StencilFunc, // kEqualIfInClip_StencilFunc
345 kLess_StencilFunc, // kLessIfInClip_StencilFunc
346 kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc
347 // Special in the clip func that forces user's ref to be 0.
348 kNotEqual_StencilFunc, // kNonZeroIfInClip_StencilFunc
349 // make ref 0 and do normal nequal.
350 },
351 {// Stencil-Clipping is ENABLED
352 // In the Clip Funcs
353 kEqual_StencilFunc, // kAlwaysIfInClip_StencilFunc
354 // eq stencil clip bit, mask
355 // out user bits.
356
357 kEqual_StencilFunc, // kEqualIfInClip_StencilFunc
358 // add stencil bit to mask and ref
359
360 kLess_StencilFunc, // kLessIfInClip_StencilFunc
361 kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc
362 // for both of these we can add
363 // the clip bit to the mask and
364 // ref and compare as normal
365 // Special in the clip func that forces user's ref to be 0.
366 kLess_StencilFunc, // kNonZeroIfInClip_StencilFunc
367 // make ref have only the clip bit set
368 // and make comparison be less
369 // 10..0 < 1..user_bits..
370 }
371};
372
373GrStencilFunc GrGpu::ConvertStencilFunc(bool stencilInClip, GrStencilFunc func) {
374 GrAssert(func >= 0);
375 if (func >= kBasicStencilFuncCount) {
376 GrAssert(func < kStencilFuncCount);
377 func = gGrClipToNormalStencilFunc[stencilInClip ? 1 : 0][func - kBasicStencilFuncCount];
378 GrAssert(func >= 0 && func < kBasicStencilFuncCount);
379 }
380 return func;
381}
382
383void GrGpu::ConvertStencilFuncAndMask(GrStencilFunc func,
384 bool clipInStencil,
385 unsigned int clipBit,
386 unsigned int userBits,
387 unsigned int* ref,
388 unsigned int* mask) {
389 if (func < kBasicStencilFuncCount) {
390 *mask &= userBits;
391 *ref &= userBits;
392 } else {
393 if (clipInStencil) {
394 switch (func) {
395 case kAlwaysIfInClip_StencilFunc:
396 *mask = clipBit;
397 *ref = clipBit;
398 break;
399 case kEqualIfInClip_StencilFunc:
400 case kLessIfInClip_StencilFunc:
401 case kLEqualIfInClip_StencilFunc:
402 *mask = (*mask & userBits) | clipBit;
403 *ref = (*ref & userBits) | clipBit;
404 break;
405 case kNonZeroIfInClip_StencilFunc:
406 *mask = (*mask & userBits) | clipBit;
407 *ref = clipBit;
408 break;
409 default:
410 GrCrash("Unknown stencil func");
411 }
412 } else {
413 *mask &= userBits;
414 *ref &= userBits;
415 }
416 }
417}
418
419////////////////////////////////////////////////////////////////////////////////
420
421#define VISUALIZE_COMPLEX_CLIP 0
422
423#if VISUALIZE_COMPLEX_CLIP
424 #include "GrRandom.h"
425 GrRandom gRandom;
426 #define SET_RANDOM_COLOR this->setColor(0xff000000 | gRandom.nextU());
427#else
428 #define SET_RANDOM_COLOR
429#endif
430
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000431namespace {
432// determines how many elements at the head of the clip can be skipped and
433// whether the initial clear should be to the inside- or outside-the-clip value,
434// and what op should be used to draw the first element that isn't skipped.
435int process_initial_clip_elements(const GrClip& clip,
436 bool* clearToInside,
437 GrSetOp* startOp) {
438
439 // logically before the first element of the clip stack is
440 // processed the clip is entirely open. However, depending on the
441 // first set op we may prefer to clear to 0 for performance. We may
442 // also be able to skip the initial clip paths/rects. We loop until
443 // we cannot skip an element.
444 int curr;
445 bool done = false;
446 *clearToInside = true;
447 int count = clip.getElementCount();
448
449 for (curr = 0; curr < count && !done; ++curr) {
450 switch (clip.getOp(curr)) {
451 case kReplace_SetOp:
452 // replace ignores everything previous
453 *startOp = kReplace_SetOp;
454 *clearToInside = false;
455 done = true;
456 break;
457 case kIntersect_SetOp:
458 // if everything is initially clearToInside then intersect is
459 // same as clear to 0 and treat as a replace. Otherwise,
460 // set stays empty.
461 if (*clearToInside) {
462 *startOp = kReplace_SetOp;
463 *clearToInside = false;
464 done = true;
465 }
466 break;
467 // we can skip a leading union.
468 case kUnion_SetOp:
469 // if everything is initially outside then union is
470 // same as replace. Otherwise, every pixel is still
471 // clearToInside
472 if (!*clearToInside) {
473 *startOp = kReplace_SetOp;
474 done = true;
475 }
476 break;
477 case kXor_SetOp:
478 // xor is same as difference or replace both of which
479 // can be 1-pass instead of 2 for xor.
480 if (*clearToInside) {
481 *startOp = kDifference_SetOp;
482 } else {
483 *startOp = kReplace_SetOp;
484 }
485 done = true;
486 break;
487 case kDifference_SetOp:
488 // if all pixels are clearToInside then we have to process the
489 // difference, otherwise it has no effect and all pixels
490 // remain outside.
491 if (*clearToInside) {
492 *startOp = kDifference_SetOp;
493 done = true;
494 }
495 break;
496 case kReverseDifference_SetOp:
497 // if all pixels are clearToInside then reverse difference
498 // produces empty set. Otherise it is same as replace
499 if (*clearToInside) {
500 *clearToInside = false;
501 } else {
502 *startOp = kReplace_SetOp;
503 done = true;
504 }
505 break;
bsalomon@google.com2ec72802011-09-21 21:46:03 +0000506 default:
507 GrCrash("Unknown set op.");
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000508 }
509 }
510 return done ? curr-1 : count;
511}
512}
513
bsalomon@google.comffca4002011-02-22 20:34:01 +0000514bool GrGpu::setupClipAndFlushState(GrPrimitiveType type) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000515 const GrIRect* r = NULL;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000516 GrIRect clipRect;
reed@google.comac10a2d2010-12-22 21:39:39 +0000517
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +0000518 // we check this early because we need a valid
519 // render target to setup stencil clipping
520 // before even going into flushGraphicsState
521 if (NULL == fCurrDrawState.fRenderTarget) {
522 GrAssert(!"No render target bound.");
523 return false;
524 }
525
reed@google.comac10a2d2010-12-22 21:39:39 +0000526 if (fCurrDrawState.fFlagBits & kClip_StateBit) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000527 GrRenderTarget& rt = *fCurrDrawState.fRenderTarget;
528
529 GrRect bounds;
530 GrRect rtRect;
531 rtRect.setLTRB(0, 0,
532 GrIntToScalar(rt.width()), GrIntToScalar(rt.height()));
bsalomon@google.com0b50b2e2011-03-08 21:07:21 +0000533 if (fClip.hasConservativeBounds()) {
534 bounds = fClip.getConservativeBounds();
reed@google.com20efde72011-05-09 17:00:02 +0000535 if (!bounds.intersect(rtRect)) {
536 bounds.setEmpty();
537 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000538 } else {
539 bounds = rtRect;
540 }
541
542 bounds.roundOut(&clipRect);
543 if (clipRect.isEmpty()) {
544 clipRect.setLTRB(0,0,0,0);
545 }
546 r = &clipRect;
547
bsalomon@google.comdea2f8d2011-08-01 15:51:05 +0000548 // use the stencil clip if we can't represent the clip as a rectangle.
549 fClipInStencil = !fClip.isRect() && !fClip.isEmpty() &&
550 !bounds.isEmpty();
reed@google.comac10a2d2010-12-22 21:39:39 +0000551
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000552 // TODO: dynamically attach a SB when needed.
553 GrStencilBuffer* stencilBuffer = rt.getStencilBuffer();
554 if (fClipInStencil && NULL == stencilBuffer) {
555 return false;
556 }
bsalomon@google.coma16d6502011-08-02 14:07:52 +0000557
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000558 if (fClipInStencil &&
559 stencilBuffer->mustRenderClip(fClip, rt.width(), rt.height())) {
560
561 stencilBuffer->setLastClip(fClip, rt.width(), rt.height());
562
bsalomon@google.comd302f142011-03-03 13:54:13 +0000563 // we set the current clip to the bounds so that our recursive
564 // draws are scissored to them. We use the copy of the complex clip
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000565 // we just stashed on the SB to render from. We set it back after
566 // we finish drawing it into the stencil.
567 const GrClip& clip = stencilBuffer->getLastClip();
bsalomon@google.comd302f142011-03-03 13:54:13 +0000568 fClip.setFromRect(bounds);
reed@google.comac10a2d2010-12-22 21:39:39 +0000569
570 AutoStateRestore asr(this);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000571 AutoGeometryPush agp(this);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000572
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000573 this->setViewMatrix(GrMatrix::I());
bsalomon@google.comd302f142011-03-03 13:54:13 +0000574 this->flushScissor(NULL);
575#if !VISUALIZE_COMPLEX_CLIP
576 this->enableState(kNoColorWrites_StateBit);
577#else
578 this->disableState(kNoColorWrites_StateBit);
579#endif
580 int count = clip.getElementCount();
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000581 int clipBit = stencilBuffer->bits();
bsalomon@google.comd302f142011-03-03 13:54:13 +0000582 clipBit = (1 << (clipBit-1));
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000583
584 bool clearToInside;
bsalomon@google.com2ec72802011-09-21 21:46:03 +0000585 GrSetOp startOp = kReplace_SetOp; // suppress warning
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000586 int start = process_initial_clip_elements(clip, &clearToInside,
587 &startOp);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000588
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000589 this->clearStencilClip(clipRect, clearToInside);
bsalomon@google.com0b50b2e2011-03-08 21:07:21 +0000590
bsalomon@google.comd302f142011-03-03 13:54:13 +0000591 // walk through each clip element and perform its set op
592 // with the existing clip.
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000593 for (int c = start; c < count; ++c) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000594 GrPathFill fill;
bsalomon@google.comee435122011-07-01 14:57:55 +0000595 bool fillInverted;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000596 // enabled at bottom of loop
597 this->disableState(kModifyStencilClip_StateBit);
598
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000599 bool canRenderDirectToStencil; // can the clip element be drawn
600 // directly to the stencil buffer
601 // with a non-inverted fill rule
602 // without extra passes to
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000603 // resolve in/out status.
604
605 GrPathRenderer* pr = NULL;
reed@google.com07f3ee12011-05-16 17:21:57 +0000606 const GrPath* clipPath = NULL;
bsalomon@google.comee435122011-07-01 14:57:55 +0000607 GrPathRenderer::AutoClearPath arp;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000608 if (kRect_ClipType == clip.getElementType(c)) {
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000609 canRenderDirectToStencil = true;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000610 fill = kEvenOdd_PathFill;
bsalomon@google.comee435122011-07-01 14:57:55 +0000611 fillInverted = false;
bsalomon@google.comd302f142011-03-03 13:54:13 +0000612 } else {
613 fill = clip.getPathFill(c);
bsalomon@google.comfa6ac932011-10-05 19:57:55 +0000614 fillInverted = GrIsFillInverted(fill);
615 fill = GrNonInvertedFill(fill);
reed@google.com07f3ee12011-05-16 17:21:57 +0000616 clipPath = &clip.getPath(c);
bsalomon@google.comee435122011-07-01 14:57:55 +0000617 pr = this->getClipPathRenderer(*clipPath, fill);
bsalomon@google.com30085192011-08-19 15:42:31 +0000618 if (NULL == pr) {
619 fClipInStencil = false;
620 fClip = clip;
621 return false;
622 }
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000623 canRenderDirectToStencil =
bsalomon@google.comee435122011-07-01 14:57:55 +0000624 !pr->requiresStencilPass(this, *clipPath, fill);
bsalomon@google.com289533a2011-10-27 12:34:25 +0000625 arp.set(pr, this, clipPath, fill, false, NULL);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000626 }
627
bsalomon@google.comab3dee52011-08-29 15:18:41 +0000628 GrSetOp op = (c == start) ? startOp : clip.getOp(c);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000629 int passes;
630 GrStencilSettings stencilSettings[GrStencilSettings::kMaxStencilClipPasses];
631
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000632 bool canDrawDirectToClip; // Given the renderer, the element,
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000633 // fill rule, and set operation can
634 // we render the element directly to
635 // stencil bit used for clipping.
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000636 canDrawDirectToClip =
637 GrStencilSettings::GetClipPasses(op,
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000638 canRenderDirectToStencil,
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000639 clipBit,
bsalomon@google.comee435122011-07-01 14:57:55 +0000640 fillInverted,
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000641 &passes, stencilSettings);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000642
643 // draw the element to the client stencil bits if necessary
644 if (!canDrawDirectToClip) {
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000645 static const GrStencilSettings gDrawToStencil = {
646 kIncClamp_StencilOp, kIncClamp_StencilOp,
647 kIncClamp_StencilOp, kIncClamp_StencilOp,
648 kAlways_StencilFunc, kAlways_StencilFunc,
649 0xffffffff, 0xffffffff,
650 0x00000000, 0x00000000,
651 0xffffffff, 0xffffffff,
652 };
653 SET_RANDOM_COLOR
bsalomon@google.comd302f142011-03-03 13:54:13 +0000654 if (kRect_ClipType == clip.getElementType(c)) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000655 this->setStencil(gDrawToStencil);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000656 this->drawSimpleRect(clip.getRect(c), NULL, 0);
657 } else {
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000658 if (canRenderDirectToStencil) {
659 this->setStencil(gDrawToStencil);
bsalomon@google.comee435122011-07-01 14:57:55 +0000660 pr->drawPath(0);
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000661 } else {
bsalomon@google.comee435122011-07-01 14:57:55 +0000662 pr->drawPathToStencil();
bsalomon@google.com7f5875d2011-03-24 16:55:45 +0000663 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000664 }
665 }
666
667 // now we modify the clip bit by rendering either the clip
668 // element directly or a bounding rect of the entire clip.
669 this->enableState(kModifyStencilClip_StateBit);
670 for (int p = 0; p < passes; ++p) {
671 this->setStencil(stencilSettings[p]);
672 if (canDrawDirectToClip) {
673 if (kRect_ClipType == clip.getElementType(c)) {
674 SET_RANDOM_COLOR
675 this->drawSimpleRect(clip.getRect(c), NULL, 0);
676 } else {
677 SET_RANDOM_COLOR
bsalomon@google.comee435122011-07-01 14:57:55 +0000678 pr->drawPath(0);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000679 }
680 } else {
681 SET_RANDOM_COLOR
thakis@chromium.org441d7da2011-06-07 04:03:17 +0000682 this->drawSimpleRect(bounds, NULL, 0);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000683 }
684 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000685 }
bsalomon@google.comdea2f8d2011-08-01 15:51:05 +0000686 // restore clip
bsalomon@google.comd302f142011-03-03 13:54:13 +0000687 fClip = clip;
bsalomon@google.comdea2f8d2011-08-01 15:51:05 +0000688 // recusive draws would have disabled this since they drew with
689 // the clip bounds as clip.
690 fClipInStencil = true;
reed@google.comac10a2d2010-12-22 21:39:39 +0000691 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000692 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000693
reed@google.comac10a2d2010-12-22 21:39:39 +0000694 // Must flush the scissor after graphics state
bsalomon@google.comd302f142011-03-03 13:54:13 +0000695 if (!this->flushGraphicsState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000696 return false;
697 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000698 this->flushScissor(r);
reed@google.comac10a2d2010-12-22 21:39:39 +0000699 return true;
700}
701
reed@google.com07f3ee12011-05-16 17:21:57 +0000702GrPathRenderer* GrGpu::getClipPathRenderer(const GrPath& path,
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000703 GrPathFill fill) {
bsalomon@google.com30085192011-08-19 15:42:31 +0000704 if (NULL == fPathRendererChain) {
705 fPathRendererChain =
706 new GrPathRendererChain(this->getContext(),
707 GrPathRendererChain::kNonAAOnly_UsageFlag);
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000708 }
bsalomon@google.com289533a2011-10-27 12:34:25 +0000709 return fPathRendererChain->getPathRenderer(this->getCaps(),
710 path, fill, false);
bsalomon@google.comdfe75bc2011-03-25 12:31:16 +0000711}
712
713
bsalomon@google.comd302f142011-03-03 13:54:13 +0000714////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000715
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000716void GrGpu::geometrySourceWillPush() {
717 const GeometrySrcState& geoSrc = this->getGeomSrc();
718 if (kArray_GeometrySrcType == geoSrc.fVertexSrc ||
719 kReserved_GeometrySrcType == geoSrc.fVertexSrc) {
720 this->finalizeReservedVertices();
721 }
722 if (kArray_GeometrySrcType == geoSrc.fIndexSrc ||
723 kReserved_GeometrySrcType == geoSrc.fIndexSrc) {
724 this->finalizeReservedIndices();
725 }
726 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
727#if GR_DEBUG
728 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
729 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
730 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
731 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
732#endif
733}
734
735void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) {
736 // if popping last entry then pops are unbalanced with pushes
737 GrAssert(fGeomPoolStateStack.count() > 1);
738 fGeomPoolStateStack.pop_back();
739}
740
741void GrGpu::onDrawIndexed(GrPrimitiveType type,
742 int startVertex,
743 int startIndex,
744 int vertexCount,
745 int indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000746
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000747 this->handleDirtyContext();
748
749 if (!this->setupClipAndFlushState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000750 return;
751 }
752
753#if GR_COLLECT_STATS
754 fStats.fVertexCnt += vertexCount;
755 fStats.fIndexCnt += indexCount;
756 fStats.fDrawCnt += 1;
757#endif
758
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000759 int sVertex = startVertex;
760 int sIndex = startIndex;
761 setupGeometry(&sVertex, &sIndex, vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000762
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000763 this->onGpuDrawIndexed(type, sVertex, sIndex,
764 vertexCount, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000765}
766
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000767void GrGpu::onDrawNonIndexed(GrPrimitiveType type,
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000768 int startVertex,
769 int vertexCount) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000770 this->handleDirtyContext();
771
772 if (!this->setupClipAndFlushState(type)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000773 return;
774 }
775#if GR_COLLECT_STATS
776 fStats.fVertexCnt += vertexCount;
777 fStats.fDrawCnt += 1;
778#endif
779
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000780 int sVertex = startVertex;
781 setupGeometry(&sVertex, NULL, vertexCount, 0);
reed@google.comac10a2d2010-12-22 21:39:39 +0000782
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000783 this->onGpuDrawNonIndexed(type, sVertex, vertexCount);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000784}
785
786void GrGpu::finalizeReservedVertices() {
787 GrAssert(NULL != fVertexPool);
788 fVertexPool->unlock();
789}
790
791void GrGpu::finalizeReservedIndices() {
792 GrAssert(NULL != fIndexPool);
793 fIndexPool->unlock();
794}
795
796void GrGpu::prepareVertexPool() {
797 if (NULL == fVertexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000798 GrAssert(0 == fVertexPoolUseCnt);
bsalomon@google.comd302f142011-03-03 13:54:13 +0000799 fVertexPool = new GrVertexBufferAllocPool(this, true,
800 VERTEX_POOL_VB_SIZE,
bsalomon@google.com7a5af8b2011-02-18 18:40:42 +0000801 VERTEX_POOL_VB_COUNT);
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000802 fVertexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000803 } else if (!fVertexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000804 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000805 fVertexPool->reset();
806 }
807}
808
809void GrGpu::prepareIndexPool() {
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000810 if (NULL == fIndexPool) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000811 GrAssert(0 == fIndexPoolUseCnt);
bsalomon@google.com25fd36c2011-07-06 17:41:08 +0000812 fIndexPool = new GrIndexBufferAllocPool(this, true,
813 INDEX_POOL_IB_SIZE,
814 INDEX_POOL_IB_COUNT);
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000815 fIndexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000816 } else if (!fIndexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000817 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000818 fIndexPool->reset();
819 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000820}
821
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000822bool GrGpu::onReserveVertexSpace(GrVertexLayout vertexLayout,
823 int vertexCount,
824 void** vertices) {
825 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
826
827 GrAssert(vertexCount > 0);
828 GrAssert(NULL != vertices);
829
830 this->prepareVertexPool();
831
832 *vertices = fVertexPool->makeSpace(vertexLayout,
833 vertexCount,
834 &geomPoolState.fPoolVertexBuffer,
835 &geomPoolState.fPoolStartVertex);
836 if (NULL == *vertices) {
837 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000838 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000839 ++fVertexPoolUseCnt;
reed@google.comac10a2d2010-12-22 21:39:39 +0000840 return true;
841}
842
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000843bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) {
844 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
845
846 GrAssert(indexCount > 0);
847 GrAssert(NULL != indices);
848
849 this->prepareIndexPool();
850
851 *indices = fIndexPool->makeSpace(indexCount,
852 &geomPoolState.fPoolIndexBuffer,
853 &geomPoolState.fPoolStartIndex);
854 if (NULL == *indices) {
855 return false;
856 }
857 ++fIndexPoolUseCnt;
858 return true;
859}
860
861void GrGpu::releaseReservedVertexSpace() {
862 const GeometrySrcState& geoSrc = this->getGeomSrc();
863 GrAssert(kReserved_GeometrySrcType == geoSrc.fVertexSrc);
864 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
865 fVertexPool->putBack(bytes);
866 --fVertexPoolUseCnt;
867}
868
869void GrGpu::releaseReservedIndexSpace() {
870 const GeometrySrcState& geoSrc = this->getGeomSrc();
871 GrAssert(kReserved_GeometrySrcType == geoSrc.fIndexSrc);
872 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
873 fIndexPool->putBack(bytes);
874 --fIndexPoolUseCnt;
875}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000876
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000877void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000878 this->prepareVertexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000879 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000880#if GR_DEBUG
881 bool success =
882#endif
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000883 fVertexPool->appendVertices(this->getGeomSrc().fVertexLayout,
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000884 vertexCount,
885 vertexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000886 &geomPoolState.fPoolVertexBuffer,
887 &geomPoolState.fPoolStartVertex);
888 ++fVertexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000889 GR_DEBUGASSERT(success);
890}
891
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000892void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000893 this->prepareIndexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000894 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000895#if GR_DEBUG
896 bool success =
897#endif
898 fIndexPool->appendIndices(indexCount,
899 indexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000900 &geomPoolState.fPoolIndexBuffer,
901 &geomPoolState.fPoolStartIndex);
902 ++fIndexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000903 GR_DEBUGASSERT(success);
reed@google.comac10a2d2010-12-22 21:39:39 +0000904}
905
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000906void GrGpu::releaseVertexArray() {
907 // if vertex source was array, we stowed data in the pool
908 const GeometrySrcState& geoSrc = this->getGeomSrc();
909 GrAssert(kArray_GeometrySrcType == geoSrc.fVertexSrc);
910 size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout);
911 fVertexPool->putBack(bytes);
912 --fVertexPoolUseCnt;
913}
914
915void GrGpu::releaseIndexArray() {
916 // if index source was array, we stowed data in the pool
917 const GeometrySrcState& geoSrc = this->getGeomSrc();
918 GrAssert(kArray_GeometrySrcType == geoSrc.fIndexSrc);
919 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
920 fIndexPool->putBack(bytes);
921 --fIndexPoolUseCnt;
922}
923
bsalomon@google.comd302f142011-03-03 13:54:13 +0000924////////////////////////////////////////////////////////////////////////////////
925
bsalomon@google.com05ef5102011-05-02 21:14:59 +0000926const GrGpuStats& GrGpu::getStats() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000927 return fStats;
928}
929
930void GrGpu::resetStats() {
931 memset(&fStats, 0, sizeof(fStats));
932}
933
934void GrGpu::printStats() const {
935 if (GR_COLLECT_STATS) {
936 GrPrintf(
937 "-v-------------------------GPU STATS----------------------------v-\n"
938 "Stats collection is: %s\n"
939 "Draws: %04d, Verts: %04d, Indices: %04d\n"
940 "ProgChanges: %04d, TexChanges: %04d, RTChanges: %04d\n"
941 "TexCreates: %04d, RTCreates:%04d\n"
942 "-^--------------------------------------------------------------^-\n",
943 (GR_COLLECT_STATS ? "ON" : "OFF"),
944 fStats.fDrawCnt, fStats.fVertexCnt, fStats.fIndexCnt,
945 fStats.fProgChngCnt, fStats.fTextureChngCnt, fStats.fRenderTargetChngCnt,
946 fStats.fTextureCreateCnt, fStats.fRenderTargetCreateCnt);
947 }
948}
949
950////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000951const GrSamplerState GrSamplerState::gClampNoFilter(
952 GrSamplerState::kClamp_WrapMode,
953 GrSamplerState::kClamp_WrapMode,
954 GrSamplerState::kNormal_SampleMode,
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000955 GrMatrix::I(),
bsalomon@google.com6aef1fb2011-05-05 12:33:22 +0000956 GrSamplerState::kNearest_Filter);
reed@google.comac10a2d2010-12-22 21:39:39 +0000957
958
959
960