blob: 4d6f5d623831091b2a0c1e72814e33b7e6e0b50a [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
bsalomoneb1cb5c2015-05-22 08:01:09 -070012#include "GrCaps.h"
bsalomon@google.com558a75b2011-08-08 17:01:14 +000013#include "GrContext.h"
bsalomon3582d3e2015-02-13 14:20:05 -080014#include "GrGpuResourcePriv.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000015#include "GrIndexBuffer.h"
kkinnunencabe20c2015-06-01 01:37:26 -070016#include "GrPathRendering.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"
bsalomoncb8979d2015-05-05 09:51:38 -070021#include "GrVertices.h"
22
23GrVertices& GrVertices::operator =(const GrVertices& di) {
24 fPrimitiveType = di.fPrimitiveType;
25 fStartVertex = di.fStartVertex;
26 fStartIndex = di.fStartIndex;
27 fVertexCount = di.fVertexCount;
28 fIndexCount = di.fIndexCount;
29
30 fInstanceCount = di.fInstanceCount;
31 fVerticesPerInstance = di.fVerticesPerInstance;
32 fIndicesPerInstance = di.fIndicesPerInstance;
bsalomone64eb572015-05-07 11:35:55 -070033 fMaxInstancesPerDraw = di.fMaxInstancesPerDraw;
bsalomoncb8979d2015-05-05 09:51:38 -070034
35 fVertexBuffer.reset(di.vertexBuffer());
36 fIndexBuffer.reset(di.indexBuffer());
37
38 return *this;
39}
bsalomon@google.com1c13c962011-02-14 16:51:21 +000040
bsalomon@google.comd302f142011-03-03 13:54:13 +000041////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000042
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000043GrGpu::GrGpu(GrContext* context)
joshualitt3322fa42014-11-07 08:48:51 -080044 : fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com0a208a12013-06-28 18:57:35 +000045 , fResetBits(kAll_GrBackendState)
hendrikwf72558e2015-03-04 06:22:18 -080046 , fGpuTraceMarkerCount(0)
joshualitt3322fa42014-11-07 08:48:51 -080047 , fContext(context) {
reed@google.comac10a2d2010-12-22 21:39:39 +000048}
49
bsalomoned0bcad2015-05-04 10:36:42 -070050GrGpu::~GrGpu() {}
bsalomon1d89ddc2014-08-19 14:20:58 -070051
robertphillipse3371302014-09-17 06:01:06 -070052void GrGpu::contextAbandoned() {}
reed@google.comac10a2d2010-12-22 21:39:39 +000053
bsalomon@google.comd302f142011-03-03 13:54:13 +000054////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000055
egdanielcf614fd2015-04-22 13:58:58 -070056static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
egdanielb0e1be22015-04-22 13:27:39 -070057 // By default, GrRenderTargets are GL's normal orientation so that they
58 // can be drawn to by the outside world without the client having
59 // to render upside down.
60 if (kDefault_GrSurfaceOrigin == origin) {
61 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
62 } else {
63 return origin;
64 }
65}
66
egdanielb0e1be22015-04-22 13:27:39 -070067GrTexture* GrGpu::createTexture(const GrSurfaceDesc& origDesc, bool budgeted,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000068 const void* srcData, size_t rowBytes) {
egdanielb0e1be22015-04-22 13:27:39 -070069 GrSurfaceDesc desc = origDesc;
70
krajcevski9c0e6292014-06-02 07:38:14 -070071 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000072 return NULL;
73 }
krajcevski9c0e6292014-06-02 07:38:14 -070074
bsalomondb558dd2015-01-23 13:19:00 -080075 bool isRT = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
76 if (isRT && !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +000077 return NULL;
78 }
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000079
egdaniel8c9b6f12015-05-12 13:36:30 -070080 // We currently not support multisampled textures
81 if (!isRT && desc.fSampleCnt > 0) {
82 return NULL;
83 }
84
krajcevski9c0e6292014-06-02 07:38:14 -070085 GrTexture *tex = NULL;
egdanielb0e1be22015-04-22 13:27:39 -070086
87 if (isRT) {
88 int maxRTSize = this->caps()->maxRenderTargetSize();
89 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) {
90 return NULL;
91 }
92 } else {
93 int maxSize = this->caps()->maxTextureSize();
94 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
95 return NULL;
96 }
97 }
98
99 GrGpuResource::LifeCycle lifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
100 GrGpuResource::kUncached_LifeCycle;
101
102 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
103 // Attempt to catch un- or wrongly initialized sample counts;
104 SkASSERT(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
105
106 desc.fOrigin = resolve_origin(desc.fOrigin, isRT);
107
krajcevski9c0e6292014-06-02 07:38:14 -0700108 if (GrPixelConfigIsCompressed(desc.fConfig)) {
109 // We shouldn't be rendering into this
egdanielb0e1be22015-04-22 13:27:39 -0700110 SkASSERT(!isRT);
111 SkASSERT(0 == desc.fSampleCnt);
krajcevski9c0e6292014-06-02 07:38:14 -0700112
113 if (!this->caps()->npotTextureTileSupport() &&
tfarinaf9dae782014-06-06 06:35:28 -0700114 (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight))) {
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000115 return NULL;
116 }
tfarinaf9dae782014-06-06 06:35:28 -0700117
krajcevski9c0e6292014-06-02 07:38:14 -0700118 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700119 tex = this->onCreateCompressedTexture(desc, lifeCycle, srcData);
krajcevski9c0e6292014-06-02 07:38:14 -0700120 } else {
121 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700122 tex = this->onCreateTexture(desc, lifeCycle, srcData, rowBytes);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000123 }
bsalomondb558dd2015-01-23 13:19:00 -0800124 if (!this->caps()->reuseScratchTextures() && !isRT) {
bsalomon3582d3e2015-02-13 14:20:05 -0800125 tex->resourcePriv().removeScratchKey();
bsalomondb558dd2015-01-23 13:19:00 -0800126 }
bsalomonb12ea412015-02-02 21:19:50 -0800127 if (tex) {
128 fStats.incTextureCreates();
129 if (srcData) {
130 fStats.incTextureUploads();
131 }
132 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000133 return tex;
134}
135
egdaniel8dc7c3a2015-04-16 11:22:42 -0700136bool GrGpu::attachStencilAttachmentToRenderTarget(GrRenderTarget* rt) {
137 SkASSERT(NULL == rt->renderTargetPriv().getStencilAttachment());
bsalomon02a44a42015-02-19 09:09:00 -0800138 GrUniqueKey sbKey;
bsalomond08ea5f2015-02-20 06:58:13 -0800139
140 int width = rt->width();
141 int height = rt->height();
robertphillipsca75ea82015-03-20 06:43:11 -0700142#if 0
bsalomond08ea5f2015-02-20 06:58:13 -0800143 if (this->caps()->oversizedStencilSupport()) {
144 width = SkNextPow2(width);
145 height = SkNextPow2(height);
146 }
robertphillipsca75ea82015-03-20 06:43:11 -0700147#endif
bsalomond08ea5f2015-02-20 06:58:13 -0800148
egdaniel8dc7c3a2015-04-16 11:22:42 -0700149 GrStencilAttachment::ComputeSharedStencilAttachmentKey(width, height, rt->numSamples(), &sbKey);
150 SkAutoTUnref<GrStencilAttachment> sb(static_cast<GrStencilAttachment*>(
bsalomon02a44a42015-02-19 09:09:00 -0800151 this->getContext()->getResourceCache()->findAndRefUniqueResource(sbKey)));
bsalomon49f085d2014-09-05 13:34:00 -0700152 if (sb) {
egdaniel8dc7c3a2015-04-16 11:22:42 -0700153 if (this->attachStencilAttachmentToRenderTarget(sb, rt)) {
154 rt->renderTargetPriv().didAttachStencilAttachment(sb);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800155 return true;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000156 }
bsalomon6bc1b5f2015-02-23 09:06:38 -0800157 return false;
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000158 }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700159 if (this->createStencilAttachmentForRenderTarget(rt, width, height)) {
egdanieldf603552015-03-18 13:26:11 -0700160 // Right now we're clearing the stencil buffer here after it is
161 // attached to an RT for the first time. When we start matching
162 // stencil buffers with smaller color targets this will no longer
163 // be correct because it won't be guaranteed to clear the entire
164 // sb.
165 // We used to clear down in the GL subclass using a special purpose
166 // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported
167 // FBO status.
168 this->clearStencil(rt);
egdaniel8dc7c3a2015-04-16 11:22:42 -0700169 GrStencilAttachment* sb = rt->renderTargetPriv().getStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800170 sb->resourcePriv().setUniqueKey(sbKey);
bsalomon@google.com558a75b2011-08-08 17:01:14 +0000171 return true;
172 } else {
173 return false;
bsalomon@google.comedc177d2011-08-05 15:46:40 +0000174 }
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000175}
176
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000177GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000178 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000179 GrTexture* tex = this->onWrapBackendTexture(desc);
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000180 if (NULL == tex) {
181 return NULL;
182 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000183 // TODO: defer this and attach dynamically
184 GrRenderTarget* tgt = tex->asRenderTarget();
egdaniel8dc7c3a2015-04-16 11:22:42 -0700185 if (tgt && !this->attachStencilAttachmentToRenderTarget(tgt)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000186 tex->unref();
187 return NULL;
188 } else {
189 return tex;
190 }
191}
192
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000193GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000194 this->handleDirtyContext();
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000195 return this->onWrapBackendRenderTarget(desc);
bsalomon@google.come269f212011-11-07 13:29:52 +0000196}
197
robertphillips@google.comadacc702013-10-14 21:53:24 +0000198GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000199 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000200 return this->onCreateVertexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000201}
202
robertphillips@google.comadacc702013-10-14 21:53:24 +0000203GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000204 this->handleDirtyContext();
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000205 return this->onCreateIndexBuffer(size, dynamic);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000206}
207
joshualitt3322fa42014-11-07 08:48:51 -0800208void GrGpu::clear(const SkIRect* rect,
209 GrColor color,
210 bool canIgnoreRect,
211 GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -0800212 SkASSERT(renderTarget);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000213 this->handleDirtyContext();
joshualitt4b68ec02014-11-07 14:11:45 -0800214 this->onClear(renderTarget, rect, color, canIgnoreRect);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000215}
216
joshualitt6db519c2014-10-29 08:48:18 -0700217void GrGpu::clearStencilClip(const SkIRect& rect,
218 bool insideClip,
219 GrRenderTarget* renderTarget) {
joshualittd53a8272014-11-10 16:03:14 -0800220 SkASSERT(renderTarget);
joshualitt6db519c2014-10-29 08:48:18 -0700221 this->handleDirtyContext();
222 this->onClearStencilClip(renderTarget, rect, insideClip);
223}
224
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000225bool GrGpu::readPixels(GrRenderTarget* target,
226 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000227 GrPixelConfig config, void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000228 size_t rowBytes) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000229 this->handleDirtyContext();
bsalomon@google.comc6980972011-11-02 19:57:21 +0000230 return this->onReadPixels(target, left, top, width, height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000231 config, buffer, rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000232}
233
bsalomon@google.com9c680582013-02-06 18:17:50 +0000234bool GrGpu::writeTexturePixels(GrTexture* texture,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000235 int left, int top, int width, int height,
236 GrPixelConfig config, const void* buffer,
237 size_t rowBytes) {
bsalomon@google.com6f379512011-11-16 20:36:03 +0000238 this->handleDirtyContext();
bsalomonb12ea412015-02-02 21:19:50 -0800239 if (this->onWriteTexturePixels(texture, left, top, width, height,
240 config, buffer, rowBytes)) {
241 fStats.incTextureUploads();
242 return true;
243 }
244 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000245}
246
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000247void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000248 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000249 this->handleDirtyContext();
250 this->onResolveRenderTarget(target);
251}
252
joshualitt3322fa42014-11-07 08:48:51 -0800253typedef GrTraceMarkerSet::Iter TMIter;
254void GrGpu::saveActiveTraceMarkers() {
255 if (this->caps()->gpuTracingSupport()) {
256 SkASSERT(0 == fStoredTraceMarkers.count());
257 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
258 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
259 this->removeGpuTraceMarker(&(*iter));
260 }
261 }
262}
263
264void GrGpu::restoreActiveTraceMarkers() {
265 if (this->caps()->gpuTracingSupport()) {
266 SkASSERT(0 == fActiveTraceMarkers.count());
267 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
268 this->addGpuTraceMarker(&(*iter));
269 }
270 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
271 this->fStoredTraceMarkers.remove(*iter);
272 }
273 }
274}
275
276void GrGpu::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
277 if (this->caps()->gpuTracingSupport()) {
278 SkASSERT(fGpuTraceMarkerCount >= 0);
279 this->fActiveTraceMarkers.add(*marker);
280 this->didAddGpuTraceMarker();
281 ++fGpuTraceMarkerCount;
282 }
283}
284
285void GrGpu::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
286 if (this->caps()->gpuTracingSupport()) {
287 SkASSERT(fGpuTraceMarkerCount >= 1);
288 this->fActiveTraceMarkers.remove(*marker);
289 this->didRemoveGpuTraceMarker();
290 --fGpuTraceMarkerCount;
291 }
292}
293
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000294////////////////////////////////////////////////////////////////////////////////
295
bsalomoncb8979d2015-05-05 09:51:38 -0700296void GrGpu::draw(const DrawArgs& args, const GrVertices& vertices) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000297 this->handleDirtyContext();
bsalomone64eb572015-05-07 11:35:55 -0700298 GrVertices::Iterator iter;
299 const GrNonInstancedVertices* verts = iter.init(vertices);
300 do {
301 this->onDraw(args, *verts);
302 } while ((verts = iter.next()));
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000303}