blob: 2815f612d602707c2186d1348d8deca5ba45c426 [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"
jvanverth73063dc2015-12-03 09:15:47 -080023#include "GrTransferBuffer.h"
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +000024#include "GrVertexBuffer.h"
bsalomoncb8979d2015-05-05 09:51:38 -070025#include "GrVertices.h"
26
27GrVertices& GrVertices::operator =(const GrVertices& di) {
28 fPrimitiveType = di.fPrimitiveType;
29 fStartVertex = di.fStartVertex;
30 fStartIndex = di.fStartIndex;
31 fVertexCount = di.fVertexCount;
32 fIndexCount = di.fIndexCount;
33
34 fInstanceCount = di.fInstanceCount;
35 fVerticesPerInstance = di.fVerticesPerInstance;
36 fIndicesPerInstance = di.fIndicesPerInstance;
bsalomone64eb572015-05-07 11:35:55 -070037 fMaxInstancesPerDraw = di.fMaxInstancesPerDraw;
bsalomoncb8979d2015-05-05 09:51:38 -070038
39 fVertexBuffer.reset(di.vertexBuffer());
40 fIndexBuffer.reset(di.indexBuffer());
41
42 return *this;
43}
bsalomon@google.com1c13c962011-02-14 16:51:21 +000044
bsalomon@google.comd302f142011-03-03 13:54:13 +000045////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000046
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000047GrGpu::GrGpu(GrContext* context)
joshualitt3322fa42014-11-07 08:48:51 -080048 : fResetTimestamp(kExpiredTimestamp+1)
bsalomon@google.com0a208a12013-06-28 18:57:35 +000049 , fResetBits(kAll_GrBackendState)
joshualitt3322fa42014-11-07 08:48:51 -080050 , fContext(context) {
reed@google.comac10a2d2010-12-22 21:39:39 +000051}
52
bsalomoned0bcad2015-05-04 10:36:42 -070053GrGpu::~GrGpu() {}
bsalomon1d89ddc2014-08-19 14:20:58 -070054
robertphillipse3371302014-09-17 06:01:06 -070055void GrGpu::contextAbandoned() {}
reed@google.comac10a2d2010-12-22 21:39:39 +000056
bsalomon@google.comd302f142011-03-03 13:54:13 +000057////////////////////////////////////////////////////////////////////////////////
reed@google.comac10a2d2010-12-22 21:39:39 +000058
bsalomon045802d2015-10-20 07:58:01 -070059bool GrGpu::makeCopyForTextureParams(int width, int height, const GrTextureParams& textureParams,
bsalomon89fe56b2015-10-29 10:49:28 -070060 GrTextureProducer::CopyParams* copyParams) const {
bsalomon045802d2015-10-20 07:58:01 -070061 const GrCaps& caps = *this->caps();
62 if (textureParams.isTiled() && !caps.npotTextureTileSupport() &&
63 (!SkIsPow2(width) || !SkIsPow2(height))) {
bsalomon100b8f82015-10-28 08:37:44 -070064 copyParams->fWidth = GrNextPow2(width);
65 copyParams->fHeight = GrNextPow2(height);
bsalomon045802d2015-10-20 07:58:01 -070066 switch (textureParams.filterMode()) {
67 case GrTextureParams::kNone_FilterMode:
68 copyParams->fFilter = GrTextureParams::kNone_FilterMode;
69 break;
70 case GrTextureParams::kBilerp_FilterMode:
71 case GrTextureParams::kMipMap_FilterMode:
72 // We are only ever scaling up so no reason to ever indicate kMipMap.
73 copyParams->fFilter = GrTextureParams::kBilerp_FilterMode;
74 break;
75 }
bsalomon100b8f82015-10-28 08:37:44 -070076 return true;
bsalomon045802d2015-10-20 07:58:01 -070077 }
bsalomon100b8f82015-10-28 08:37:44 -070078 return false;
bsalomon045802d2015-10-20 07:58:01 -070079}
80
egdanielcf614fd2015-04-22 13:58:58 -070081static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
egdanielb0e1be22015-04-22 13:27:39 -070082 // By default, GrRenderTargets are GL's normal orientation so that they
83 // can be drawn to by the outside world without the client having
84 // to render upside down.
85 if (kDefault_GrSurfaceOrigin == origin) {
86 return renderTarget ? kBottomLeft_GrSurfaceOrigin : kTopLeft_GrSurfaceOrigin;
87 } else {
88 return origin;
89 }
90}
91
egdanielb0e1be22015-04-22 13:27:39 -070092GrTexture* GrGpu::createTexture(const GrSurfaceDesc& origDesc, bool budgeted,
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000093 const void* srcData, size_t rowBytes) {
egdanielb0e1be22015-04-22 13:27:39 -070094 GrSurfaceDesc desc = origDesc;
95
krajcevski9c0e6292014-06-02 07:38:14 -070096 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
halcanary96fcdcc2015-08-27 07:41:13 -070097 return nullptr;
robertphillips@google.comd3eb3362012-10-31 13:56:35 +000098 }
krajcevski9c0e6292014-06-02 07:38:14 -070099
bsalomondb558dd2015-01-23 13:19:00 -0800100 bool isRT = SkToBool(desc.fFlags & kRenderTarget_GrSurfaceFlag);
101 if (isRT && !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
halcanary96fcdcc2015-08-27 07:41:13 -0700102 return nullptr;
commit-bot@chromium.org6b7938f2013-10-15 14:18:16 +0000103 }
robertphillips@google.comd3eb3362012-10-31 13:56:35 +0000104
robertphillips6e83ac72015-08-13 05:19:14 -0700105 // We currently do not support multisampled textures
egdaniel8c9b6f12015-05-12 13:36:30 -0700106 if (!isRT && desc.fSampleCnt > 0) {
halcanary96fcdcc2015-08-27 07:41:13 -0700107 return nullptr;
egdaniel8c9b6f12015-05-12 13:36:30 -0700108 }
109
halcanary96fcdcc2015-08-27 07:41:13 -0700110 GrTexture *tex = nullptr;
egdanielb0e1be22015-04-22 13:27:39 -0700111
112 if (isRT) {
113 int maxRTSize = this->caps()->maxRenderTargetSize();
114 if (desc.fWidth > maxRTSize || desc.fHeight > maxRTSize) {
halcanary96fcdcc2015-08-27 07:41:13 -0700115 return nullptr;
egdanielb0e1be22015-04-22 13:27:39 -0700116 }
117 } else {
118 int maxSize = this->caps()->maxTextureSize();
119 if (desc.fWidth > maxSize || desc.fHeight > maxSize) {
halcanary96fcdcc2015-08-27 07:41:13 -0700120 return nullptr;
egdanielb0e1be22015-04-22 13:27:39 -0700121 }
122 }
123
124 GrGpuResource::LifeCycle lifeCycle = budgeted ? GrGpuResource::kCached_LifeCycle :
125 GrGpuResource::kUncached_LifeCycle;
126
127 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
128 // Attempt to catch un- or wrongly initialized sample counts;
129 SkASSERT(desc.fSampleCnt >= 0 && desc.fSampleCnt <= 64);
130
131 desc.fOrigin = resolve_origin(desc.fOrigin, isRT);
132
krajcevski9c0e6292014-06-02 07:38:14 -0700133 if (GrPixelConfigIsCompressed(desc.fConfig)) {
134 // We shouldn't be rendering into this
egdanielb0e1be22015-04-22 13:27:39 -0700135 SkASSERT(!isRT);
136 SkASSERT(0 == desc.fSampleCnt);
krajcevski9c0e6292014-06-02 07:38:14 -0700137
138 if (!this->caps()->npotTextureTileSupport() &&
tfarinaf9dae782014-06-06 06:35:28 -0700139 (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight))) {
halcanary96fcdcc2015-08-27 07:41:13 -0700140 return nullptr;
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000141 }
tfarinaf9dae782014-06-06 06:35:28 -0700142
krajcevski9c0e6292014-06-02 07:38:14 -0700143 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700144 tex = this->onCreateCompressedTexture(desc, lifeCycle, srcData);
krajcevski9c0e6292014-06-02 07:38:14 -0700145 } else {
146 this->handleDirtyContext();
egdanielb0e1be22015-04-22 13:27:39 -0700147 tex = this->onCreateTexture(desc, lifeCycle, srcData, rowBytes);
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000148 }
bsalomondb558dd2015-01-23 13:19:00 -0800149 if (!this->caps()->reuseScratchTextures() && !isRT) {
bsalomon3582d3e2015-02-13 14:20:05 -0800150 tex->resourcePriv().removeScratchKey();
bsalomondb558dd2015-01-23 13:19:00 -0800151 }
bsalomonb12ea412015-02-02 21:19:50 -0800152 if (tex) {
153 fStats.incTextureCreates();
154 if (srcData) {
155 fStats.incTextureUploads();
156 }
157 }
bsalomon@google.com81c3f8d2011-08-03 15:18:33 +0000158 return tex;
159}
160
bsalomon6dc6f5f2015-06-18 09:12:16 -0700161GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc, GrWrapOwnership ownership) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000162 this->handleDirtyContext();
bsalomon5b30c6f2015-12-17 14:17:34 -0800163 if (!this->caps()->isConfigTexturable(desc.fConfig)) {
164 return nullptr;
165 }
166 if ((desc.fFlags & kRenderTarget_GrBackendTextureFlag) &&
167 !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
168 return nullptr;
169 }
bsalomon6dc6f5f2015-06-18 09:12:16 -0700170 GrTexture* tex = this->onWrapBackendTexture(desc, ownership);
halcanary96fcdcc2015-08-27 07:41:13 -0700171 if (nullptr == tex) {
172 return nullptr;
bsalomon@google.coma14dd6d2012-01-03 21:08:12 +0000173 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000174 // TODO: defer this and attach dynamically
175 GrRenderTarget* tgt = tex->asRenderTarget();
egdanielec00d942015-09-14 12:56:10 -0700176 if (tgt && !fContext->resourceProvider()->attachStencilAttachment(tgt)) {
bsalomon@google.come269f212011-11-07 13:29:52 +0000177 tex->unref();
halcanary96fcdcc2015-08-27 07:41:13 -0700178 return nullptr;
bsalomon@google.come269f212011-11-07 13:29:52 +0000179 } else {
180 return tex;
181 }
182}
183
bsalomon6dc6f5f2015-06-18 09:12:16 -0700184GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc,
185 GrWrapOwnership ownership) {
bsalomon5b30c6f2015-12-17 14:17:34 -0800186 if (!this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
187 return nullptr;
188 }
bsalomon@google.come269f212011-11-07 13:29:52 +0000189 this->handleDirtyContext();
bsalomon6dc6f5f2015-06-18 09:12:16 -0700190 return this->onWrapBackendRenderTarget(desc, ownership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000191}
192
robertphillips@google.comadacc702013-10-14 21:53:24 +0000193GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000194 this->handleDirtyContext();
robertphillips1b8e1b52015-06-24 06:54:10 -0700195 GrVertexBuffer* vb = this->onCreateVertexBuffer(size, dynamic);
196 if (!this->caps()->reuseScratchBuffers()) {
197 vb->resourcePriv().removeScratchKey();
198 }
199 return vb;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000200}
201
robertphillips@google.comadacc702013-10-14 21:53:24 +0000202GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000203 this->handleDirtyContext();
robertphillips1b8e1b52015-06-24 06:54:10 -0700204 GrIndexBuffer* ib = this->onCreateIndexBuffer(size, dynamic);
205 if (!this->caps()->reuseScratchBuffers()) {
206 ib->resourcePriv().removeScratchKey();
207 }
208 return ib;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000209}
210
jvanverth73063dc2015-12-03 09:15:47 -0800211GrTransferBuffer* GrGpu::createTransferBuffer(size_t size, TransferType type) {
212 this->handleDirtyContext();
213 GrTransferBuffer* tb = this->onCreateTransferBuffer(size, type);
214 return tb;
215}
216
egdaniel51c8d402015-08-06 10:54:13 -0700217void GrGpu::clear(const SkIRect& rect,
joshualitt3322fa42014-11-07 08:48:51 -0800218 GrColor color,
joshualitt3322fa42014-11-07 08:48:51 -0800219 GrRenderTarget* renderTarget) {
bsalomon89c62982014-11-03 12:08:42 -0800220 SkASSERT(renderTarget);
egdaniel51c8d402015-08-06 10:54:13 -0700221 SkASSERT(SkIRect::MakeWH(renderTarget->width(), renderTarget->height()).contains(rect));
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000222 this->handleDirtyContext();
egdaniel51c8d402015-08-06 10:54:13 -0700223 this->onClear(renderTarget, rect, color);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000224}
225
joshualitt6db519c2014-10-29 08:48:18 -0700226void GrGpu::clearStencilClip(const SkIRect& rect,
227 bool insideClip,
228 GrRenderTarget* renderTarget) {
joshualittd53a8272014-11-10 16:03:14 -0800229 SkASSERT(renderTarget);
joshualitt6db519c2014-10-29 08:48:18 -0700230 this->handleDirtyContext();
231 this->onClearStencilClip(renderTarget, rect, insideClip);
232}
233
joshualitt1cbdcde2015-08-21 11:53:29 -0700234bool GrGpu::copySurface(GrSurface* dst,
235 GrSurface* src,
236 const SkIRect& srcRect,
237 const SkIPoint& dstPoint) {
238 SkASSERT(dst && src);
239 this->handleDirtyContext();
240 return this->onCopySurface(dst, src, srcRect, dstPoint);
241}
242
bsalomonf0674512015-07-28 13:26:15 -0700243bool GrGpu::getReadPixelsInfo(GrSurface* srcSurface, int width, int height, size_t rowBytes,
244 GrPixelConfig readConfig, DrawPreference* drawPreference,
245 ReadPixelTempDrawInfo* tempDrawInfo) {
246 SkASSERT(drawPreference);
247 SkASSERT(tempDrawInfo);
248 SkASSERT(kGpuPrefersDraw_DrawPreference != *drawPreference);
249
egdaniel6d901da2015-07-30 12:02:15 -0700250 // We currently do not support reading into a compressed buffer
251 if (GrPixelConfigIsCompressed(readConfig)) {
252 return false;
253 }
254
bsalomonf0674512015-07-28 13:26:15 -0700255 if (!this->onGetReadPixelsInfo(srcSurface, width, height, rowBytes, readConfig, drawPreference,
256 tempDrawInfo)) {
257 return false;
258 }
259
260 // Check to see if we're going to request that the caller draw when drawing is not possible.
261 if (!srcSurface->asTexture() ||
262 !this->caps()->isConfigRenderable(tempDrawInfo->fTempSurfaceDesc.fConfig, false)) {
263 // If we don't have a fallback to a straight read then fail.
264 if (kRequireDraw_DrawPreference == *drawPreference) {
265 return false;
266 }
267 *drawPreference = kNoDraw_DrawPreference;
268 }
269
270 return true;
271}
272bool GrGpu::getWritePixelsInfo(GrSurface* dstSurface, int width, int height, size_t rowBytes,
273 GrPixelConfig srcConfig, DrawPreference* drawPreference,
274 WritePixelTempDrawInfo* tempDrawInfo) {
275 SkASSERT(drawPreference);
276 SkASSERT(tempDrawInfo);
277 SkASSERT(kGpuPrefersDraw_DrawPreference != *drawPreference);
278
jvanverth2dc29942015-09-01 07:16:46 -0700279 if (GrPixelConfigIsCompressed(dstSurface->desc().fConfig) &&
280 dstSurface->desc().fConfig != srcConfig) {
281 return false;
282 }
283
bsalomonf0674512015-07-28 13:26:15 -0700284 if (this->caps()->useDrawInsteadOfPartialRenderTargetWrite() &&
285 SkToBool(dstSurface->asRenderTarget()) &&
286 (width < dstSurface->width() || height < dstSurface->height())) {
287 ElevateDrawPreference(drawPreference, kRequireDraw_DrawPreference);
288 }
289
290 if (!this->onGetWritePixelsInfo(dstSurface, width, height, rowBytes, srcConfig, drawPreference,
291 tempDrawInfo)) {
292 return false;
293 }
294
295 // Check to see if we're going to request that the caller draw when drawing is not possible.
296 if (!dstSurface->asRenderTarget() ||
297 !this->caps()->isConfigTexturable(tempDrawInfo->fTempSurfaceDesc.fConfig)) {
298 // If we don't have a fallback to a straight upload then fail.
299 if (kRequireDraw_DrawPreference == *drawPreference ||
300 !this->caps()->isConfigTexturable(srcConfig)) {
301 return false;
302 }
303 *drawPreference = kNoDraw_DrawPreference;
304 }
305 return true;
306}
307
bsalomon6cb3cbe2015-07-30 07:34:27 -0700308bool GrGpu::readPixels(GrSurface* surface,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000309 int left, int top, int width, int height,
bsalomon@google.comc6980972011-11-02 19:57:21 +0000310 GrPixelConfig config, void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000311 size_t rowBytes) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000312 this->handleDirtyContext();
egdaniel6d901da2015-07-30 12:02:15 -0700313
314 // We cannot read pixels into a compressed buffer
315 if (GrPixelConfigIsCompressed(config)) {
316 return false;
317 }
318
319 size_t bpp = GrBytesPerPixel(config);
320 if (!GrSurfacePriv::AdjustReadPixelParams(surface->width(), surface->height(), bpp,
321 &left, &top, &width, &height,
322 &buffer,
323 &rowBytes)) {
324 return false;
325 }
326
327 return this->onReadPixels(surface,
328 left, top, width, height,
329 config, buffer,
330 rowBytes);
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000331}
332
bsalomon6cb3cbe2015-07-30 07:34:27 -0700333bool GrGpu::writePixels(GrSurface* surface,
334 int left, int top, int width, int height,
335 GrPixelConfig config, const void* buffer,
336 size_t rowBytes) {
jvanverth17aa0472016-01-05 10:41:27 -0800337 if (!buffer || !surface) {
jvanverth2dc29942015-09-01 07:16:46 -0700338 return false;
339 }
340
bsalomon@google.com6f379512011-11-16 20:36:03 +0000341 this->handleDirtyContext();
bsalomon6cb3cbe2015-07-30 07:34:27 -0700342 if (this->onWritePixels(surface, left, top, width, height, config, buffer, rowBytes)) {
bsalomonb12ea412015-02-02 21:19:50 -0800343 fStats.incTextureUploads();
344 return true;
345 }
346 return false;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000347}
348
jvanverth17aa0472016-01-05 10:41:27 -0800349bool GrGpu::transferPixels(GrSurface* surface,
350 int left, int top, int width, int height,
351 GrPixelConfig config, GrTransferBuffer* buffer,
352 size_t offset, size_t rowBytes) {
353 SkASSERT(buffer);
354
355 this->handleDirtyContext();
356 if (this->onTransferPixels(surface, left, top, width, height, config,
357 buffer, offset, rowBytes)) {
358 fStats.incTransfersToTexture();
359 return true;
360 }
361 return false;
362}
363
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000364void GrGpu::resolveRenderTarget(GrRenderTarget* target) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000365 SkASSERT(target);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000366 this->handleDirtyContext();
367 this->onResolveRenderTarget(target);
368}
369
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000370////////////////////////////////////////////////////////////////////////////////
371
bsalomoncb8979d2015-05-05 09:51:38 -0700372void GrGpu::draw(const DrawArgs& args, const GrVertices& vertices) {
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000373 this->handleDirtyContext();
bsalomoncb02b382015-08-12 11:14:50 -0700374 if (GrXferBarrierType barrierType = args.fPipeline->xferBarrierType(*this->caps())) {
375 this->xferBarrier(args.fPipeline->getRenderTarget(), barrierType);
376 }
377
bsalomone64eb572015-05-07 11:35:55 -0700378 GrVertices::Iterator iter;
379 const GrNonInstancedVertices* verts = iter.init(vertices);
380 do {
381 this->onDraw(args, *verts);
joshualitt336cda32015-09-09 08:29:47 -0700382 fStats.incNumDraws();
bsalomone64eb572015-05-07 11:35:55 -0700383 } while ((verts = iter.next()));
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000384}