blob: c99733d2796c7c6dd5df78fabf64f5e6ad928e57 [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00006 */
7
reed@google.comac10a2d2010-12-22 21:39:39 +00008#ifndef GrGpu_DEFINED
9#define GrGpu_DEFINED
10
Robert Phillipse42edcc2017-12-13 11:50:22 -050011#include "GrCaps.h"
egdaniel066df7c2016-06-08 14:02:27 -070012#include "GrGpuCommandBuffer.h"
joshualitt79f8fae2014-10-28 17:59:26 -070013#include "GrProgramDesc.h"
bsalomon6c9cd552016-01-22 07:17:34 -080014#include "GrSwizzle.h"
cdalton28f45b92016-03-07 13:58:26 -080015#include "GrAllocator.h"
Brian Osmane8e54582016-11-28 10:06:27 -050016#include "GrTextureProducer.h"
cblume55f2d2d2016-02-26 13:20:48 -080017#include "GrTypes.h"
kkinnunencabe20c2015-06-01 01:37:26 -070018#include "GrXferProcessor.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000019#include "SkPath.h"
cblume55f2d2d2016-02-26 13:20:48 -080020#include "SkTArray.h"
csmartdalton0d28e572016-07-06 09:59:43 -070021#include <map>
sugoi@google.com12b4e272012-12-06 20:13:11 +000022
Greg Danielbcf612b2017-05-01 13:50:58 +000023class GrBackendRenderTarget;
Greg Daniela5cb7812017-06-16 09:45:32 -040024class GrBackendSemaphore;
cdalton397536c2016-03-25 12:15:03 -070025class GrBuffer;
bsalomon@google.com669fdc42011-04-05 17:08:27 +000026class GrContext;
robertphillips28a838e2016-06-23 14:07:00 -070027struct GrContextOptions;
reedf9ad5582015-06-25 21:29:25 -070028class GrGLContext;
Chris Daltonbca46e22017-05-15 11:03:26 -060029class GrMesh;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000030class GrPath;
bsalomon@google.com30085192011-08-19 15:42:31 +000031class GrPathRenderer;
32class GrPathRendererChain;
kkinnunencabe20c2015-06-01 01:37:26 -070033class GrPathRendering;
egdaniel8dd688b2015-01-22 10:16:09 -080034class GrPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -080035class GrPrimitiveProcessor;
kkinnunencabe20c2015-06-01 01:37:26 -070036class GrRenderTarget;
Greg Daniel6be35232017-03-01 17:01:09 -050037class GrSemaphore;
egdaniel8dc7c3a2015-04-16 11:22:42 -070038class GrStencilAttachment;
cdalton93a379b2016-05-11 13:58:08 -070039class GrStencilSettings;
kkinnunencabe20c2015-06-01 01:37:26 -070040class GrSurface;
41class GrTexture;
Brian Osman71a18892017-08-10 10:23:25 -040042class SkJSONWriter;
reed@google.comac10a2d2010-12-22 21:39:39 +000043
joshualitt3322fa42014-11-07 08:48:51 -080044class GrGpu : public SkRefCnt {
reed@google.comac10a2d2010-12-22 21:39:39 +000045public:
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000046 GrGpu(GrContext* context);
mtklein36352bf2015-03-25 18:17:31 -070047 ~GrGpu() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000048
joshualitt3322fa42014-11-07 08:48:51 -080049 GrContext* getContext() { return fContext; }
50 const GrContext* getContext() const { return fContext; }
51
52 /**
53 * Gets the capabilities of the draw target.
54 */
bsalomon4b91f762015-05-19 09:29:46 -070055 const GrCaps* caps() const { return fCaps.get(); }
Robert Phillipse42edcc2017-12-13 11:50:22 -050056 sk_sp<const GrCaps> refCaps() const { return fCaps; }
joshualitt3322fa42014-11-07 08:48:51 -080057
kkinnunencabe20c2015-06-01 01:37:26 -070058 GrPathRendering* pathRendering() { return fPathRendering.get(); }
kkinnunenccdaa042014-08-20 01:36:23 -070059
bsalomon6e2aad42016-04-01 11:54:31 -070060 enum class DisconnectType {
61 // No cleanup should be attempted, immediately cease making backend API calls
62 kAbandon,
63 // Free allocated resources (not known by GrResourceCache) before returning and
64 // ensure no backend backend 3D API calls will be made after disconnect() returns.
65 kCleanup,
66 };
67
68 // Called by GrContext when the underlying backend context is already or will be destroyed
69 // before GrContext.
70 virtual void disconnect(DisconnectType);
bsalomonc8dc1f72014-08-21 13:02:13 -070071
reed@google.comac10a2d2010-12-22 21:39:39 +000072 /**
73 * The GrGpu object normally assumes that no outsider is setting state
74 * within the underlying 3D API's context/device/whatever. This call informs
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000075 * the GrGpu that the state was modified and it shouldn't make assumptions
76 * about the state.
reed@google.comac10a2d2010-12-22 21:39:39 +000077 */
mtkleinb9eb4ac2015-02-02 18:26:03 -080078 void markContextDirty(uint32_t state = kAll_GrBackendState) { fResetBits |= state; }
reed@google.comac10a2d2010-12-22 21:39:39 +000079
80 /**
bsalomon6d467ec2014-11-18 07:36:19 -080081 * Creates a texture object. If kRenderTarget_GrSurfaceFlag the texture can
82 * be used as a render target by calling GrTexture::asRenderTarget(). Not all
83 * pixel configs can be used as render targets. Support for configs as textures
bsalomon4b91f762015-05-19 09:29:46 -070084 * or render targets can be checked using GrCaps.
bsalomon@google.com1da07462011-03-10 14:51:57 +000085 *
Brian Salomon58389b92018-03-07 13:01:25 -050086 * @param desc describes the texture to be created.
87 * @param budgeted does this texture count against the resource cache budget?
88 * @param texels array of mipmap levels containing texel data to load.
89 * Each level begins with full-size palette data for paletted textures.
90 * It contains width*height texels. If there is only one
91 * element and it contains nullptr fPixels, texture data is
92 * uninitialized.
93 * @param mipLevelCount the number of levels in 'texels'
94 * @return The texture object if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +000095 */
Brian Salomon58389b92018-03-07 13:01:25 -050096 sk_sp<GrTexture> createTexture(const GrSurfaceDesc&, SkBudgeted, const GrMipLevel texels[],
97 int mipLevelCount);
cblume55f2d2d2016-02-26 13:20:48 -080098
99 /**
bsalomone699d0c2016-03-09 06:25:15 -0800100 * Simplified createTexture() interface for when there is no initial texel data to upload.
cblume55f2d2d2016-02-26 13:20:48 -0800101 */
Robert Phillips16d8ec62017-07-27 16:16:25 -0400102 sk_sp<GrTexture> createTexture(const GrSurfaceDesc& desc, SkBudgeted);
bsalomone699d0c2016-03-09 06:25:15 -0800103
bsalomon@google.come269f212011-11-07 13:29:52 +0000104 /**
Brian Osman32342f02017-03-04 08:12:46 -0500105 * Implements GrResourceProvider::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +0000106 */
Brian Salomonc67c31c2018-12-06 10:00:03 -0500107 sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture&, GrWrapOwnership, GrIOType,
Greg Daniel2268ad22018-11-15 09:27:38 -0500108 bool purgeImmediately);
Brian Salomond17f6582017-07-19 18:28:58 -0400109
110 /**
111 * Implements GrResourceProvider::wrapRenderableBackendTexture
112 */
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400113 sk_sp<GrTexture> wrapRenderableBackendTexture(const GrBackendTexture&,
Brian Salomond17f6582017-07-19 18:28:58 -0400114 int sampleCnt, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000115
116 /**
Brian Osman32342f02017-03-04 08:12:46 -0500117 * Implements GrResourceProvider::wrapBackendRenderTarget
bsalomon@google.come269f212011-11-07 13:29:52 +0000118 */
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400119 sk_sp<GrRenderTarget> wrapBackendRenderTarget(const GrBackendRenderTarget&);
bsalomon@google.come269f212011-11-07 13:29:52 +0000120
121 /**
Brian Osman32342f02017-03-04 08:12:46 -0500122 * Implements GrResourceProvider::wrapBackendTextureAsRenderTarget
ericrkf7b8b8a2016-02-24 14:49:51 -0800123 */
Greg Daniel7ef28f32017-04-20 16:41:55 +0000124 sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
Greg Daniel7ef28f32017-04-20 16:41:55 +0000125 int sampleCnt);
ericrkf7b8b8a2016-02-24 14:49:51 -0800126
127 /**
Greg Danielb46add82019-01-02 14:51:29 -0500128 * Implements GrResourceProvider::wrapVulkanSecondaryCBAsRenderTarget
129 */
130 sk_sp<GrRenderTarget> wrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&,
131 const GrVkDrawableInfo&);
132
133 /**
csmartdalton485a1202016-07-13 10:16:32 -0700134 * Creates a buffer in GPU memory. For a client-side buffer use GrBuffer::CreateCPUBacked.
reed@google.comac10a2d2010-12-22 21:39:39 +0000135 *
cdaltone2e71c22016-04-07 18:13:29 -0700136 * @param size size of buffer to create.
137 * @param intendedType hint to the graphics subsystem about what the buffer will be used for.
138 * @param accessPattern hint to the graphics subsystem about how the data will be accessed.
cdalton1bf3e712016-04-19 10:00:02 -0700139 * @param data optional data with which to initialize the buffer.
cdaltone2e71c22016-04-07 18:13:29 -0700140 *
cdalton397536c2016-03-25 12:15:03 -0700141 * @return the buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000142 */
cdalton1bf3e712016-04-19 10:00:02 -0700143 GrBuffer* createBuffer(size_t size, GrBufferType intendedType, GrAccessPattern accessPattern,
144 const void* data = nullptr);
halcanary9d524f22016-03-29 09:03:52 -0700145
reed@google.comac10a2d2010-12-22 21:39:39 +0000146 /**
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000147 * Resolves MSAA.
148 */
Brian Salomon1fabd512018-02-09 09:54:25 -0500149 void resolveRenderTarget(GrRenderTarget*);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000150
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000151 /**
Brian Salomon930f9392018-06-20 16:25:26 -0400152 * Uses the base of the texture to recompute the contents of the other levels.
153 */
154 bool regenerateMipMapLevels(GrTexture*);
155
156 /**
Brian Salomon9b009bb2018-02-14 13:53:55 -0500157 * Reads a rectangle of pixels from a render target. No sRGB/linear conversions are performed.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000158 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700159 * @param surface The surface to read from
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000160 * @param left left edge of the rectangle to read (inclusive)
161 * @param top top edge of the rectangle to read (inclusive)
162 * @param width width of rectangle to read in pixels.
163 * @param height height of rectangle to read in pixels.
Brian Salomonc320b152018-02-20 14:05:36 -0500164 * @param dstColorType the color type of the destination buffer.
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000165 * @param buffer memory to read the rectangle into.
bsalomon@google.comc6980972011-11-02 19:57:21 +0000166 * @param rowBytes the number of bytes between consecutive rows. Zero
167 * means rows are tightly packed.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000168 * @param invertY buffer should be populated bottom-to-top as opposed
169 * to top-to-bottom (skia's usual order)
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000170 *
171 * @return true if the read succeeded, false if not. The read can fail
172 * because of a unsupported pixel config or because no render
173 * target is currently set.
174 */
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400175 bool readPixels(GrSurface* surface, int left, int top, int width, int height,
Brian Salomona6948702018-06-01 15:33:20 -0400176 GrColorType dstColorType, void* buffer, size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000177
bsalomon@google.com6f379512011-11-16 20:36:03 +0000178 /**
Brian Salomon9b009bb2018-02-14 13:53:55 -0500179 * Updates the pixels in a rectangle of a surface. No sRGB/linear conversions are performed.
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000180 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700181 * @param surface The surface to write to.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000182 * @param left left edge of the rectangle to write (inclusive)
183 * @param top top edge of the rectangle to write (inclusive)
184 * @param width width of rectangle to write in pixels.
185 * @param height height of rectangle to write in pixels.
Brian Salomonc320b152018-02-20 14:05:36 -0500186 * @param srcColorType the color type of the source buffer.
cblume55f2d2d2016-02-26 13:20:48 -0800187 * @param texels array of mipmap levels containing texture data
Robert Phillips590533f2017-07-11 14:22:35 -0400188 * @param mipLevelCount number of levels in 'texels'
cblume55f2d2d2016-02-26 13:20:48 -0800189 */
Brian Salomona9b04b92018-06-01 15:04:28 -0400190 bool writePixels(GrSurface* surface, int left, int top, int width, int height,
191 GrColorType srcColorType, const GrMipLevel texels[], int mipLevelCount);
cblume55f2d2d2016-02-26 13:20:48 -0800192
193 /**
Brian Salomona9b04b92018-06-01 15:04:28 -0400194 * Helper for the case of a single level.
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500195 */
196 bool writePixels(GrSurface* surface, int left, int top, int width, int height,
197 GrColorType srcColorType, const void* buffer, size_t rowBytes) {
Brian Salomona9b04b92018-06-01 15:04:28 -0400198 GrMipLevel mipLevel = {buffer, rowBytes};
199 return this->writePixels(surface, left, top, width, height, srcColorType, &mipLevel, 1);
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500200 }
201
202 /**
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400203 * Updates the pixels in a rectangle of a texture using a buffer
jvanverth17aa0472016-01-05 10:41:27 -0800204 *
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400205 * There are a couple of assumptions here. First, we only update the top miplevel.
206 * And second, that any y flip needed has already been done in the buffer.
207 *
208 * @param texture The texture to write to.
cdalton397536c2016-03-25 12:15:03 -0700209 * @param left left edge of the rectangle to write (inclusive)
210 * @param top top edge of the rectangle to write (inclusive)
211 * @param width width of rectangle to write in pixels.
212 * @param height height of rectangle to write in pixels.
Brian Salomonc320b152018-02-20 14:05:36 -0500213 * @param bufferColorType the color type of the transfer buffer's pixel data
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400214 * @param transferBuffer GrBuffer to read pixels from (type must be "kXferCpuToGpu")
cdalton397536c2016-03-25 12:15:03 -0700215 * @param offset offset from the start of the buffer
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400216 * @param rowBytes number of bytes between consecutive rows in the buffer. Zero
cdalton397536c2016-03-25 12:15:03 -0700217 * means rows are tightly packed.
jvanverth17aa0472016-01-05 10:41:27 -0800218 */
Brian Salomon9b009bb2018-02-14 13:53:55 -0500219 bool transferPixels(GrTexture* texture, int left, int top, int width, int height,
Brian Salomonc320b152018-02-20 14:05:36 -0500220 GrColorType bufferColorType, GrBuffer* transferBuffer, size_t offset,
Brian Salomon9b009bb2018-02-14 13:53:55 -0500221 size_t rowBytes);
jvanverth17aa0472016-01-05 10:41:27 -0800222
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000223 // After the client interacts directly with the 3D context state the GrGpu
224 // must resync its internal state and assumptions about 3D context state.
225 // Each time this occurs the GrGpu bumps a timestamp.
226 // state of the 3D context
227 // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about
228 // a billion years.
229 typedef uint64_t ResetTimestamp;
230
231 // This timestamp is always older than the current timestamp
232 static const ResetTimestamp kExpiredTimestamp = 0;
233 // Returns a timestamp based on the number of times the context was reset.
234 // This timestamp can be used to lazily detect when cached 3D context state
235 // is dirty.
bsalomon6d467ec2014-11-18 07:36:19 -0800236 ResetTimestamp getResetTimestamp() const { return fResetTimestamp; }
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000237
bsalomonf90a02b2014-11-26 12:28:00 -0800238 // Called to perform a surface to surface copy. Fallbacks to issuing a draw from the src to dst
Robert Phillipsf2361d22016-10-25 14:20:06 -0400239 // take place at the GrOpList level and this function implement faster copy paths. The rect
bsalomonf90a02b2014-11-26 12:28:00 -0800240 // and point are pre-clipped. The src rect and implied dst rect are guaranteed to be within the
Greg Daniel55fa6472018-03-16 16:13:10 -0400241 // src/dst bounds and non-empty. If canDiscardOutsideDstRect is set to true then we don't need
242 // to preserve any data on the dst surface outside of the copy.
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400243 bool copySurface(GrSurface* dst, GrSurfaceOrigin dstOrigin,
244 GrSurface* src, GrSurfaceOrigin srcOrigin,
joshualitt1cbdcde2015-08-21 11:53:29 -0700245 const SkIRect& srcRect,
Greg Daniel55fa6472018-03-16 16:13:10 -0400246 const SkIPoint& dstPoint,
247 bool canDiscardOutsideDstRect = false);
joshualitt3322fa42014-11-07 08:48:51 -0800248
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400249 // Returns a GrGpuRTCommandBuffer which GrOpLists send draw commands to instead of directly
Ethan Nicholas56d19a52018-10-15 11:26:20 -0400250 // to the Gpu object. The 'bounds' rect is the content rect of the destination.
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400251 virtual GrGpuRTCommandBuffer* getCommandBuffer(
Ethan Nicholas56d19a52018-10-15 11:26:20 -0400252 GrRenderTarget*, GrSurfaceOrigin, const SkRect& bounds,
Greg Daniel500d58b2017-08-24 15:59:33 -0400253 const GrGpuRTCommandBuffer::LoadAndStoreInfo&,
254 const GrGpuRTCommandBuffer::StencilLoadAndStoreInfo&) = 0;
255
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400256 // Returns a GrGpuTextureCommandBuffer which GrOpLists send texture commands to instead of
Greg Daniel500d58b2017-08-24 15:59:33 -0400257 // directly to the Gpu object.
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400258 virtual GrGpuTextureCommandBuffer* getCommandBuffer(GrTexture*, GrSurfaceOrigin) = 0;
bsalomon3e791242014-12-17 13:43:13 -0800259
Robert Phillips18e94842017-05-15 13:06:44 -0400260 // Called by GrDrawingManager when flushing.
Greg Daniel51316782017-08-02 15:10:09 +0000261 // Provides a hook for post-flush actions (e.g. Vulkan command buffer submits). This will also
262 // insert any numSemaphore semaphores on the gpu and set the backendSemaphores to match the
263 // inserted semaphores.
264 GrSemaphoresSubmitted finishFlush(int numSemaphores, GrBackendSemaphore backendSemaphores[]);
ethannicholas22793252016-01-30 09:59:10 -0800265
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400266 virtual void submit(GrGpuCommandBuffer*) = 0;
267
Greg Daniel6be35232017-03-01 17:01:09 -0500268 virtual GrFence SK_WARN_UNUSED_RESULT insertFence() = 0;
269 virtual bool waitFence(GrFence, uint64_t timeout = 1000) = 0;
jvanverth84741b32016-09-30 08:39:02 -0700270 virtual void deleteFence(GrFence) const = 0;
271
Greg Daniela5cb7812017-06-16 09:45:32 -0400272 virtual sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true) = 0;
Greg Daniel48661b82018-01-22 16:11:35 -0500273 virtual sk_sp<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore& semaphore,
274 GrResourceProvider::SemaphoreWrapType wrapType,
275 GrWrapOwnership ownership) = 0;
Greg Daniel858e12c2018-12-06 11:11:37 -0500276 virtual void insertSemaphore(sk_sp<GrSemaphore> semaphore) = 0;
Greg Daniel48661b82018-01-22 16:11:35 -0500277 virtual void waitSemaphore(sk_sp<GrSemaphore> semaphore) = 0;
Greg Daniel6be35232017-03-01 17:01:09 -0500278
Brian Osman13dddce2017-05-09 13:19:50 -0400279 /**
280 * Put this texture in a safe and known state for use across multiple GrContexts. Depending on
281 * the backend, this may return a GrSemaphore. If so, other contexts should wait on that
282 * semaphore before using this texture.
283 */
284 virtual sk_sp<GrSemaphore> prepareTextureForCrossContextUsage(GrTexture*) = 0;
285
mtkleinb9eb4ac2015-02-02 18:26:03 -0800286 ///////////////////////////////////////////////////////////////////////////
287 // Debugging and Stats
288
289 class Stats {
290 public:
291#if GR_GPU_STATS
292 Stats() { this->reset(); }
293
bsalomonb12ea412015-02-02 21:19:50 -0800294 void reset() {
295 fRenderTargetBinds = 0;
296 fShaderCompilations = 0;
297 fTextureCreates = 0;
298 fTextureUploads = 0;
jvanverth17aa0472016-01-05 10:41:27 -0800299 fTransfersToTexture = 0;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700300 fStencilAttachmentCreates = 0;
joshualitt87a5c9f2015-09-08 13:42:05 -0700301 fNumDraws = 0;
bsalomon1d417a82016-03-23 11:50:26 -0700302 fNumFailedDraws = 0;
Greg Danield2073452018-12-07 11:20:33 -0500303 fNumFinishFlushes = 0;
bsalomonb12ea412015-02-02 21:19:50 -0800304 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800305
306 int renderTargetBinds() const { return fRenderTargetBinds; }
307 void incRenderTargetBinds() { fRenderTargetBinds++; }
308 int shaderCompilations() const { return fShaderCompilations; }
309 void incShaderCompilations() { fShaderCompilations++; }
bsalomonb12ea412015-02-02 21:19:50 -0800310 int textureCreates() const { return fTextureCreates; }
311 void incTextureCreates() { fTextureCreates++; }
312 int textureUploads() const { return fTextureUploads; }
313 void incTextureUploads() { fTextureUploads++; }
jvanverth17aa0472016-01-05 10:41:27 -0800314 int transfersToTexture() const { return fTransfersToTexture; }
315 void incTransfersToTexture() { fTransfersToTexture++; }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700316 void incStencilAttachmentCreates() { fStencilAttachmentCreates++; }
joshualitt87a5c9f2015-09-08 13:42:05 -0700317 void incNumDraws() { fNumDraws++; }
bsalomon1d417a82016-03-23 11:50:26 -0700318 void incNumFailedDraws() { ++fNumFailedDraws; }
Greg Danield2073452018-12-07 11:20:33 -0500319 void incNumFinishFlushes() { ++fNumFinishFlushes; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800320 void dump(SkString*);
joshualitte45c81c2015-12-02 09:05:37 -0800321 void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values);
bsalomon1d417a82016-03-23 11:50:26 -0700322 int numDraws() const { return fNumDraws; }
323 int numFailedDraws() const { return fNumFailedDraws; }
Greg Danield2073452018-12-07 11:20:33 -0500324 int numFinishFlushes() const { return fNumFinishFlushes; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800325 private:
326 int fRenderTargetBinds;
327 int fShaderCompilations;
bsalomonb12ea412015-02-02 21:19:50 -0800328 int fTextureCreates;
329 int fTextureUploads;
jvanverth17aa0472016-01-05 10:41:27 -0800330 int fTransfersToTexture;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700331 int fStencilAttachmentCreates;
joshualitt87a5c9f2015-09-08 13:42:05 -0700332 int fNumDraws;
bsalomon1d417a82016-03-23 11:50:26 -0700333 int fNumFailedDraws;
Greg Danield2073452018-12-07 11:20:33 -0500334 int fNumFinishFlushes;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800335#else
joshualitte45c81c2015-12-02 09:05:37 -0800336 void dump(SkString*) {}
337 void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800338 void incRenderTargetBinds() {}
339 void incShaderCompilations() {}
bsalomonb12ea412015-02-02 21:19:50 -0800340 void incTextureCreates() {}
341 void incTextureUploads() {}
jvanverth17aa0472016-01-05 10:41:27 -0800342 void incTransfersToTexture() {}
egdaniel8dc7c3a2015-04-16 11:22:42 -0700343 void incStencilAttachmentCreates() {}
joshualitt87a5c9f2015-09-08 13:42:05 -0700344 void incNumDraws() {}
bsalomon1d417a82016-03-23 11:50:26 -0700345 void incNumFailedDraws() {}
Greg Danield2073452018-12-07 11:20:33 -0500346 void incNumFinishFlushes() {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800347#endif
348 };
349
350 Stats* stats() { return &fStats; }
Brian Osman71a18892017-08-10 10:23:25 -0400351 void dumpJSON(SkJSONWriter*) const;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800352
Brian Salomonf865b052018-03-09 09:01:53 -0500353#if GR_TEST_UTILS
Robert Phillips646f6372018-09-25 09:31:10 -0400354 GrBackendTexture createTestingOnlyBackendTexture(const void* pixels, int w, int h,
355 SkColorType, bool isRenderTarget,
356 GrMipMapped, size_t rowBytes = 0);
357
bsalomon67d76202015-11-11 12:40:42 -0800358 /** Creates a texture directly in the backend API without wrapping it in a GrTexture. This is
359 only to be used for testing (particularly for testing the methods that import an externally
360 created texture into Skia. Must be matched with a call to deleteTestingOnlyTexture(). */
Brian Salomon52e943a2018-03-13 09:32:39 -0400361 virtual GrBackendTexture createTestingOnlyBackendTexture(const void* pixels, int w, int h,
Robert Phillips646f6372018-09-25 09:31:10 -0400362 GrColorType, bool isRenderTarget,
363 GrMipMapped, size_t rowBytes = 0) = 0;
364
Robert Phillipsd21b2a52017-12-12 13:01:25 -0500365 /** Check a handle represents an actual texture in the backend API that has not been freed. */
366 virtual bool isTestingOnlyBackendTexture(const GrBackendTexture&) const = 0;
Brian Salomone64b0642018-03-07 11:47:54 -0500367 /**
368 * Frees a texture created by createTestingOnlyBackendTexture(). If ownership of the backend
369 * texture has been transferred to a GrContext using adopt semantics this should not be called.
370 */
Brian Salomon26102cb2018-03-09 09:33:19 -0500371 virtual void deleteTestingOnlyBackendTexture(const GrBackendTexture&) = 0;
jvanverth672bb7f2015-07-13 07:19:57 -0700372
Brian Osman2d010b62018-08-09 10:55:09 -0400373 virtual GrBackendRenderTarget createTestingOnlyBackendRenderTarget(int w, int h,
374 GrColorType) = 0;
Brian Salomonf865b052018-03-09 09:01:53 -0500375
376 virtual void deleteTestingOnlyBackendRenderTarget(const GrBackendRenderTarget&) = 0;
377
378 // This is only to be used in GL-specific tests.
379 virtual const GrGLContext* glContextForTesting() const { return nullptr; }
380
381 // This is only to be used by testing code
382 virtual void resetShaderCacheForTesting() const {}
383
Greg Daniel26b50a42018-03-08 09:49:58 -0500384 /**
385 * Flushes all work to the gpu and forces the GPU to wait until all the gpu work has completed.
386 * This is for testing purposes only.
387 */
388 virtual void testingOnly_flushGpuAndSync() = 0;
Brian Salomonf865b052018-03-09 09:01:53 -0500389#endif
Greg Daniel26b50a42018-03-08 09:49:58 -0500390
egdanielec00d942015-09-14 12:56:10 -0700391 // width and height may be larger than rt (if underlying API allows it).
392 // Returns nullptr if compatible sb could not be created, otherwise the caller owns the ref on
393 // the GrStencilAttachment.
394 virtual GrStencilAttachment* createStencilAttachmentForRenderTarget(const GrRenderTarget*,
395 int width,
396 int height) = 0;
bsalomon6bc1b5f2015-02-23 09:06:38 -0800397
bsalomone179a912016-01-20 06:18:10 -0800398 // Determines whether a texture will need to be rescaled in order to be used with the
Robert Phillipsabf7b762018-03-21 12:13:37 -0400399 // GrSamplerState.
Greg Daniel8f5bbda2018-06-08 17:22:23 -0400400 static bool IsACopyNeededForRepeatWrapMode(const GrCaps*, GrTextureProxy* texProxy,
401 int width, int height,
402 GrSamplerState::Filter,
403 GrTextureProducer::CopyParams*,
404 SkScalar scaleAdjust[2]);
405
406 // Determines whether a texture will need to be copied because the draw requires mips but the
407 // texutre doesn't have any. This call should be only checked if IsACopyNeededForTextureParams
408 // fails. If the previous call succeeds, then a copy should be done using those params and the
409 // mip mapping requirements will be handled there.
410 static bool IsACopyNeededForMips(const GrCaps* caps, const GrTextureProxy* texProxy,
411 GrSamplerState::Filter filter,
412 GrTextureProducer::CopyParams* copyParams);
bsalomone179a912016-01-20 06:18:10 -0800413
egdaniel9cb63402016-06-23 08:37:05 -0700414 void handleDirtyContext() {
415 if (fResetBits) {
416 this->resetContext();
417 }
418 }
419
Greg Daniel7a82edf2018-12-04 10:54:34 -0500420 /**
421 * Returns a key that represents the sampler that will be created for the passed in parameters.
422 * Currently this key is only used when we are building a vulkan pipeline with immutable
423 * samplers. In that case, we need our cache key to also contain this key.
424 *
425 * A return value of 0 indicates that the program/pipeline we are creating is not affected by
426 * the sampler.
427 */
428 virtual uint32_t getExtraSamplerKeyForProgram(const GrSamplerState&, const GrBackendFormat&) {
429 return 0;
430 }
431
Greg Daniela870b462019-01-08 15:49:46 -0500432 virtual void storeVkPipelineCacheData() {}
433
joshualittd53a8272014-11-10 16:03:14 -0800434protected:
Brian Salomon1fabd512018-02-09 09:54:25 -0500435 // Handles cases where a surface will be updated without a call to flushRenderTarget.
436 void didWriteToSurface(GrSurface* surface, GrSurfaceOrigin origin, const SkIRect* bounds,
437 uint32_t mipLevels = 1) const;
jvanverth900bd4a2016-04-29 13:53:12 -0700438
Ben Wagner145dbcd2016-11-03 14:40:50 -0400439 Stats fStats;
440 std::unique_ptr<GrPathRendering> fPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800441 // Subclass must initialize this in its constructor.
Hal Canary144caf52016-11-07 17:57:18 -0500442 sk_sp<const GrCaps> fCaps;
joshualitt3322fa42014-11-07 08:48:51 -0800443
csmartdalton0d28e572016-07-06 09:59:43 -0700444 typedef SkTArray<SkPoint, true> SamplePattern;
445
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000446private:
bsalomon@google.comb635d392011-11-05 12:47:43 +0000447 // called when the 3D context state is unknown. Subclass should emit any
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000448 // assumed 3D context state and dirty any state cache.
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000449 virtual void onResetContext(uint32_t resetBits) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000450
bsalomoncb02b382015-08-12 11:14:50 -0700451 // Called before certain draws in order to guarantee coherent results from dst reads.
452 virtual void xferBarrier(GrRenderTarget*, GrXferBarrierType) = 0;
453
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000454 // overridden by backend-specific derived class to create objects.
egdanielb0e1be22015-04-22 13:27:39 -0700455 // Texture size and sample size will have already been validated in base class before
Robert Phillips92de6312017-05-23 07:43:48 -0400456 // onCreateTexture is called.
Robert Phillips16d8ec62017-07-27 16:16:25 -0400457 virtual sk_sp<GrTexture> onCreateTexture(const GrSurfaceDesc&, SkBudgeted,
Brian Salomon2a4f9832018-03-03 22:43:43 -0500458 const GrMipLevel texels[], int mipLevelCount) = 0;
cblume55f2d2d2016-02-26 13:20:48 -0800459
Greg Daniel2268ad22018-11-15 09:27:38 -0500460 virtual sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, GrWrapOwnership,
Brian Salomonc67c31c2018-12-06 10:00:03 -0500461 GrIOType, bool purgeImmediately) = 0;
Brian Salomond17f6582017-07-19 18:28:58 -0400462 virtual sk_sp<GrTexture> onWrapRenderableBackendTexture(const GrBackendTexture&,
Brian Salomond17f6582017-07-19 18:28:58 -0400463 int sampleCnt,
464 GrWrapOwnership) = 0;
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400465 virtual sk_sp<GrRenderTarget> onWrapBackendRenderTarget(const GrBackendRenderTarget&) = 0;
Greg Daniel7ef28f32017-04-20 16:41:55 +0000466 virtual sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&,
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400467 int sampleCnt) = 0;
Greg Danielb46add82019-01-02 14:51:29 -0500468 virtual sk_sp<GrRenderTarget> onWrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&,
469 const GrVkDrawableInfo&);
470
cdalton1bf3e712016-04-19 10:00:02 -0700471 virtual GrBuffer* onCreateBuffer(size_t size, GrBufferType intendedType, GrAccessPattern,
472 const void* data) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000473
bsalomon6cb3cbe2015-07-30 07:34:27 -0700474 // overridden by backend-specific derived class to perform the surface read
Brian Salomona6948702018-06-01 15:33:20 -0400475 virtual bool onReadPixels(GrSurface*, int left, int top, int width, int height, GrColorType,
476 void* buffer, size_t rowBytes) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000477
bsalomon6cb3cbe2015-07-30 07:34:27 -0700478 // overridden by backend-specific derived class to perform the surface write
Brian Salomona9b04b92018-06-01 15:04:28 -0400479 virtual bool onWritePixels(GrSurface*, int left, int top, int width, int height, GrColorType,
480 const GrMipLevel texels[], int mipLevelCount) = 0;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000481
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400482 // overridden by backend-specific derived class to perform the texture transfer
Brian Salomonc320b152018-02-20 14:05:36 -0500483 virtual bool onTransferPixels(GrTexture*, int left, int top, int width, int height,
484 GrColorType colorType, GrBuffer* transferBuffer, size_t offset,
485 size_t rowBytes) = 0;
jvanverth17aa0472016-01-05 10:41:27 -0800486
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000487 // overridden by backend-specific derived class to perform the resolve
Brian Salomon1fabd512018-02-09 09:54:25 -0500488 virtual void onResolveRenderTarget(GrRenderTarget* target) = 0;
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000489
Brian Salomon930f9392018-06-20 16:25:26 -0400490 // overridden by backend specific derived class to perform mip map level regeneration.
491 virtual bool onRegenerateMipMapLevels(GrTexture*) = 0;
492
joshualitt1cbdcde2015-08-21 11:53:29 -0700493 // overridden by backend specific derived class to perform the copy surface
Robert Phillipsb0e93a22017-08-29 08:26:54 -0400494 virtual bool onCopySurface(GrSurface* dst, GrSurfaceOrigin dstOrigin,
495 GrSurface* src, GrSurfaceOrigin srcOrigin,
Greg Daniel55fa6472018-03-16 16:13:10 -0400496 const SkIRect& srcRect, const SkIPoint& dstPoint,
497 bool canDiscardOutsideDstRect) = 0;
joshualitt1cbdcde2015-08-21 11:53:29 -0700498
Greg Daniel51316782017-08-02 15:10:09 +0000499 virtual void onFinishFlush(bool insertedSemaphores) = 0;
500
Kevin Lubickf4def342018-10-04 12:52:50 -0400501#ifdef SK_ENABLE_DUMP_GPU
Brian Osman71a18892017-08-10 10:23:25 -0400502 virtual void onDumpJSON(SkJSONWriter*) const {}
Kevin Lubickf4def342018-10-04 12:52:50 -0400503#endif
Brian Osman71a18892017-08-10 10:23:25 -0400504
bsalomon@google.comb635d392011-11-05 12:47:43 +0000505 void resetContext() {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000506 this->onResetContext(fResetBits);
507 fResetBits = 0;
bsalomon@google.comb635d392011-11-05 12:47:43 +0000508 ++fResetTimestamp;
509 }
510
Chris Dalton535ba8d2018-02-20 09:51:59 -0700511 ResetTimestamp fResetTimestamp;
512 uint32_t fResetBits;
joshualitt3322fa42014-11-07 08:48:51 -0800513 // The context owns us, not vice-versa, so this ptr is not ref'ed by Gpu.
Chris Dalton535ba8d2018-02-20 09:51:59 -0700514 GrContext* fContext;
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000515
kkinnunencabe20c2015-06-01 01:37:26 -0700516 friend class GrPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800517 typedef SkRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000518};
519
520#endif