blob: 15e4b28c3a5d210aa7f7a48ab0876367d75e3b51 [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.com558a75b2011-08-08 17:01:14 +000012#include "GrContext.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000013#include "GrDrawTargetCaps.h"
bsalomon3582d3e2015-02-13 14:20:05 -080014#include "GrGpuResourcePriv.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000015#include "GrIndexBuffer.h"
bsalomon0ea80f42015-02-11 10:49:59 -080016#include "GrResourceCache.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080017#include "GrRenderTargetPriv.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070018#include "GrStencilAttachment.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000019#include "GrVertexBuffer.h"
bsalomoncb8979d2015-05-05 09:51:38 -070020#include "GrVertices.h"
21
22GrVertices& GrVertices::operator =(const GrVertices& di) {
23 fPrimitiveType = di.fPrimitiveType;
24 fStartVertex = di.fStartVertex;
25 fStartIndex = di.fStartIndex;
26 fVertexCount = di.fVertexCount;
27 fIndexCount = di.fIndexCount;
28
29 fInstanceCount = di.fInstanceCount;
30 fVerticesPerInstance = di.fVerticesPerInstance;
31 fIndicesPerInstance = di.fIndicesPerInstance;
bsalomone64eb572015-05-07 11:35:55 -070032 fMaxInstancesPerDraw = di.fMaxInstancesPerDraw;
bsalomoncb8979d2015-05-05 09:51:38 -070033
34 fVertexBuffer.reset(di.vertexBuffer());
35 fIndexBuffer.reset(di.indexBuffer());
36
37 return *this;
38}
bsalomon@google.com1c13c962011-02-14 16:51:21 +000039
bsalomon@google.comd302f142011-03-03 13:54:13 +000040////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000041
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000042GrGpu::GrGpu(GrContext* context)
joshualitt3322fa42014-11-07 08:48:51 -080043 : fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com0a208a12013-06-28 18:57:35 +000044 , fResetBits(kAll_GrBackendState)
hendrikwf72558e2015-03-04 06:22:18 -080045 , fGpuTraceMarkerCount(0)
joshualitt3322fa42014-11-07 08:48:51 -080046 , fContext(context) {
reed@google.comac10a2d2010-12-22 21:39:39 +000047}
48
bsalomoned0bcad2015-05-04 10:36:42 -070049GrGpu::~GrGpu() {}
bsalomon1d89ddc2014-08-19 14:20:58 -070050
robertphillipse3371302014-09-17 06:01:06 -070051void GrGpu::contextAbandoned() {}
reed@google.comac10a2d2010-12-22 21:39:39 +000052
bsalomon@google.comd302f142011-03-03 13:54:13 +000053////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000054
egdanielcf614fd2015-04-22 13:58:58 -070055static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
egdanielb0e1be22015-04-22 13:27:39 -070056 // By default, GrRenderTargets are GL's normal orientation so that they
57 // can be drawn to by the outside world without the client having
58 // to render upside down.
59 if (kDefault_GrSurfaceOrigin == origin) {
60 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
61 } else {
62 return origin;
63 }
64}
65
egdanielb0e1be22015-04-22 13:27:39 -070066GrTexture* GrGpu::createTexture(const GrSurfaceDesc& origDesc, bool budgeted,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000067 const void* srcData, size_t rowBytes) {
egdanielb0e1be22015-04-22 13:27:39 -070068 GrSurfaceDesc desc = origDesc;
69
krajcevski9c0e6292014-06-02 07:38:14 -070070 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000071 return NULL;
72 }
krajcevski9c0e6292014-06-02 07:38:14 -070073
bsalomondb558dd2015-01-23 13:19:00 -080074 bool isRT = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
75 if (isRT && !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +000076 return NULL;
77 }
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000078
krajcevski9c0e6292014-06-02 07:38:14 -070079 GrTexture *tex = NULL;
egdanielb0e1be22015-04-22 13:27:39 -070080
81 if (isRT) {
82 int maxRTSize = this->caps()->maxRenderTargetSize();
83 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) {
84 return NULL;
85 }
86 } else {
87 int maxSize = this->caps()->maxTextureSize();
88 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
89 return NULL;
90 }
91 }
92
93 GrGpuResource::LifeCycle lifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
94 GrGpuResource::kUncached_LifeCycle;
95
96 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
97 // Attempt to catch un- or wrongly initialized sample counts;
98 SkASSERT(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
99
100 desc.fOrigin = resolve_origin(desc.fOrigin, isRT);
101
krajcevski9c0e6292014-06-02 07:38:14 -0700102 if (GrPixelConfigIsCompressed(desc.fConfig)) {
103 // We shouldn't be rendering into this
egdanielb0e1be22015-04-22 13:27:39 -0700104 SkASSERT(!isRT);
105 SkASSERT(0 == desc.fSampleCnt);
krajcevski9c0e6292014-06-02 07:38:14 -0700106
107 if (!this->caps()->npotTextureTileSupport() &&
tfarinaf9dae782014-06-06 06:35:28 -0700108 (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight))) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000109 return NULL;
110 }
tfarinaf9dae782014-06-06 06:35:28 -0700111
krajcevski9c0e6292014-06-02 07:38:14 -0700112 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700113 tex = this->onCreateCompressedTexture(desc, lifeCycle, srcData);
krajcevski9c0e6292014-06-02 07:38:14 -0700114 } else {
115 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700116 tex = this->onCreateTexture(desc, lifeCycle, srcData, rowBytes);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000117 }
bsalomondb558dd2015-01-23 13:19:00 -0800118 if (!this->caps()->reuseScratchTextures() && !isRT) {
bsalomon3582d3e2015-02-13 14:20:05 -0800119 tex->resourcePriv().removeScratchKey();
bsalomondb558dd2015-01-23 13:19:00 -0800120 }
bsalomonb12ea412015-02-02 21:19:50 -0800121 if (tex) {
122 fStats.incTextureCreates();
123 if (srcData) {
124 fStats.incTextureUploads();
125 }
126 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000127 return tex;
128}
129
egdaniel8dc7c3a2015-04-16 11:22:42 -0700130bool GrGpu::attachStencilAttachmentToRenderTarget(GrRenderTarget* rt) {
131 SkASSERT(NULL == rt->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800132 GrUniqueKey sbKey;
bsalomond08ea5f2015-02-20 06:58:13 -0800133
134 int width = rt->width();
135 int height = rt->height();
robertphillipsca75ea82015-03-20 06:43:11 -0700136#if 0
bsalomond08ea5f2015-02-20 06:58:13 -0800137 if (this->caps()->oversizedStencilSupport()) {
138 width = SkNextPow2(width);
139 height = SkNextPow2(height);
140 }
robertphillipsca75ea82015-03-20 06:43:11 -0700141#endif
bsalomond08ea5f2015-02-20 06:58:13 -0800142
egdaniel8dc7c3a2015-04-16 11:22:42 -0700143 GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height, rt->numSamples(), &sbKey);
144 SkAutoTUnref<GrStencilAttachment> sb(static_cast<GrStencilAttachment*>(
bsalomon02a44a42015-02-19 09:09:00 -0800145 this->getContext()->getResourceCache()->findAndRefUniqueResource(sbKey)));
bsalomon49f085d2014-09-05 13:34:00 -0700146 if (sb) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700147 if (this->attachStencilAttachmentToRenderTarget(sb, rt)) {
148 rt->renderTargetPriv().didAttachStencilAttachment(sb);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800149 return true;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000150 }
bsalomon6bc1b5f2015-02-23 09:06:38 -0800151 return false;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000152 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700153 if (this->createStencilAttachmentForRenderTarget(rt, width, height)) {
egdanieldf603552015-03-18 13:26:11 -0700154 // Right now we're clearing the stencil buffer here after it is
155 // attached to an RT for the first time. When we start matching
156 // stencil buffers with smaller color targets this will no longer
157 // be correct because it won't be guaranteed to clear the entire
158 // sb.
159 // We used to clear down in the GL subclass using a special purpose
160 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
161 // FBO status.
162 this->clearStencil(rt);
egdaniel8dc7c3a2015-04-16 11:22:42 -0700163 GrStencilAttachment* sb = rt->renderTargetPriv().getStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800164 sb->resourcePriv().setUniqueKey(sbKey);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000165 return true;
166 } else {
167 return false;
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000168 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000169}
170
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000171GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000172 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000173 GrTexture* tex = this->onWrapBackendTexture(desc);
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000174 if (NULL == tex) {
175 return NULL;
176 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000177 // TODO: defer this and attach dynamically
178 GrRenderTarget* tgt = tex->asRenderTarget();
egdaniel8dc7c3a2015-04-16 11:22:42 -0700179 if (tgt && !this->attachStencilAttachmentToRenderTarget(tgt)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000180 tex->unref();
181 return NULL;
182 } else {
183 return tex;
184 }
185}
186
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000187GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000188 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000189 return this->onWrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000190}
191
robertphillips@google.comadacc702013-10-14 21:53:24 +0000192GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000193 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000194 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000195}
196
robertphillips@google.comadacc702013-10-14 21:53:24 +0000197GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000198 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000199 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000200}
201
joshualitt3322fa42014-11-07 08:48:51 -0800202void GrGpu::clear(const SkIRect* rect,
203 GrColor color,
204 bool canIgnoreRect,
205 GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -0800206 SkASSERT(renderTarget);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000207 this->handleDirtyContext();
joshualitt4b68ec02014-11-07 14:11:45 -0800208 this->onClear(renderTarget, rect, color, canIgnoreRect);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000209}
210
joshualitt6db519c2014-10-29 08:48:18 -0700211void GrGpu::clearStencilClip(const SkIRect& rect,
212 bool insideClip,
213 GrRenderTarget* renderTarget) {
joshualittd53a8272014-11-10 16:03:14 -0800214 SkASSERT(renderTarget);
joshualitt6db519c2014-10-29 08:48:18 -0700215 this->handleDirtyContext();
216 this->onClearStencilClip(renderTarget, rect, insideClip);
217}
218
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000219bool GrGpu::readPixels(GrRenderTarget* target,
220 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000221 GrPixelConfig config, void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000222 size_t rowBytes) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000223 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000224 return this->onReadPixels(target, left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000225 config, buffer, rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000226}
227
bsalomon@google.com9c680582013-02-06 18:17:50 +0000228bool GrGpu::writeTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000229 int left, int top, int width, int height,
230 GrPixelConfig config, const void* buffer,
231 size_t rowBytes) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000232 this->handleDirtyContext();
bsalomonb12ea412015-02-02 21:19:50 -0800233 if (this->onWriteTexturePixels(texture, left, top, width, height,
234 config, buffer, rowBytes)) {
235 fStats.incTextureUploads();
236 return true;
237 }
238 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000239}
240
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000241void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000242 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000243 this->handleDirtyContext();
244 this->onResolveRenderTarget(target);
245}
246
joshualitt3322fa42014-11-07 08:48:51 -0800247typedef GrTraceMarkerSet::Iter TMIter;
248void GrGpu::saveActiveTraceMarkers() {
249 if (this->caps()->gpuTracingSupport()) {
250 SkASSERT(0 == fStoredTraceMarkers.count());
251 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
252 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
253 this->removeGpuTraceMarker(&(*iter));
254 }
255 }
256}
257
258void GrGpu::restoreActiveTraceMarkers() {
259 if (this->caps()->gpuTracingSupport()) {
260 SkASSERT(0 == fActiveTraceMarkers.count());
261 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
262 this->addGpuTraceMarker(&(*iter));
263 }
264 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
265 this->fStoredTraceMarkers.remove(*iter);
266 }
267 }
268}
269
270void GrGpu::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
271 if (this->caps()->gpuTracingSupport()) {
272 SkASSERT(fGpuTraceMarkerCount >= 0);
273 this->fActiveTraceMarkers.add(*marker);
274 this->didAddGpuTraceMarker();
275 ++fGpuTraceMarkerCount;
276 }
277}
278
279void GrGpu::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
280 if (this->caps()->gpuTracingSupport()) {
281 SkASSERT(fGpuTraceMarkerCount >= 1);
282 this->fActiveTraceMarkers.remove(*marker);
283 this->didRemoveGpuTraceMarker();
284 --fGpuTraceMarkerCount;
285 }
286}
287
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000288////////////////////////////////////////////////////////////////////////////////
289
bsalomoncb8979d2015-05-05 09:51:38 -0700290void GrGpu::draw(const DrawArgs& args, const GrVertices& vertices) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000291 this->handleDirtyContext();
bsalomone64eb572015-05-07 11:35:55 -0700292 GrVertices::Iterator iter;
293 const GrNonInstancedVertices* verts = iter.init(vertices);
294 do {
295 this->onDraw(args, *verts);
296 } while ((verts = iter.next()));
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000297}
298
bsalomon3e791242014-12-17 13:43:13 -0800299void GrGpu::stencilPath(const GrPath* path, const StencilPathState& state) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000300 this->handleDirtyContext();
bsalomon3e791242014-12-17 13:43:13 -0800301 this->onStencilPath(path, state);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000302}
303
joshualitt873ad0e2015-01-20 09:08:51 -0800304void GrGpu::drawPath(const DrawArgs& args,
joshualittd53a8272014-11-10 16:03:14 -0800305 const GrPath* path,
joshualitt9176e2c2014-11-20 07:28:52 -0800306 const GrStencilSettings& stencilSettings) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000307 this->handleDirtyContext();
joshualitt873ad0e2015-01-20 09:08:51 -0800308 this->onDrawPath(args, path, stencilSettings);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000309}
310
joshualitt873ad0e2015-01-20 09:08:51 -0800311void GrGpu::drawPaths(const DrawArgs& args,
joshualittd53a8272014-11-10 16:03:14 -0800312 const GrPathRange* pathRange,
cdalton55b24af2014-11-25 11:00:56 -0800313 const void* indices,
314 GrDrawTarget::PathIndexType indexType,
315 const float transformValues[],
316 GrDrawTarget::PathTransformType transformType,
joshualittd53a8272014-11-10 16:03:14 -0800317 int count,
joshualitt9176e2c2014-11-20 07:28:52 -0800318 const GrStencilSettings& stencilSettings) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000319 this->handleDirtyContext();
cdalton55b24af2014-11-25 11:00:56 -0800320 pathRange->willDrawPaths(indices, indexType, count);
joshualitt873ad0e2015-01-20 09:08:51 -0800321 this->onDrawPaths(args, pathRange, indices, indexType, transformValues,
bsalomond95263c2014-12-16 13:05:12 -0800322 transformType, count, stencilSettings);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000323}