blob: cdf5226ed1f4c8418f7748efbe022e3c1dcb4090 [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"
bsalomon3582d3e2015-02-13 14:20:05 -080015#include "GrGpuResourcePriv.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000016#include "GrIndexBuffer.h"
bsalomon0ea80f42015-02-11 10:49:59 -080017#include "GrResourceCache.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080018#include "GrRenderTargetPriv.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070019#include "GrStencilAttachment.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000020#include "GrVertexBuffer.h"
bsalomon@google.com1c13c962011-02-14 16:51:21 +000021
bsalomon@google.comd302f142011-03-03 13:54:13 +000022////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000023
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000024GrGpu::GrGpu(GrContext* context)
joshualitt3322fa42014-11-07 08:48:51 -080025 : fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com0a208a12013-06-28 18:57:35 +000026 , fResetBits(kAll_GrBackendState)
hendrikwf72558e2015-03-04 06:22:18 -080027 , fGpuTraceMarkerCount(0)
joshualitt3322fa42014-11-07 08:48:51 -080028 , fContext(context) {
reed@google.comac10a2d2010-12-22 21:39:39 +000029}
30
bsalomoned0bcad2015-05-04 10:36:42 -070031GrGpu::~GrGpu() {}
bsalomon1d89ddc2014-08-19 14:20:58 -070032
robertphillipse3371302014-09-17 06:01:06 -070033void GrGpu::contextAbandoned() {}
reed@google.comac10a2d2010-12-22 21:39:39 +000034
bsalomon@google.comd302f142011-03-03 13:54:13 +000035////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000036
egdanielcf614fd2015-04-22 13:58:58 -070037static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
egdanielb0e1be22015-04-22 13:27:39 -070038 // By default, GrRenderTargets are GL's normal orientation so that they
39 // can be drawn to by the outside world without the client having
40 // to render upside down.
41 if (kDefault_GrSurfaceOrigin == origin) {
42 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
43 } else {
44 return origin;
45 }
46}
47
egdanielb0e1be22015-04-22 13:27:39 -070048GrTexture* GrGpu::createTexture(const GrSurfaceDesc& origDesc, bool budgeted,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000049 const void* srcData, size_t rowBytes) {
egdanielb0e1be22015-04-22 13:27:39 -070050 GrSurfaceDesc desc = origDesc;
51
krajcevski9c0e6292014-06-02 07:38:14 -070052 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000053 return NULL;
54 }
krajcevski9c0e6292014-06-02 07:38:14 -070055
bsalomondb558dd2015-01-23 13:19:00 -080056 bool isRT = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
57 if (isRT && !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +000058 return NULL;
59 }
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000060
krajcevski9c0e6292014-06-02 07:38:14 -070061 GrTexture *tex = NULL;
egdanielb0e1be22015-04-22 13:27:39 -070062
63 if (isRT) {
64 int maxRTSize = this->caps()->maxRenderTargetSize();
65 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) {
66 return NULL;
67 }
68 } else {
69 int maxSize = this->caps()->maxTextureSize();
70 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
71 return NULL;
72 }
73 }
74
75 GrGpuResource::LifeCycle lifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
76 GrGpuResource::kUncached_LifeCycle;
77
78 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
79 // Attempt to catch un- or wrongly initialized sample counts;
80 SkASSERT(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
81
82 desc.fOrigin = resolve_origin(desc.fOrigin, isRT);
83
krajcevski9c0e6292014-06-02 07:38:14 -070084 if (GrPixelConfigIsCompressed(desc.fConfig)) {
85 // We shouldn't be rendering into this
egdanielb0e1be22015-04-22 13:27:39 -070086 SkASSERT(!isRT);
87 SkASSERT(0 == desc.fSampleCnt);
krajcevski9c0e6292014-06-02 07:38:14 -070088
89 if (!this->caps()->npotTextureTileSupport() &&
tfarinaf9dae782014-06-06 06:35:28 -070090 (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight))) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000091 return NULL;
92 }
tfarinaf9dae782014-06-06 06:35:28 -070093
krajcevski9c0e6292014-06-02 07:38:14 -070094 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -070095 tex = this->onCreateCompressedTexture(desc, lifeCycle, srcData);
krajcevski9c0e6292014-06-02 07:38:14 -070096 } else {
97 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -070098 tex = this->onCreateTexture(desc, lifeCycle, srcData, rowBytes);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000099 }
bsalomondb558dd2015-01-23 13:19:00 -0800100 if (!this->caps()->reuseScratchTextures() && !isRT) {
bsalomon3582d3e2015-02-13 14:20:05 -0800101 tex->resourcePriv().removeScratchKey();
bsalomondb558dd2015-01-23 13:19:00 -0800102 }
bsalomonb12ea412015-02-02 21:19:50 -0800103 if (tex) {
104 fStats.incTextureCreates();
105 if (srcData) {
106 fStats.incTextureUploads();
107 }
108 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000109 return tex;
110}
111
egdaniel8dc7c3a2015-04-16 11:22:42 -0700112bool GrGpu::attachStencilAttachmentToRenderTarget(GrRenderTarget* rt) {
113 SkASSERT(NULL == rt->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800114 GrUniqueKey sbKey;
bsalomond08ea5f2015-02-20 06:58:13 -0800115
116 int width = rt->width();
117 int height = rt->height();
robertphillipsca75ea82015-03-20 06:43:11 -0700118#if 0
bsalomond08ea5f2015-02-20 06:58:13 -0800119 if (this->caps()->oversizedStencilSupport()) {
120 width = SkNextPow2(width);
121 height = SkNextPow2(height);
122 }
robertphillipsca75ea82015-03-20 06:43:11 -0700123#endif
bsalomond08ea5f2015-02-20 06:58:13 -0800124
egdaniel8dc7c3a2015-04-16 11:22:42 -0700125 GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height, rt->numSamples(), &sbKey);
126 SkAutoTUnref<GrStencilAttachment> sb(static_cast<GrStencilAttachment*>(
bsalomon02a44a42015-02-19 09:09:00 -0800127 this->getContext()->getResourceCache()->findAndRefUniqueResource(sbKey)));
bsalomon49f085d2014-09-05 13:34:00 -0700128 if (sb) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700129 if (this->attachStencilAttachmentToRenderTarget(sb, rt)) {
130 rt->renderTargetPriv().didAttachStencilAttachment(sb);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800131 return true;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000132 }
bsalomon6bc1b5f2015-02-23 09:06:38 -0800133 return false;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000134 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700135 if (this->createStencilAttachmentForRenderTarget(rt, width, height)) {
egdanieldf603552015-03-18 13:26:11 -0700136 // Right now we're clearing the stencil buffer here after it is
137 // attached to an RT for the first time. When we start matching
138 // stencil buffers with smaller color targets this will no longer
139 // be correct because it won't be guaranteed to clear the entire
140 // sb.
141 // We used to clear down in the GL subclass using a special purpose
142 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
143 // FBO status.
144 this->clearStencil(rt);
egdaniel8dc7c3a2015-04-16 11:22:42 -0700145 GrStencilAttachment* sb = rt->renderTargetPriv().getStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800146 sb->resourcePriv().setUniqueKey(sbKey);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000147 return true;
148 } else {
149 return false;
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000150 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000151}
152
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000153GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000154 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000155 GrTexture* tex = this->onWrapBackendTexture(desc);
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000156 if (NULL == tex) {
157 return NULL;
158 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000159 // TODO: defer this and attach dynamically
160 GrRenderTarget* tgt = tex->asRenderTarget();
egdaniel8dc7c3a2015-04-16 11:22:42 -0700161 if (tgt && !this->attachStencilAttachmentToRenderTarget(tgt)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000162 tex->unref();
163 return NULL;
164 } else {
165 return tex;
166 }
167}
168
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000169GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000170 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000171 return this->onWrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000172}
173
robertphillips@google.comadacc702013-10-14 21:53:24 +0000174GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000175 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000176 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000177}
178
robertphillips@google.comadacc702013-10-14 21:53:24 +0000179GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000180 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000181 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000182}
183
joshualitt3322fa42014-11-07 08:48:51 -0800184void GrGpu::clear(const SkIRect* rect,
185 GrColor color,
186 bool canIgnoreRect,
187 GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -0800188 SkASSERT(renderTarget);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000189 this->handleDirtyContext();
joshualitt4b68ec02014-11-07 14:11:45 -0800190 this->onClear(renderTarget, rect, color, canIgnoreRect);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000191}
192
joshualitt6db519c2014-10-29 08:48:18 -0700193void GrGpu::clearStencilClip(const SkIRect& rect,
194 bool insideClip,
195 GrRenderTarget* renderTarget) {
joshualittd53a8272014-11-10 16:03:14 -0800196 SkASSERT(renderTarget);
joshualitt6db519c2014-10-29 08:48:18 -0700197 this->handleDirtyContext();
198 this->onClearStencilClip(renderTarget, rect, insideClip);
199}
200
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000201bool GrGpu::readPixels(GrRenderTarget* target,
202 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000203 GrPixelConfig config, void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000204 size_t rowBytes) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000205 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000206 return this->onReadPixels(target, left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000207 config, buffer, rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000208}
209
bsalomon@google.com9c680582013-02-06 18:17:50 +0000210bool GrGpu::writeTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000211 int left, int top, int width, int height,
212 GrPixelConfig config, const void* buffer,
213 size_t rowBytes) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000214 this->handleDirtyContext();
bsalomonb12ea412015-02-02 21:19:50 -0800215 if (this->onWriteTexturePixels(texture, left, top, width, height,
216 config, buffer, rowBytes)) {
217 fStats.incTextureUploads();
218 return true;
219 }
220 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000221}
222
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000223void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000224 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000225 this->handleDirtyContext();
226 this->onResolveRenderTarget(target);
227}
228
joshualitt3322fa42014-11-07 08:48:51 -0800229typedef GrTraceMarkerSet::Iter TMIter;
230void GrGpu::saveActiveTraceMarkers() {
231 if (this->caps()->gpuTracingSupport()) {
232 SkASSERT(0 == fStoredTraceMarkers.count());
233 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
234 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
235 this->removeGpuTraceMarker(&(*iter));
236 }
237 }
238}
239
240void GrGpu::restoreActiveTraceMarkers() {
241 if (this->caps()->gpuTracingSupport()) {
242 SkASSERT(0 == fActiveTraceMarkers.count());
243 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
244 this->addGpuTraceMarker(&(*iter));
245 }
246 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
247 this->fStoredTraceMarkers.remove(*iter);
248 }
249 }
250}
251
252void GrGpu::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
253 if (this->caps()->gpuTracingSupport()) {
254 SkASSERT(fGpuTraceMarkerCount >= 0);
255 this->fActiveTraceMarkers.add(*marker);
256 this->didAddGpuTraceMarker();
257 ++fGpuTraceMarkerCount;
258 }
259}
260
261void GrGpu::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
262 if (this->caps()->gpuTracingSupport()) {
263 SkASSERT(fGpuTraceMarkerCount >= 1);
264 this->fActiveTraceMarkers.remove(*marker);
265 this->didRemoveGpuTraceMarker();
266 --fGpuTraceMarkerCount;
267 }
268}
269
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000270////////////////////////////////////////////////////////////////////////////////
271
joshualitt873ad0e2015-01-20 09:08:51 -0800272void GrGpu::draw(const DrawArgs& args, const GrDrawTarget::DrawInfo& info) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000273 this->handleDirtyContext();
joshualitt873ad0e2015-01-20 09:08:51 -0800274 this->onDraw(args, info);
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000275}
276
bsalomon3e791242014-12-17 13:43:13 -0800277void GrGpu::stencilPath(const GrPath* path, const StencilPathState& state) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000278 this->handleDirtyContext();
bsalomon3e791242014-12-17 13:43:13 -0800279 this->onStencilPath(path, state);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000280}
281
joshualitt873ad0e2015-01-20 09:08:51 -0800282void GrGpu::drawPath(const DrawArgs& args,
joshualittd53a8272014-11-10 16:03:14 -0800283 const GrPath* path,
joshualitt9176e2c2014-11-20 07:28:52 -0800284 const GrStencilSettings& stencilSettings) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000285 this->handleDirtyContext();
joshualitt873ad0e2015-01-20 09:08:51 -0800286 this->onDrawPath(args, path, stencilSettings);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000287}
288
joshualitt873ad0e2015-01-20 09:08:51 -0800289void GrGpu::drawPaths(const DrawArgs& args,
joshualittd53a8272014-11-10 16:03:14 -0800290 const GrPathRange* pathRange,
cdalton55b24af2014-11-25 11:00:56 -0800291 const void* indices,
292 GrDrawTarget::PathIndexType indexType,
293 const float transformValues[],
294 GrDrawTarget::PathTransformType transformType,
joshualittd53a8272014-11-10 16:03:14 -0800295 int count,
joshualitt9176e2c2014-11-20 07:28:52 -0800296 const GrStencilSettings& stencilSettings) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000297 this->handleDirtyContext();
cdalton55b24af2014-11-25 11:00:56 -0800298 pathRange->willDrawPaths(indices, indexType, count);
joshualitt873ad0e2015-01-20 09:08:51 -0800299 this->onDrawPaths(args, pathRange, indices, indexType, transformValues,
bsalomond95263c2014-12-16 13:05:12 -0800300 transformType, count, stencilSettings);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000301}