blob: 36a9cf19b4020e5f0928d2531e126f00d5423c57 [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"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000014#include "GrDrawTargetCaps.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
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000027#define DEBUG_INVAL_BUFFER 0xdeadcafe
28#define DEBUG_INVAL_START_IDX -1
29
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000030GrGpu::GrGpu(GrContext* context)
31 : GrDrawTarget(context)
bsalomon@google.com979432b2011-11-05 21:38:22 +000032 , fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com0a208a12013-06-28 18:57:35 +000033 , fResetBits(kAll_GrBackendState)
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.com0a208a12013-06-28 18:57:35 +000038 , fQuadIndexBuffer(NULL) {
bsalomon@google.com669fdc42011-04-05 17:08:27 +000039
robertphillips@google.com5d8d1862012-08-15 14:36:41 +000040 fClipMaskManager.setGpu(this);
41
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000042 fGeomPoolStateStack.push_back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000043#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000044 GeometryPoolState& poolState = fGeomPoolStateStack.back();
45 poolState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
46 poolState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
47 poolState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
48 poolState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
49#endif
reed@google.comac10a2d2010-12-22 21:39:39 +000050}
51
52GrGpu::~GrGpu() {
bsalomon@google.com558a75b2011-08-08 17:01:14 +000053 this->releaseResources();
reed@google.comac10a2d2010-12-22 21:39:39 +000054}
55
bsalomon@google.com8fe72472011-03-30 21:26:44 +000056void GrGpu::abandonResources() {
57
robertphillips@google.comf105b102012-05-14 12:18:26 +000058 fClipMaskManager.releaseResources();
59
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000060 while (NULL != fObjectList.head()) {
61 fObjectList.head()->abandon();
bsalomon@google.com8fe72472011-03-30 21:26:44 +000062 }
63
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000064 SkASSERT(NULL == fQuadIndexBuffer || fQuadIndexBuffer->wasDestroyed());
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000065 SkSafeSetNull(fQuadIndexBuffer);
bsalomon@google.com8fe72472011-03-30 21:26:44 +000066 delete fVertexPool;
67 fVertexPool = NULL;
68 delete fIndexPool;
69 fIndexPool = NULL;
reed@google.comac10a2d2010-12-22 21:39:39 +000070}
71
bsalomon@google.com8fe72472011-03-30 21:26:44 +000072void GrGpu::releaseResources() {
73
robertphillips@google.comf105b102012-05-14 12:18:26 +000074 fClipMaskManager.releaseResources();
75
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000076 while (NULL != fObjectList.head()) {
77 fObjectList.head()->release();
bsalomon@google.com8fe72472011-03-30 21:26:44 +000078 }
79
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000080 SkASSERT(NULL == fQuadIndexBuffer || fQuadIndexBuffer->wasDestroyed());
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000081 SkSafeSetNull(fQuadIndexBuffer);
bsalomon@google.com8fe72472011-03-30 21:26:44 +000082 delete fVertexPool;
83 fVertexPool = NULL;
84 delete fIndexPool;
85 fIndexPool = NULL;
86}
87
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000088void GrGpu::insertObject(GrGpuObject* object) {
89 SkASSERT(NULL != object);
90 SkASSERT(this == object->getGpu());
bsalomon@google.com8fe72472011-03-30 21:26:44 +000091
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000092 fObjectList.addToHead(object);
bsalomon@google.com8fe72472011-03-30 21:26:44 +000093}
94
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000095void GrGpu::removeObject(GrGpuObject* object) {
96 SkASSERT(NULL != object);
97 SkASSERT(this == object->getGpu());
bsalomon@google.com8fe72472011-03-30 21:26:44 +000098
commit-bot@chromium.org089a7802014-05-02 21:38:22 +000099 fObjectList.remove(object);
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000100}
101
102
reed@google.comac10a2d2010-12-22 21:39:39 +0000103void GrGpu::unimpl(const char msg[]) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000104#ifdef SK_DEBUG
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000105 GrPrintf("--- GrGpu unimplemented(\"%s\")\n", msg);
106#endif
reed@google.comac10a2d2010-12-22 21:39:39 +0000107}
108
bsalomon@google.comd302f142011-03-03 13:54:13 +0000109////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000110
bsalomon@google.comfea37b52011-04-25 15:51:06 +0000111GrTexture* GrGpu::createTexture(const GrTextureDesc& desc,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000112 const void* srcData, size_t rowBytes) {
krajcevski9c0e6292014-06-02 07:38:14 -0700113 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
robertphillips@google.comd3eb3362012-10-31 13:56:35 +0000114 return NULL;
115 }
krajcevski9c0e6292014-06-02 07:38:14 -0700116
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000117 if ((desc.fFlags & kRenderTarget_GrTextureFlagBit) &&
118 !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
119 return NULL;
120 }
robertphillips@google.comd3eb3362012-10-31 13:56:35 +0000121
krajcevski9c0e6292014-06-02 07:38:14 -0700122 GrTexture *tex = NULL;
123 if (GrPixelConfigIsCompressed(desc.fConfig)) {
124 // We shouldn't be rendering into this
125 SkASSERT((desc.fFlags & kRenderTarget_GrTextureFlagBit) == 0);
126
127 if (!this->caps()->npotTextureTileSupport() &&
128 (!GrIsPow2(desc.fWidth) || !GrIsPow2(desc.fHeight))) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000129 return NULL;
130 }
krajcevski9c0e6292014-06-02 07:38:14 -0700131
132 this->handleDirtyContext();
133 tex = this->onCreateCompressedTexture(desc, srcData);
134 } else {
135 this->handleDirtyContext();
136 tex = this->onCreateTexture(desc, srcData, rowBytes);
137 if (NULL != tex &&
138 (kRenderTarget_GrTextureFlagBit & desc.fFlags) &&
139 !(kNoStencil_GrTextureFlagBit & desc.fFlags)) {
140 SkASSERT(NULL != tex->asRenderTarget());
141 // TODO: defer this and attach dynamically
142 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) {
143 tex->unref();
144 return NULL;
145 }
146 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000147 }
148 return tex;
149}
150
151bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000152 SkASSERT(NULL == rt->getStencilBuffer());
rmistry@google.comd6176b02012-08-23 18:14:13 +0000153 GrStencilBuffer* sb =
robertphillips@google.com9fbcad02012-09-09 14:44:15 +0000154 this->getContext()->findStencilBuffer(rt->width(),
155 rt->height(),
156 rt->numSamples());
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000157 if (NULL != sb) {
158 rt->setStencilBuffer(sb);
159 bool attached = this->attachStencilBufferToRenderTarget(sb, rt);
160 if (!attached) {
161 rt->setStencilBuffer(NULL);
162 }
163 return attached;
164 }
bsalomon@google.com99621082011-11-15 16:47:16 +0000165 if (this->createStencilBufferForRenderTarget(rt,
166 rt->width(), rt->height())) {
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000167 // Right now we're clearing the stencil buffer here after it is
168 // attached to an RT for the first time. When we start matching
169 // stencil buffers with smaller color targets this will no longer
170 // be correct because it won't be guaranteed to clear the entire
171 // sb.
172 // We used to clear down in the GL subclass using a special purpose
173 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
174 // FBO status.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000175 GrDrawState::AutoRenderTargetRestore artr(this->drawState(), rt);
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000176 this->clearStencil();
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000177 return true;
178 } else {
179 return false;
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000180 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000181}
182
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000183GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000184 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000185 GrTexture* tex = this->onWrapBackendTexture(desc);
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000186 if (NULL == tex) {
187 return NULL;
188 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000189 // TODO: defer this and attach dynamically
190 GrRenderTarget* tgt = tex->asRenderTarget();
191 if (NULL != tgt &&
192 !this->attachStencilBufferToRenderTarget(tgt)) {
193 tex->unref();
194 return NULL;
195 } else {
196 return tex;
197 }
198}
199
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000200GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000201 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000202 return this->onWrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000203}
204
robertphillips@google.comadacc702013-10-14 21:53:24 +0000205GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000206 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000207 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000208}
209
robertphillips@google.comadacc702013-10-14 21:53:24 +0000210GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000211 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000212 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000213}
214
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000215GrPath* GrGpu::createPath(const SkPath& path, const SkStrokeRec& stroke) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000216 SkASSERT(this->caps()->pathRenderingSupport());
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000217 this->handleDirtyContext();
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000218 return this->onCreatePath(path, stroke);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000219}
220
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000221void GrGpu::clear(const SkIRect* rect,
rmistry@google.comd6176b02012-08-23 18:14:13 +0000222 GrColor color,
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000223 bool canIgnoreRect,
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000224 GrRenderTarget* renderTarget) {
bsalomon@google.com2e602062012-09-28 21:40:15 +0000225 GrDrawState::AutoRenderTargetRestore art;
226 if (NULL != renderTarget) {
227 art.set(this->drawState(), renderTarget);
robertphillips@google.comc82a8b72012-06-21 20:15:48 +0000228 }
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000229 if (NULL == this->getDrawState().getRenderTarget()) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000230 SkASSERT(0);
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000231 return;
232 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000233 this->handleDirtyContext();
robertphillips@google.com56ce48a2013-10-31 21:44:25 +0000234 this->onClear(rect, color, canIgnoreRect);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000235}
236
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000237bool GrGpu::readPixels(GrRenderTarget* target,
238 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000239 GrPixelConfig config, void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000240 size_t rowBytes) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000241 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000242 return this->onReadPixels(target, left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000243 config, buffer, rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000244}
245
bsalomon@google.com9c680582013-02-06 18:17:50 +0000246bool GrGpu::writeTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000247 int left, int top, int width, int height,
248 GrPixelConfig config, const void* buffer,
249 size_t rowBytes) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000250 this->handleDirtyContext();
bsalomon@google.com9c680582013-02-06 18:17:50 +0000251 return this->onWriteTexturePixels(texture, left, top, width, height,
252 config, buffer, rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000253}
254
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000255void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000256 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000257 this->handleDirtyContext();
258 this->onResolveRenderTarget(target);
259}
260
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000261static const GrStencilSettings& winding_path_stencil_settings() {
262 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
263 kIncClamp_StencilOp,
264 kIncClamp_StencilOp,
265 kAlwaysIfInClip_StencilFunc,
266 0xFFFF, 0xFFFF, 0xFFFF);
267 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
268}
269
270static const GrStencilSettings& even_odd_path_stencil_settings() {
271 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
272 kInvert_StencilOp,
273 kInvert_StencilOp,
274 kAlwaysIfInClip_StencilFunc,
275 0xFFFF, 0xFFFF, 0xFFFF);
276 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
277}
278
279void GrGpu::getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings) {
280
281 switch (fill) {
282 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000283 SkFAIL("Unexpected path fill.");
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000284 /* fallthrough */;
285 case SkPath::kWinding_FillType:
286 case SkPath::kInverseWinding_FillType:
287 *outStencilSettings = winding_path_stencil_settings();
288 break;
289 case SkPath::kEvenOdd_FillType:
290 case SkPath::kInverseEvenOdd_FillType:
291 *outStencilSettings = even_odd_path_stencil_settings();
292 break;
293 }
294 fClipMaskManager.adjustPathStencilParams(outStencilSettings);
295}
296
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000297
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000298////////////////////////////////////////////////////////////////////////////////
299
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000300static const int MAX_QUADS = 1 << 12; // max possible: (1 << 14) - 1;
reed@google.comac10a2d2010-12-22 21:39:39 +0000301
reed@google.com8195f672011-01-12 18:14:28 +0000302GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535);
reed@google.comac10a2d2010-12-22 21:39:39 +0000303
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000304static inline void fill_indices(uint16_t* indices, int quadCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000305 for (int i = 0; i < quadCount; ++i) {
306 indices[6 * i + 0] = 4 * i + 0;
307 indices[6 * i + 1] = 4 * i + 1;
308 indices[6 * i + 2] = 4 * i + 2;
309 indices[6 * i + 3] = 4 * i + 0;
310 indices[6 * i + 4] = 4 * i + 2;
311 indices[6 * i + 5] = 4 * i + 3;
312 }
313}
314
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000315const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000316 if (NULL == fQuadIndexBuffer) {
317 static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS;
318 GrGpu* me = const_cast<GrGpu*>(this);
319 fQuadIndexBuffer = me->createIndexBuffer(SIZE, false);
320 if (NULL != fQuadIndexBuffer) {
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000321 uint16_t* indices = (uint16_t*)fQuadIndexBuffer->map();
reed@google.comac10a2d2010-12-22 21:39:39 +0000322 if (NULL != indices) {
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000323 fill_indices(indices, MAX_QUADS);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000324 fQuadIndexBuffer->unmap();
reed@google.comac10a2d2010-12-22 21:39:39 +0000325 } else {
reed@google.com939ca7c2013-09-26 19:56:51 +0000326 indices = (uint16_t*)sk_malloc_throw(SIZE);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000327 fill_indices(indices, MAX_QUADS);
reed@google.comac10a2d2010-12-22 21:39:39 +0000328 if (!fQuadIndexBuffer->updateData(indices, SIZE)) {
329 fQuadIndexBuffer->unref();
330 fQuadIndexBuffer = NULL;
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000331 SkFAIL("Can't get indices into buffer!");
reed@google.comac10a2d2010-12-22 21:39:39 +0000332 }
reed@google.com939ca7c2013-09-26 19:56:51 +0000333 sk_free(indices);
reed@google.comac10a2d2010-12-22 21:39:39 +0000334 }
335 }
336 }
337
338 return fQuadIndexBuffer;
339}
340
bsalomon@google.comd302f142011-03-03 13:54:13 +0000341////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000342
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000343bool GrGpu::setupClipAndFlushState(DrawType type, const GrDeviceCoordTexture* dstCopy,
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000344 GrDrawState::AutoRestoreEffects* are,
345 const SkRect* devBounds) {
346 if (!fClipMaskManager.setupClipping(this->getClip(), are, devBounds)) {
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000347 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000348 }
bsalomon@google.comd302f142011-03-03 13:54:13 +0000349
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000350 if (!this->flushGraphicsState(type, dstCopy)) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000351 return false;
352 }
robertphillips@google.com730ebe52012-04-16 16:33:13 +0000353
reed@google.comac10a2d2010-12-22 21:39:39 +0000354 return true;
355}
356
bsalomon@google.comd302f142011-03-03 13:54:13 +0000357////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +0000358
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000359void GrGpu::geometrySourceWillPush() {
360 const GeometrySrcState& geoSrc = this->getGeomSrc();
361 if (kArray_GeometrySrcType == geoSrc.fVertexSrc ||
362 kReserved_GeometrySrcType == geoSrc.fVertexSrc) {
363 this->finalizeReservedVertices();
364 }
365 if (kArray_GeometrySrcType == geoSrc.fIndexSrc ||
366 kReserved_GeometrySrcType == geoSrc.fIndexSrc) {
367 this->finalizeReservedIndices();
368 }
369 GeometryPoolState& newState = fGeomPoolStateStack.push_back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000370#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000371 newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
372 newState.fPoolStartVertex = DEBUG_INVAL_START_IDX;
373 newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
374 newState.fPoolStartIndex = DEBUG_INVAL_START_IDX;
humper@google.com0e515772013-01-07 19:54:40 +0000375#else
376 (void) newState; // silence compiler warning
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000377#endif
378}
379
380void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) {
381 // if popping last entry then pops are unbalanced with pushes
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000382 SkASSERT(fGeomPoolStateStack.count() > 1);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000383 fGeomPoolStateStack.pop_back();
384}
385
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000386void GrGpu::onDraw(const DrawInfo& info) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000387 this->handleDirtyContext();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000388 GrDrawState::AutoRestoreEffects are;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000389 if (!this->setupClipAndFlushState(PrimTypeToDrawType(info.primitiveType()),
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000390 info.getDstCopy(), &are, info.getDevBounds())) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000391 return;
392 }
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000393 this->onGpuDraw(info);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000394}
395
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000396void GrGpu::onStencilPath(const GrPath* path, SkPath::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000397 this->handleDirtyContext();
398
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000399 GrDrawState::AutoRestoreEffects are;
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000400 if (!this->setupClipAndFlushState(kStencilPath_DrawType, NULL, &are, NULL)) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000401 return;
402 }
403
404 this->onGpuStencilPath(path, fill);
405}
406
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000407
408void GrGpu::onDrawPath(const GrPath* path, SkPath::FillType fill,
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000409 const GrDeviceCoordTexture* dstCopy) {
410 this->handleDirtyContext();
411
412 drawState()->setDefaultVertexAttribs();
413
414 GrDrawState::AutoRestoreEffects are;
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000415 if (!this->setupClipAndFlushState(kDrawPath_DrawType, dstCopy, &are, NULL)) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000416 return;
417 }
418
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000419 this->onGpuDrawPath(path, fill);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000420}
421
commit-bot@chromium.orgecc45362014-03-28 21:31:34 +0000422void GrGpu::onDrawPaths(int pathCount, const GrPath** paths,
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000423 const SkMatrix* transforms, SkPath::FillType fill,
424 SkStrokeRec::Style style,
425 const GrDeviceCoordTexture* dstCopy) {
426 this->handleDirtyContext();
427
428 drawState()->setDefaultVertexAttribs();
429
430 GrDrawState::AutoRestoreEffects are;
431 if (!this->setupClipAndFlushState(kDrawPaths_DrawType, dstCopy, &are, NULL)) {
432 return;
433 }
434
435 this->onGpuDrawPaths(pathCount, paths, transforms, fill, style);
436}
437
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000438void GrGpu::finalizeReservedVertices() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000439 SkASSERT(NULL != fVertexPool);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000440 fVertexPool->unmap();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000441}
442
443void GrGpu::finalizeReservedIndices() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000444 SkASSERT(NULL != fIndexPool);
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000445 fIndexPool->unmap();
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000446}
447
448void GrGpu::prepareVertexPool() {
449 if (NULL == fVertexPool) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000450 SkASSERT(0 == fVertexPoolUseCnt);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000451 fVertexPool = SkNEW_ARGS(GrVertexBufferAllocPool, (this, true,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000452 VERTEX_POOL_VB_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000453 VERTEX_POOL_VB_COUNT));
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000454 fVertexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000455 } else if (!fVertexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000456 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000457 fVertexPool->reset();
458 }
459}
460
461void GrGpu::prepareIndexPool() {
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000462 if (NULL == fIndexPool) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000463 SkASSERT(0 == fIndexPoolUseCnt);
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000464 fIndexPool = SkNEW_ARGS(GrIndexBufferAllocPool, (this, true,
bsalomon@google.com25fd36c2011-07-06 17:41:08 +0000465 INDEX_POOL_IB_SIZE,
tomhudson@google.comc377baf2012-07-09 20:17:56 +0000466 INDEX_POOL_IB_COUNT));
bsalomon@google.com11f0b512011-03-29 20:52:23 +0000467 fIndexPool->releaseGpuRef();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000468 } else if (!fIndexPoolUseCnt) {
bsalomon@google.comd302f142011-03-03 13:54:13 +0000469 // the client doesn't have valid data in the pool
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000470 fIndexPool->reset();
471 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000472}
473
jvanverth@google.coma6338982013-01-31 21:34:25 +0000474bool GrGpu::onReserveVertexSpace(size_t vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000475 int vertexCount,
476 void** vertices) {
477 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000478
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000479 SkASSERT(vertexCount > 0);
480 SkASSERT(NULL != vertices);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000481
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000482 this->prepareVertexPool();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000483
jvanverth@google.coma6338982013-01-31 21:34:25 +0000484 *vertices = fVertexPool->makeSpace(vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000485 vertexCount,
486 &geomPoolState.fPoolVertexBuffer,
487 &geomPoolState.fPoolStartVertex);
488 if (NULL == *vertices) {
489 return false;
reed@google.comac10a2d2010-12-22 21:39:39 +0000490 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000491 ++fVertexPoolUseCnt;
reed@google.comac10a2d2010-12-22 21:39:39 +0000492 return true;
493}
494
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000495bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) {
496 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
rmistry@google.comd6176b02012-08-23 18:14:13 +0000497
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000498 SkASSERT(indexCount > 0);
499 SkASSERT(NULL != indices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000500
501 this->prepareIndexPool();
502
503 *indices = fIndexPool->makeSpace(indexCount,
504 &geomPoolState.fPoolIndexBuffer,
505 &geomPoolState.fPoolStartIndex);
506 if (NULL == *indices) {
507 return false;
508 }
509 ++fIndexPoolUseCnt;
510 return true;
511}
512
513void GrGpu::releaseReservedVertexSpace() {
514 const GeometrySrcState& geoSrc = this->getGeomSrc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000515 SkASSERT(kReserved_GeometrySrcType == geoSrc.fVertexSrc);
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000516 size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000517 fVertexPool->putBack(bytes);
518 --fVertexPoolUseCnt;
519}
520
521void GrGpu::releaseReservedIndexSpace() {
522 const GeometrySrcState& geoSrc = this->getGeomSrc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000523 SkASSERT(kReserved_GeometrySrcType == geoSrc.fIndexSrc);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000524 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
525 fIndexPool->putBack(bytes);
526 --fIndexPoolUseCnt;
527}
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000528
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000529void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000530 this->prepareVertexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000531 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000532#ifdef SK_DEBUG
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000533 bool success =
534#endif
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000535 fVertexPool->appendVertices(this->getVertexSize(),
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000536 vertexCount,
537 vertexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000538 &geomPoolState.fPoolVertexBuffer,
539 &geomPoolState.fPoolStartVertex);
540 ++fVertexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000541 GR_DEBUGASSERT(success);
542}
543
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000544void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) {
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000545 this->prepareIndexPool();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000546 GeometryPoolState& geomPoolState = fGeomPoolStateStack.back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000547#ifdef SK_DEBUG
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000548 bool success =
549#endif
550 fIndexPool->appendIndices(indexCount,
551 indexArray,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000552 &geomPoolState.fPoolIndexBuffer,
553 &geomPoolState.fPoolStartIndex);
554 ++fIndexPoolUseCnt;
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000555 GR_DEBUGASSERT(success);
reed@google.comac10a2d2010-12-22 21:39:39 +0000556}
557
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000558void GrGpu::releaseVertexArray() {
559 // if vertex source was array, we stowed data in the pool
560 const GeometrySrcState& geoSrc = this->getGeomSrc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000561 SkASSERT(kArray_GeometrySrcType == geoSrc.fVertexSrc);
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000562 size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000563 fVertexPool->putBack(bytes);
564 --fVertexPoolUseCnt;
565}
566
567void GrGpu::releaseIndexArray() {
568 // if index source was array, we stowed data in the pool
569 const GeometrySrcState& geoSrc = this->getGeomSrc();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000570 SkASSERT(kArray_GeometrySrcType == geoSrc.fIndexSrc);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000571 size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t);
572 fIndexPool->putBack(bytes);
573 --fIndexPoolUseCnt;
574}