blob: 96728f3ba80d16950b34225840061b0bc04de32d [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"
bsalomoncb02b382015-08-12 11:14:50 -070017#include "GrPipeline.h"
bsalomon0ea80f42015-02-11 10:49:59 -080018#include "GrResourceCache.h"
egdanielec00d942015-09-14 12:56:10 -070019#include "GrResourceProvider.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080020#include "GrRenderTargetPriv.h"
egdaniel8dc7c3a2015-04-16 11:22:42 -070021#include "GrStencilAttachment.h"
egdaniel6d901da2015-07-30 12:02:15 -070022#include "GrSurfacePriv.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000023#include "GrVertexBuffer.h"
bsalomoncb8979d2015-05-05 09:51:38 -070024#include "GrVertices.h"
25
26GrVertices& GrVertices::operator =(const GrVertices& di) {
27 fPrimitiveType = di.fPrimitiveType;
28 fStartVertex = di.fStartVertex;
29 fStartIndex = di.fStartIndex;
30 fVertexCount = di.fVertexCount;
31 fIndexCount = di.fIndexCount;
32
33 fInstanceCount = di.fInstanceCount;
34 fVerticesPerInstance = di.fVerticesPerInstance;
35 fIndicesPerInstance = di.fIndicesPerInstance;
bsalomone64eb572015-05-07 11:35:55 -070036 fMaxInstancesPerDraw = di.fMaxInstancesPerDraw;
bsalomoncb8979d2015-05-05 09:51:38 -070037
38 fVertexBuffer.reset(di.vertexBuffer());
39 fIndexBuffer.reset(di.indexBuffer());
40
41 return *this;
42}
bsalomon@google.com1c13c962011-02-14 16:51:21 +000043
bsalomon@google.comd302f142011-03-03 13:54:13 +000044////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000045
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000046GrGpu::GrGpu(GrContext* context)
joshualitt3322fa42014-11-07 08:48:51 -080047 : fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com0a208a12013-06-28 18:57:35 +000048 , fResetBits(kAll_GrBackendState)
joshualitt3322fa42014-11-07 08:48:51 -080049 , fContext(context) {
reed@google.comac10a2d2010-12-22 21:39:39 +000050}
51
bsalomoned0bcad2015-05-04 10:36:42 -070052GrGpu::~GrGpu() {}
bsalomon1d89ddc2014-08-19 14:20:58 -070053
robertphillipse3371302014-09-17 06:01:06 -070054void GrGpu::contextAbandoned() {}
reed@google.comac10a2d2010-12-22 21:39:39 +000055
bsalomon@google.comd302f142011-03-03 13:54:13 +000056////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000057
egdanielcf614fd2015-04-22 13:58:58 -070058static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
egdanielb0e1be22015-04-22 13:27:39 -070059 // By default, GrRenderTargets are GL's normal orientation so that they
60 // can be drawn to by the outside world without the client having
61 // to render upside down.
62 if (kDefault_GrSurfaceOrigin == origin) {
63 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
64 } else {
65 return origin;
66 }
67}
68
egdanielb0e1be22015-04-22 13:27:39 -070069GrTexture* GrGpu::createTexture(const GrSurfaceDesc& origDesc, bool budgeted,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000070 const void* srcData, size_t rowBytes) {
egdanielb0e1be22015-04-22 13:27:39 -070071 GrSurfaceDesc desc = origDesc;
72
krajcevski9c0e6292014-06-02 07:38:14 -070073 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
halcanary96fcdcc2015-08-27 07:41:13 -070074 return nullptr;
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000075 }
krajcevski9c0e6292014-06-02 07:38:14 -070076
bsalomondb558dd2015-01-23 13:19:00 -080077 bool isRT = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
78 if (isRT && !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
halcanary96fcdcc2015-08-27 07:41:13 -070079 return nullptr;
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +000080 }
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000081
robertphillips6e83ac72015-08-13 05:19:14 -070082 // We currently do not support multisampled textures
egdaniel8c9b6f12015-05-12 13:36:30 -070083 if (!isRT && desc.fSampleCnt > 0) {
halcanary96fcdcc2015-08-27 07:41:13 -070084 return nullptr;
egdaniel8c9b6f12015-05-12 13:36:30 -070085 }
86
halcanary96fcdcc2015-08-27 07:41:13 -070087 GrTexture *tex = nullptr;
egdanielb0e1be22015-04-22 13:27:39 -070088
89 if (isRT) {
90 int maxRTSize = this->caps()->maxRenderTargetSize();
91 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) {
halcanary96fcdcc2015-08-27 07:41:13 -070092 return nullptr;
egdanielb0e1be22015-04-22 13:27:39 -070093 }
94 } else {
95 int maxSize = this->caps()->maxTextureSize();
96 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
halcanary96fcdcc2015-08-27 07:41:13 -070097 return nullptr;
egdanielb0e1be22015-04-22 13:27:39 -070098 }
99 }
100
101 GrGpuResource::LifeCycle lifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
102 GrGpuResource::kUncached_LifeCycle;
103
104 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
105 // Attempt to catch un- or wrongly initialized sample counts;
106 SkASSERT(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
107
108 desc.fOrigin = resolve_origin(desc.fOrigin, isRT);
109
krajcevski9c0e6292014-06-02 07:38:14 -0700110 if (GrPixelConfigIsCompressed(desc.fConfig)) {
111 // We shouldn't be rendering into this
egdanielb0e1be22015-04-22 13:27:39 -0700112 SkASSERT(!isRT);
113 SkASSERT(0 == desc.fSampleCnt);
krajcevski9c0e6292014-06-02 07:38:14 -0700114
115 if (!this->caps()->npotTextureTileSupport() &&
tfarinaf9dae782014-06-06 06:35:28 -0700116 (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight))) {
halcanary96fcdcc2015-08-27 07:41:13 -0700117 return nullptr;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000118 }
tfarinaf9dae782014-06-06 06:35:28 -0700119
krajcevski9c0e6292014-06-02 07:38:14 -0700120 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700121 tex = this->onCreateCompressedTexture(desc, lifeCycle, srcData);
krajcevski9c0e6292014-06-02 07:38:14 -0700122 } else {
123 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700124 tex = this->onCreateTexture(desc, lifeCycle, srcData, rowBytes);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000125 }
bsalomondb558dd2015-01-23 13:19:00 -0800126 if (!this->caps()->reuseScratchTextures() && !isRT) {
bsalomon3582d3e2015-02-13 14:20:05 -0800127 tex->resourcePriv().removeScratchKey();
bsalomondb558dd2015-01-23 13:19:00 -0800128 }
bsalomonb12ea412015-02-02 21:19:50 -0800129 if (tex) {
130 fStats.incTextureCreates();
131 if (srcData) {
132 fStats.incTextureUploads();
133 }
134 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000135 return tex;
136}
137
bsalomon6dc6f5f2015-06-18 09:12:16 -0700138GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc, GrWrapOwnership ownership) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000139 this->handleDirtyContext();
bsalomon6dc6f5f2015-06-18 09:12:16 -0700140 GrTexture* tex = this->onWrapBackendTexture(desc, ownership);
halcanary96fcdcc2015-08-27 07:41:13 -0700141 if (nullptr == tex) {
142 return nullptr;
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000143 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000144 // TODO: defer this and attach dynamically
145 GrRenderTarget* tgt = tex->asRenderTarget();
egdanielec00d942015-09-14 12:56:10 -0700146 if (tgt && !fContext->resourceProvider()->attachStencilAttachment(tgt)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000147 tex->unref();
halcanary96fcdcc2015-08-27 07:41:13 -0700148 return nullptr;
bsalomon@google.come269f212011-11-07 13:29:52 +0000149 } else {
150 return tex;
151 }
152}
153
bsalomon6dc6f5f2015-06-18 09:12:16 -0700154GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc,
155 GrWrapOwnership ownership) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000156 this->handleDirtyContext();
bsalomon6dc6f5f2015-06-18 09:12:16 -0700157 return this->onWrapBackendRenderTarget(desc, ownership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000158}
159
robertphillips@google.comadacc702013-10-14 21:53:24 +0000160GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000161 this->handleDirtyContext();
robertphillips1b8e1b52015-06-24 06:54:10 -0700162 GrVertexBuffer* vb = this->onCreateVertexBuffer(size, dynamic);
163 if (!this->caps()->reuseScratchBuffers()) {
164 vb->resourcePriv().removeScratchKey();
165 }
166 return vb;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000167}
168
robertphillips@google.comadacc702013-10-14 21:53:24 +0000169GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000170 this->handleDirtyContext();
robertphillips1b8e1b52015-06-24 06:54:10 -0700171 GrIndexBuffer* ib = this->onCreateIndexBuffer(size, dynamic);
172 if (!this->caps()->reuseScratchBuffers()) {
173 ib->resourcePriv().removeScratchKey();
174 }
175 return ib;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000176}
177
egdaniel51c8d402015-08-06 10:54:13 -0700178void GrGpu::clear(const SkIRect& rect,
joshualitt3322fa42014-11-07 08:48:51 -0800179 GrColor color,
joshualitt3322fa42014-11-07 08:48:51 -0800180 GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -0800181 SkASSERT(renderTarget);
egdaniel51c8d402015-08-06 10:54:13 -0700182 SkASSERT(SkIRect::MakeWH(renderTarget->width(), renderTarget->height()).contains(rect));
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000183 this->handleDirtyContext();
egdaniel51c8d402015-08-06 10:54:13 -0700184 this->onClear(renderTarget, rect, color);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000185}
186
joshualitt6db519c2014-10-29 08:48:18 -0700187void GrGpu::clearStencilClip(const SkIRect& rect,
188 bool insideClip,
189 GrRenderTarget* renderTarget) {
joshualittd53a8272014-11-10 16:03:14 -0800190 SkASSERT(renderTarget);
joshualitt6db519c2014-10-29 08:48:18 -0700191 this->handleDirtyContext();
192 this->onClearStencilClip(renderTarget, rect, insideClip);
193}
194
joshualitt1cbdcde2015-08-21 11:53:29 -0700195bool GrGpu::copySurface(GrSurface* dst,
196 GrSurface* src,
197 const SkIRect& srcRect,
198 const SkIPoint& dstPoint) {
199 SkASSERT(dst && src);
200 this->handleDirtyContext();
201 return this->onCopySurface(dst, src, srcRect, dstPoint);
202}
203
bsalomonf0674512015-07-28 13:26:15 -0700204bool GrGpu::getReadPixelsInfo(GrSurface* srcSurface, int width, int height, size_t rowBytes,
205 GrPixelConfig readConfig, DrawPreference* drawPreference,
206 ReadPixelTempDrawInfo* tempDrawInfo) {
207 SkASSERT(drawPreference);
208 SkASSERT(tempDrawInfo);
209 SkASSERT(kGpuPrefersDraw_DrawPreference != *drawPreference);
210
egdaniel6d901da2015-07-30 12:02:15 -0700211 // We currently do not support reading into a compressed buffer
212 if (GrPixelConfigIsCompressed(readConfig)) {
213 return false;
214 }
215
bsalomonf0674512015-07-28 13:26:15 -0700216 if (!this->onGetReadPixelsInfo(srcSurface, width, height, rowBytes, readConfig, drawPreference,
217 tempDrawInfo)) {
218 return false;
219 }
220
221 // Check to see if we're going to request that the caller draw when drawing is not possible.
222 if (!srcSurface->asTexture() ||
223 !this->caps()->isConfigRenderable(tempDrawInfo->fTempSurfaceDesc.fConfig, false)) {
224 // If we don't have a fallback to a straight read then fail.
225 if (kRequireDraw_DrawPreference == *drawPreference) {
226 return false;
227 }
228 *drawPreference = kNoDraw_DrawPreference;
229 }
230
231 return true;
232}
233bool GrGpu::getWritePixelsInfo(GrSurface* dstSurface, int width, int height, size_t rowBytes,
234 GrPixelConfig srcConfig, DrawPreference* drawPreference,
235 WritePixelTempDrawInfo* tempDrawInfo) {
236 SkASSERT(drawPreference);
237 SkASSERT(tempDrawInfo);
238 SkASSERT(kGpuPrefersDraw_DrawPreference != *drawPreference);
239
jvanverth2dc29942015-09-01 07:16:46 -0700240 if (GrPixelConfigIsCompressed(dstSurface->desc().fConfig) &&
241 dstSurface->desc().fConfig != srcConfig) {
242 return false;
243 }
244
bsalomonf0674512015-07-28 13:26:15 -0700245 if (this->caps()->useDrawInsteadOfPartialRenderTargetWrite() &&
246 SkToBool(dstSurface->asRenderTarget()) &&
247 (width < dstSurface->width() || height < dstSurface->height())) {
248 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
249 }
250
251 if (!this->onGetWritePixelsInfo(dstSurface, width, height, rowBytes, srcConfig, drawPreference,
252 tempDrawInfo)) {
253 return false;
254 }
255
256 // Check to see if we're going to request that the caller draw when drawing is not possible.
257 if (!dstSurface->asRenderTarget() ||
258 !this->caps()->isConfigTexturable(tempDrawInfo->fTempSurfaceDesc.fConfig)) {
259 // If we don't have a fallback to a straight upload then fail.
260 if (kRequireDraw_DrawPreference == *drawPreference ||
261 !this->caps()->isConfigTexturable(srcConfig)) {
262 return false;
263 }
264 *drawPreference = kNoDraw_DrawPreference;
265 }
266 return true;
267}
268
bsalomon6cb3cbe2015-07-30 07:34:27 -0700269bool GrGpu::readPixels(GrSurface* surface,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000270 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000271 GrPixelConfig config, void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000272 size_t rowBytes) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000273 this->handleDirtyContext();
egdaniel6d901da2015-07-30 12:02:15 -0700274
275 // We cannot read pixels into a compressed buffer
276 if (GrPixelConfigIsCompressed(config)) {
277 return false;
278 }
279
280 size_t bpp = GrBytesPerPixel(config);
281 if (!GrSurfacePriv::AdjustReadPixelParams(surface->width(), surface->height(), bpp,
282 &left, &top, &width, &height,
283 &buffer,
284 &rowBytes)) {
285 return false;
286 }
287
288 return this->onReadPixels(surface,
289 left, top, width, height,
290 config, buffer,
291 rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000292}
293
bsalomon6cb3cbe2015-07-30 07:34:27 -0700294bool GrGpu::writePixels(GrSurface* surface,
295 int left, int top, int width, int height,
296 GrPixelConfig config, const void* buffer,
297 size_t rowBytes) {
jvanverth2dc29942015-09-01 07:16:46 -0700298 if (!buffer) {
299 return false;
300 }
301
bsalomon@google.com6f379512011-11-16 20:36:03 +0000302 this->handleDirtyContext();
bsalomon6cb3cbe2015-07-30 07:34:27 -0700303 if (this->onWritePixels(surface, left, top, width, height, config, buffer, rowBytes)) {
bsalomonb12ea412015-02-02 21:19:50 -0800304 fStats.incTextureUploads();
305 return true;
306 }
307 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000308}
309
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000310void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000311 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000312 this->handleDirtyContext();
313 this->onResolveRenderTarget(target);
314}
315
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000316////////////////////////////////////////////////////////////////////////////////
317
bsalomoncb8979d2015-05-05 09:51:38 -0700318void GrGpu::draw(const DrawArgs& args, const GrVertices& vertices) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000319 this->handleDirtyContext();
bsalomoncb02b382015-08-12 11:14:50 -0700320 if (GrXferBarrierType barrierType = args.fPipeline->xferBarrierType(*this->caps())) {
321 this->xferBarrier(args.fPipeline->getRenderTarget(), barrierType);
322 }
323
bsalomone64eb572015-05-07 11:35:55 -0700324 GrVertices::Iterator iter;
325 const GrNonInstancedVertices* verts = iter.init(vertices);
326 do {
327 this->onDraw(args, *verts);
joshualitt336cda32015-09-09 08:29:47 -0700328 fStats.incNumDraws();
bsalomone64eb572015-05-07 11:35:55 -0700329 } while ((verts = iter.next()));
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000330}