blob: 3a4732b2fe1639ba3911a187a3eec358f0784783 [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkPath.h"
12#include "include/core/SkSurface.h"
13#include "include/gpu/GrTypes.h"
14#include "include/private/SkTArray.h"
15#include "src/gpu/GrAllocator.h"
16#include "src/gpu/GrCaps.h"
Greg Daniel2d41d0d2019-08-26 11:08:51 -040017#include "src/gpu/GrOpsRenderPass.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "src/gpu/GrProgramDesc.h"
19#include "src/gpu/GrSamplePatternDictionary.h"
Brian Salomon3ec1f542019-06-17 17:54:57 +000020#include "src/gpu/GrSwizzle.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "src/gpu/GrTextureProducer.h"
22#include "src/gpu/GrXferProcessor.h"
csmartdalton0d28e572016-07-06 09:59:43 -070023#include <map>
sugoi@google.com12b4e272012-12-06 20:13:11 +000024
Greg Danielbcf612b2017-05-01 13:50:58 +000025class GrBackendRenderTarget;
Greg Daniela5cb7812017-06-16 09:45:32 -040026class GrBackendSemaphore;
Brian Salomondbf70722019-02-07 11:31:24 -050027class GrGpuBuffer;
bsalomon@google.com669fdc42011-04-05 17:08:27 +000028class GrContext;
robertphillips28a838e2016-06-23 14:07:00 -070029struct GrContextOptions;
reedf9ad5582015-06-25 21:29:25 -070030class GrGLContext;
Chris Daltonbca46e22017-05-15 11:03:26 -060031class GrMesh;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000032class GrPath;
bsalomon@google.com30085192011-08-19 15:42:31 +000033class GrPathRenderer;
34class GrPathRendererChain;
kkinnunencabe20c2015-06-01 01:37:26 -070035class GrPathRendering;
egdaniel8dd688b2015-01-22 10:16:09 -080036class GrPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -080037class GrPrimitiveProcessor;
kkinnunencabe20c2015-06-01 01:37:26 -070038class GrRenderTarget;
Greg Daniel6be35232017-03-01 17:01:09 -050039class GrSemaphore;
egdaniel8dc7c3a2015-04-16 11:22:42 -070040class GrStencilAttachment;
cdalton93a379b2016-05-11 13:58:08 -070041class GrStencilSettings;
kkinnunencabe20c2015-06-01 01:37:26 -070042class GrSurface;
43class GrTexture;
Brian Osman71a18892017-08-10 10:23:25 -040044class SkJSONWriter;
reed@google.comac10a2d2010-12-22 21:39:39 +000045
joshualitt3322fa42014-11-07 08:48:51 -080046class GrGpu : public SkRefCnt {
reed@google.comac10a2d2010-12-22 21:39:39 +000047public:
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000048 GrGpu(GrContext* context);
mtklein36352bf2015-03-25 18:17:31 -070049 ~GrGpu() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000050
joshualitt3322fa42014-11-07 08:48:51 -080051 GrContext* getContext() { return fContext; }
52 const GrContext* getContext() const { return fContext; }
53
54 /**
55 * Gets the capabilities of the draw target.
56 */
bsalomon4b91f762015-05-19 09:29:46 -070057 const GrCaps* caps() const { return fCaps.get(); }
Robert Phillipse42edcc2017-12-13 11:50:22 -050058 sk_sp<const GrCaps> refCaps() const { return fCaps; }
joshualitt3322fa42014-11-07 08:48:51 -080059
kkinnunencabe20c2015-06-01 01:37:26 -070060 GrPathRendering* pathRendering() { return fPathRendering.get(); }
kkinnunenccdaa042014-08-20 01:36:23 -070061
bsalomon6e2aad42016-04-01 11:54:31 -070062 enum class DisconnectType {
63 // No cleanup should be attempted, immediately cease making backend API calls
64 kAbandon,
65 // Free allocated resources (not known by GrResourceCache) before returning and
66 // ensure no backend backend 3D API calls will be made after disconnect() returns.
67 kCleanup,
68 };
69
70 // Called by GrContext when the underlying backend context is already or will be destroyed
71 // before GrContext.
72 virtual void disconnect(DisconnectType);
bsalomonc8dc1f72014-08-21 13:02:13 -070073
reed@google.comac10a2d2010-12-22 21:39:39 +000074 /**
75 * The GrGpu object normally assumes that no outsider is setting state
76 * within the underlying 3D API's context/device/whatever. This call informs
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000077 * the GrGpu that the state was modified and it shouldn't make assumptions
78 * about the state.
reed@google.comac10a2d2010-12-22 21:39:39 +000079 */
mtkleinb9eb4ac2015-02-02 18:26:03 -080080 void markContextDirty(uint32_t state = kAll_GrBackendState) { fResetBits |= state; }
reed@google.comac10a2d2010-12-22 21:39:39 +000081
82 /**
Brian Salomonf2c2ba92019-07-17 09:59:59 -040083 * Creates a texture object. If renderable is kYes then the returned texture can
bsalomon6d467ec2014-11-18 07:36:19 -080084 * be used as a render target by calling GrTexture::asRenderTarget(). Not all
85 * pixel configs can be used as render targets. Support for configs as textures
bsalomon4b91f762015-05-19 09:29:46 -070086 * or render targets can be checked using GrCaps.
bsalomon@google.com1da07462011-03-10 14:51:57 +000087 *
Brian Salomon58389b92018-03-07 13:01:25 -050088 * @param desc describes the texture to be created.
Brian Salomon4eb38b72019-08-05 12:58:39 -040089 * @param format the format for the texture (not currently used).
Brian Salomonf2c2ba92019-07-17 09:59:59 -040090 * @param renderable should the resulting texture be renderable
Brian Salomon27b4d8d2019-07-22 14:23:45 -040091 * @param renderTargetSampleCnt The number of samples to use for rendering if renderable is
92 * kYes. If renderable is kNo then this must be 1.
Brian Salomon58389b92018-03-07 13:01:25 -050093 * @param budgeted does this texture count against the resource cache budget?
Brian Salomone8a766b2019-07-19 14:24:36 -040094 * @param isProtected should the texture be created as protected.
Brian Salomon58389b92018-03-07 13:01:25 -050095 * @param texels array of mipmap levels containing texel data to load.
Brian Salomonf2c2ba92019-07-17 09:59:59 -040096 * If level i has pixels then it is assumed that its dimensions are
97 * max(1, floor(desc.fWidth / 2)) by max(1, floor(desc.fHeight / 2)).
98 * If texels[i].fPixels == nullptr for all i <= mipLevelCount or
99 * mipLevelCount is 0 then the texture's contents are uninitialized.
100 * If a level has non-null pixels, its row bytes must be a multiple of the
101 * config's bytes-per-pixel. The row bytes must be tight to the
102 * level width if !caps->writePixelsRowBytesSupport().
103 * If mipLevelCount > 1 and texels[i].fPixels != nullptr for any i > 0
104 * then all levels must have non-null pixels. All levels must have
105 * non-null pixels if GrCaps::createTextureMustSpecifyAllLevels() is true.
Brian Salomona90382f2019-09-17 09:01:56 -0400106 * @param textureColorType The color type interpretation of the texture for the purpose of
107 * of uploading texel data.
108 * @param srcColorType The color type of data in texels[].
Brian Salomond2a8ae22019-09-10 16:03:59 -0400109 * @param texelLevelCount the number of levels in 'texels'. May be 0, 1, or
Brian Salomonf2c2ba92019-07-17 09:59:59 -0400110 * floor(max((log2(desc.fWidth), log2(desc.fHeight)))). It must be the
111 * latter if GrCaps::createTextureMustSpecifyAllLevels() is true.
Brian Salomon58389b92018-03-07 13:01:25 -0500112 * @return The texture object if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000113 */
Brian Salomona90382f2019-09-17 09:01:56 -0400114 sk_sp<GrTexture> createTexture(const GrSurfaceDesc& desc,
115 const GrBackendFormat& format,
116 GrRenderable renderable,
117 int renderTargetSampleCnt,
118 SkBudgeted,
119 GrProtected isProtected,
120 GrColorType textureColorType,
121 GrColorType srcColorType,
122 const GrMipLevel texels[],
Brian Salomond2a8ae22019-09-10 16:03:59 -0400123 int texelLevelCount);
cblume55f2d2d2016-02-26 13:20:48 -0800124
Brian Salomonc7dced52019-07-18 15:02:01 +0000125 /**
126 * Simplified createTexture() interface for when there is no initial texel data to upload.
127 */
Brian Salomona90382f2019-09-17 09:01:56 -0400128 sk_sp<GrTexture> createTexture(const GrSurfaceDesc& desc,
129 const GrBackendFormat& format,
130 GrRenderable renderable,
131 int renderTargetSampleCnt,
132 GrMipMapped,
133 SkBudgeted budgeted,
134 GrProtected isProtected);
Brian Salomonc7dced52019-07-18 15:02:01 +0000135
Greg Daniel7bfc9132019-08-14 14:23:53 -0400136 sk_sp<GrTexture> createCompressedTexture(int width, int height, const GrBackendFormat&,
137 SkImage::CompressionType, SkBudgeted, const void* data,
138 size_t dataSize);
Brian Salomonbb8dde82019-06-27 10:52:13 -0400139
bsalomon@google.come269f212011-11-07 13:29:52 +0000140 /**
Brian Osman32342f02017-03-04 08:12:46 -0500141 * Implements GrResourceProvider::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +0000142 */
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400143 sk_sp<GrTexture> wrapBackendTexture(const GrBackendTexture&, GrColorType,
144 GrWrapOwnership, GrWrapCacheable, GrIOType);
Brian Salomond17f6582017-07-19 18:28:58 -0400145
146 /**
147 * Implements GrResourceProvider::wrapRenderableBackendTexture
148 */
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500149 sk_sp<GrTexture> wrapRenderableBackendTexture(const GrBackendTexture&, int sampleCnt,
Robert Phillips0902c982019-07-16 07:47:56 -0400150 GrColorType, GrWrapOwnership, GrWrapCacheable);
bsalomon@google.come269f212011-11-07 13:29:52 +0000151
152 /**
Brian Osman32342f02017-03-04 08:12:46 -0500153 * Implements GrResourceProvider::wrapBackendRenderTarget
bsalomon@google.come269f212011-11-07 13:29:52 +0000154 */
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400155 sk_sp<GrRenderTarget> wrapBackendRenderTarget(const GrBackendRenderTarget&,
156 GrColorType colorType);
bsalomon@google.come269f212011-11-07 13:29:52 +0000157
158 /**
Brian Osman32342f02017-03-04 08:12:46 -0500159 * Implements GrResourceProvider::wrapBackendTextureAsRenderTarget
ericrkf7b8b8a2016-02-24 14:49:51 -0800160 */
Greg Daniel7ef28f32017-04-20 16:41:55 +0000161 sk_sp<GrRenderTarget> wrapBackendTextureAsRenderTarget(const GrBackendTexture&,
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400162 int sampleCnt,
163 GrColorType colorType);
ericrkf7b8b8a2016-02-24 14:49:51 -0800164
165 /**
Greg Danielb46add82019-01-02 14:51:29 -0500166 * Implements GrResourceProvider::wrapVulkanSecondaryCBAsRenderTarget
167 */
168 sk_sp<GrRenderTarget> wrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&,
169 const GrVkDrawableInfo&);
170
171 /**
csmartdalton485a1202016-07-13 10:16:32 -0700172 * Creates a buffer in GPU memory. For a client-side buffer use GrBuffer::CreateCPUBacked.
reed@google.comac10a2d2010-12-22 21:39:39 +0000173 *
cdaltone2e71c22016-04-07 18:13:29 -0700174 * @param size size of buffer to create.
175 * @param intendedType hint to the graphics subsystem about what the buffer will be used for.
176 * @param accessPattern hint to the graphics subsystem about how the data will be accessed.
cdalton1bf3e712016-04-19 10:00:02 -0700177 * @param data optional data with which to initialize the buffer.
cdaltone2e71c22016-04-07 18:13:29 -0700178 *
cdalton397536c2016-03-25 12:15:03 -0700179 * @return the buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000180 */
Brian Salomondbf70722019-02-07 11:31:24 -0500181 sk_sp<GrGpuBuffer> createBuffer(size_t size, GrGpuBufferType intendedType,
182 GrAccessPattern accessPattern, const void* data = nullptr);
halcanary9d524f22016-03-29 09:03:52 -0700183
reed@google.comac10a2d2010-12-22 21:39:39 +0000184 /**
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000185 * Resolves MSAA.
186 */
Brian Salomon1fabd512018-02-09 09:54:25 -0500187 void resolveRenderTarget(GrRenderTarget*);
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000188
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000189 /**
Brian Salomon930f9392018-06-20 16:25:26 -0400190 * Uses the base of the texture to recompute the contents of the other levels.
191 */
192 bool regenerateMipMapLevels(GrTexture*);
193
194 /**
Brian Salomon1f05d452019-02-08 12:33:08 -0500195 * If the backend API has stateful texture bindings, this resets them back to defaults.
196 */
197 void resetTextureBindings();
198
199 /**
Brian Salomon9b009bb2018-02-14 13:53:55 -0500200 * Reads a rectangle of pixels from a render target. No sRGB/linear conversions are performed.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000201 *
Brian Salomonf77c1462019-08-01 15:19:29 -0400202 * @param surface The surface to read from
203 * @param left left edge of the rectangle to read (inclusive)
204 * @param top top edge of the rectangle to read (inclusive)
205 * @param width width of rectangle to read in pixels.
206 * @param height height of rectangle to read in pixels.
207 * @param surfaceColorType the color type for this use of the surface.
208 * @param dstColorType the color type of the destination buffer.
209 * @param buffer memory to read the rectangle into.
210 * @param rowBytes the number of bytes between consecutive rows. Must be a multiple of
211 * dstColorType's bytes-per-pixel. Must be tight to width if
212 * !caps->readPixelsRowBytesSupport().
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000213 *
214 * @return true if the read succeeded, false if not. The read can fail
Brian Salomon1d435302019-07-01 13:05:28 -0400215 * because of the surface doesn't support reading, the color type
216 * is not allowed for the format of the surface or if the rectangle
217 * read is not contained in the surface.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000218 */
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400219 bool readPixels(GrSurface* surface, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400220 GrColorType surfaceColorType, GrColorType dstColorType, void* buffer,
221 size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000222
bsalomon@google.com6f379512011-11-16 20:36:03 +0000223 /**
Brian Salomon9b009bb2018-02-14 13:53:55 -0500224 * Updates the pixels in a rectangle of a surface. No sRGB/linear conversions are performed.
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000225 *
Greg Danielb20d7e52019-09-03 13:54:39 -0400226 * @param surface The surface to write to.
227 * @param left left edge of the rectangle to write (inclusive)
228 * @param top top edge of the rectangle to write (inclusive)
229 * @param width width of rectangle to write in pixels.
230 * @param height height of rectangle to write in pixels.
231 * @param surfaceColorType the color type for this use of the surface.
232 * @param srcColorType the color type of the source buffer.
233 * @param texels array of mipmap levels containing texture data. Row bytes must be a
234 * multiple of srcColorType's bytes-per-pixel. Must be tight to level
235 * width if !caps->writePixelsRowBytesSupport().
236 * @param mipLevelCount number of levels in 'texels'
237 * @param prepForTexSampling After doing write pixels should the surface be prepared for texture
238 * sampling. This is currently only used by Vulkan for inline uploads
239 * to set that layout back to sampled after doing the upload. Inline
240 * uploads currently can happen between draws in a single op so it is
241 * not trivial to break up the GrOpsTask into two tasks when we see
242 * an inline upload. However, once we are able to support doing that
243 * we can remove this parameter.
Brian Salomon1d435302019-07-01 13:05:28 -0400244 *
245 * @return true if the write succeeded, false if not. The read can fail
246 * because of the surface doesn't support writing (e.g. read only),
247 * the color type is not allowed for the format of the surface or
248 * if the rectangle written is not contained in the surface.
cblume55f2d2d2016-02-26 13:20:48 -0800249 */
Brian Salomona9b04b92018-06-01 15:04:28 -0400250 bool writePixels(GrSurface* surface, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400251 GrColorType surfaceColorType, GrColorType srcColorType,
Greg Danielb20d7e52019-09-03 13:54:39 -0400252 const GrMipLevel texels[], int mipLevelCount, bool prepForTexSampling = false);
cblume55f2d2d2016-02-26 13:20:48 -0800253
254 /**
Brian Salomona9b04b92018-06-01 15:04:28 -0400255 * Helper for the case of a single level.
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500256 */
257 bool writePixels(GrSurface* surface, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400258 GrColorType surfaceColorType, GrColorType srcColorType, const void* buffer,
Greg Danielb20d7e52019-09-03 13:54:39 -0400259 size_t rowBytes, bool prepForTexSampling = false) {
Brian Salomona9b04b92018-06-01 15:04:28 -0400260 GrMipLevel mipLevel = {buffer, rowBytes};
Brian Salomonf77c1462019-08-01 15:19:29 -0400261 return this->writePixels(surface, left, top, width, height, surfaceColorType, srcColorType,
Greg Danielb20d7e52019-09-03 13:54:39 -0400262 &mipLevel, 1, prepForTexSampling);
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500263 }
264
265 /**
Brian Salomone05ba5a2019-04-08 11:59:07 -0400266 * Updates the pixels in a rectangle of a texture using a buffer. If the texture is MIP mapped,
267 * the base level is written to.
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400268 *
269 * @param texture The texture to write to.
cdalton397536c2016-03-25 12:15:03 -0700270 * @param left left edge of the rectangle to write (inclusive)
271 * @param top top edge of the rectangle to write (inclusive)
272 * @param width width of rectangle to write in pixels.
273 * @param height height of rectangle to write in pixels.
Brian Salomonf77c1462019-08-01 15:19:29 -0400274 * @param textureColorType the color type for this use of the surface.
Brian Salomonc320b152018-02-20 14:05:36 -0500275 * @param bufferColorType the color type of the transfer buffer's pixel data
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400276 * @param transferBuffer GrBuffer to read pixels from (type must be "kXferCpuToGpu")
cdalton397536c2016-03-25 12:15:03 -0700277 * @param offset offset from the start of the buffer
Brian Salomon1047a492019-07-02 12:25:21 -0400278 * @param rowBytes number of bytes between consecutive rows in the buffer. Must be a
279 * multiple of bufferColorType's bytes-per-pixel. Must be tight to width
280 * if !caps->writePixelsRowBytesSupport().
jvanverth17aa0472016-01-05 10:41:27 -0800281 */
Brian Salomone05ba5a2019-04-08 11:59:07 -0400282 bool transferPixelsTo(GrTexture* texture, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400283 GrColorType textureColorType, GrColorType bufferColorType,
284 GrGpuBuffer* transferBuffer, size_t offset, size_t rowBytes);
Brian Salomone05ba5a2019-04-08 11:59:07 -0400285
286 /**
287 * Reads the pixels from a rectangle of a surface into a buffer. Use
Greg Danielba88ab62019-07-26 09:14:01 -0400288 * GrCaps::SupportedRead::fOffsetAlignmentForTransferBuffer to determine the requirements for
289 * the buffer offset alignment. If the surface is a MIP mapped texture, the base level is read.
Brian Salomone05ba5a2019-04-08 11:59:07 -0400290 *
Brian Salomon26de56e2019-04-10 12:14:26 -0400291 * If successful the row bytes in the buffer is always:
292 * GrColorTypeBytesPerPixel(bufferColorType) * width
293 *
294 * Asserts that the caller has passed a properly aligned offset and that the buffer is
295 * large enough to hold the result
Brian Salomone05ba5a2019-04-08 11:59:07 -0400296 *
297 * @param surface The surface to read from.
298 * @param left left edge of the rectangle to read (inclusive)
299 * @param top top edge of the rectangle to read (inclusive)
300 * @param width width of rectangle to read in pixels.
301 * @param height height of rectangle to read in pixels.
Brian Salomonf77c1462019-08-01 15:19:29 -0400302 * @param surfaceColorType the color type for this use of the surface.
Brian Salomone05ba5a2019-04-08 11:59:07 -0400303 * @param bufferColorType the color type of the transfer buffer's pixel data
304 * @param transferBuffer GrBuffer to write pixels to (type must be "kXferGpuToCpu")
305 * @param offset offset from the start of the buffer
306 */
Brian Salomon26de56e2019-04-10 12:14:26 -0400307 bool transferPixelsFrom(GrSurface* surface, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400308 GrColorType surfaceColorType, GrColorType bufferColorType,
309 GrGpuBuffer* transferBuffer, size_t offset);
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000310
bsalomonf90a02b2014-11-26 12:28:00 -0800311 // Called to perform a surface to surface copy. Fallbacks to issuing a draw from the src to dst
Greg Danielf41b2bd2019-08-22 16:19:24 -0400312 // take place at higher levels and this function implement faster copy paths. The rect
bsalomonf90a02b2014-11-26 12:28:00 -0800313 // and point are pre-clipped. The src rect and implied dst rect are guaranteed to be within the
Greg Daniel46cfbc62019-06-07 11:43:30 -0400314 // src/dst bounds and non-empty. They must also be in their exact device space coords, including
315 // already being transformed for origin if need be. If canDiscardOutsideDstRect is set to true
316 // then we don't need to preserve any data on the dst surface outside of the copy.
317 bool copySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
Greg Daniele227fe42019-08-21 13:52:24 -0400318 const SkIPoint& dstPoint);
joshualitt3322fa42014-11-07 08:48:51 -0800319
Chris Daltond7291ba2019-03-07 14:17:03 -0700320 // Queries the per-pixel HW sample locations for the given render target, and then finds or
321 // assigns a key that uniquely identifies the sample pattern. The actual sample locations can be
322 // retrieved with retrieveSampleLocations().
Chris Dalton8c4cafd2019-04-15 19:14:36 -0600323 int findOrAssignSamplePatternKey(GrRenderTarget*);
Chris Daltond7291ba2019-03-07 14:17:03 -0700324
325 // Retrieves the per-pixel HW sample locations for the given sample pattern key, and, as a
326 // by-product, the actual number of samples in use. (This may differ from the number of samples
327 // requested by the render target.) Sample locations are returned as 0..1 offsets relative to
328 // the top-left corner of the pixel.
329 const SkTArray<SkPoint>& retrieveSampleLocations(int samplePatternKey) const {
330 return fSamplePatternDictionary.retrieveSampleLocations(samplePatternKey);
331 }
332
Greg Daniel2d41d0d2019-08-26 11:08:51 -0400333 // Returns a GrOpsRenderPass which GrOpsTasks send draw commands to instead of directly
334 // to the Gpu object. The 'bounds' rect is the content rect of the renderTarget.
335 virtual GrOpsRenderPass* getOpsRenderPass(
336 GrRenderTarget* renderTarget, GrSurfaceOrigin, const SkRect& bounds,
337 const GrOpsRenderPass::LoadAndStoreInfo&,
Greg Danielb20d7e52019-09-03 13:54:39 -0400338 const GrOpsRenderPass::StencilLoadAndStoreInfo&,
339 const SkTArray<GrTextureProxy*, true>& sampledProxies) = 0;
bsalomon3e791242014-12-17 13:43:13 -0800340
Robert Phillips18e94842017-05-15 13:06:44 -0400341 // Called by GrDrawingManager when flushing.
Greg Daniel51316782017-08-02 15:10:09 +0000342 // Provides a hook for post-flush actions (e.g. Vulkan command buffer submits). This will also
343 // insert any numSemaphore semaphores on the gpu and set the backendSemaphores to match the
344 // inserted semaphores.
Brian Salomonf9a1fdf2019-05-09 10:30:12 -0400345 GrSemaphoresSubmitted finishFlush(GrSurfaceProxy*[], int n,
Greg Daniel797efca2019-05-09 14:04:20 -0400346 SkSurface::BackendSurfaceAccess access, const GrFlushInfo&,
347 const GrPrepareForExternalIORequests&);
ethannicholas22793252016-01-30 09:59:10 -0800348
Greg Daniel2d41d0d2019-08-26 11:08:51 -0400349 virtual void submit(GrOpsRenderPass*) = 0;
Robert Phillips5b5d84c2018-08-09 15:12:18 -0400350
Greg Daniel6be35232017-03-01 17:01:09 -0500351 virtual GrFence SK_WARN_UNUSED_RESULT insertFence() = 0;
352 virtual bool waitFence(GrFence, uint64_t timeout = 1000) = 0;
jvanverth84741b32016-09-30 08:39:02 -0700353 virtual void deleteFence(GrFence) const = 0;
354
Greg Daniela5cb7812017-06-16 09:45:32 -0400355 virtual sk_sp<GrSemaphore> SK_WARN_UNUSED_RESULT makeSemaphore(bool isOwned = true) = 0;
Greg Daniel48661b82018-01-22 16:11:35 -0500356 virtual sk_sp<GrSemaphore> wrapBackendSemaphore(const GrBackendSemaphore& semaphore,
357 GrResourceProvider::SemaphoreWrapType wrapType,
358 GrWrapOwnership ownership) = 0;
Greg Daniel858e12c2018-12-06 11:11:37 -0500359 virtual void insertSemaphore(sk_sp<GrSemaphore> semaphore) = 0;
Greg Daniel48661b82018-01-22 16:11:35 -0500360 virtual void waitSemaphore(sk_sp<GrSemaphore> semaphore) = 0;
Greg Daniel6be35232017-03-01 17:01:09 -0500361
Brian Salomonb0d8b762019-05-06 16:58:22 -0400362 virtual void checkFinishProcs() = 0;
363
Brian Osman13dddce2017-05-09 13:19:50 -0400364 /**
365 * Put this texture in a safe and known state for use across multiple GrContexts. Depending on
366 * the backend, this may return a GrSemaphore. If so, other contexts should wait on that
367 * semaphore before using this texture.
368 */
369 virtual sk_sp<GrSemaphore> prepareTextureForCrossContextUsage(GrTexture*) = 0;
370
mtkleinb9eb4ac2015-02-02 18:26:03 -0800371 ///////////////////////////////////////////////////////////////////////////
372 // Debugging and Stats
373
374 class Stats {
375 public:
376#if GR_GPU_STATS
Brian Salomone05ba5a2019-04-08 11:59:07 -0400377 Stats() = default;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800378
Brian Salomone05ba5a2019-04-08 11:59:07 -0400379 void reset() { *this = {}; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800380
381 int renderTargetBinds() const { return fRenderTargetBinds; }
382 void incRenderTargetBinds() { fRenderTargetBinds++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400383
mtkleinb9eb4ac2015-02-02 18:26:03 -0800384 int shaderCompilations() const { return fShaderCompilations; }
385 void incShaderCompilations() { fShaderCompilations++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400386
bsalomonb12ea412015-02-02 21:19:50 -0800387 int textureCreates() const { return fTextureCreates; }
388 void incTextureCreates() { fTextureCreates++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400389
bsalomonb12ea412015-02-02 21:19:50 -0800390 int textureUploads() const { return fTextureUploads; }
391 void incTextureUploads() { fTextureUploads++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400392
jvanverth17aa0472016-01-05 10:41:27 -0800393 int transfersToTexture() const { return fTransfersToTexture; }
394 void incTransfersToTexture() { fTransfersToTexture++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400395
396 int transfersFromSurface() const { return fTransfersFromSurface; }
Brian Salomone05ba5a2019-04-08 11:59:07 -0400397 void incTransfersFromSurface() { fTransfersFromSurface++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400398
399 int stencilAttachmentCreates() const { return fStencilAttachmentCreates; }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700400 void incStencilAttachmentCreates() { fStencilAttachmentCreates++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400401
402 int numDraws() const { return fNumDraws; }
joshualitt87a5c9f2015-09-08 13:42:05 -0700403 void incNumDraws() { fNumDraws++; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400404
405 int numFailedDraws() const { return fNumFailedDraws; }
bsalomon1d417a82016-03-23 11:50:26 -0700406 void incNumFailedDraws() { ++fNumFailedDraws; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400407
408 int numFinishFlushes() const { return fNumFinishFlushes; }
Greg Danield2073452018-12-07 11:20:33 -0500409 void incNumFinishFlushes() { ++fNumFinishFlushes; }
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400410
411 int numScratchTexturesReused() const { return fNumScratchTexturesReused; }
412 void incNumScratchTexturesReused() { ++fNumScratchTexturesReused; }
413
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500414#if GR_TEST_UTILS
mtkleinb9eb4ac2015-02-02 18:26:03 -0800415 void dump(SkString*);
joshualitte45c81c2015-12-02 09:05:37 -0800416 void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values);
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500417#endif
mtkleinb9eb4ac2015-02-02 18:26:03 -0800418 private:
Brian Salomone05ba5a2019-04-08 11:59:07 -0400419 int fRenderTargetBinds = 0;
420 int fShaderCompilations = 0;
421 int fTextureCreates = 0;
422 int fTextureUploads = 0;
423 int fTransfersToTexture = 0;
424 int fTransfersFromSurface = 0;
425 int fStencilAttachmentCreates = 0;
426 int fNumDraws = 0;
427 int fNumFailedDraws = 0;
428 int fNumFinishFlushes = 0;
Robert Phillipsf9fcf7f2019-07-11 09:03:27 -0400429 int fNumScratchTexturesReused = 0;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800430#else
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500431
432#if GR_TEST_UTILS
joshualitte45c81c2015-12-02 09:05:37 -0800433 void dump(SkString*) {}
434 void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {}
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500435#endif
mtkleinb9eb4ac2015-02-02 18:26:03 -0800436 void incRenderTargetBinds() {}
437 void incShaderCompilations() {}
bsalomonb12ea412015-02-02 21:19:50 -0800438 void incTextureCreates() {}
439 void incTextureUploads() {}
jvanverth17aa0472016-01-05 10:41:27 -0800440 void incTransfersToTexture() {}
egdaniel8dc7c3a2015-04-16 11:22:42 -0700441 void incStencilAttachmentCreates() {}
joshualitt87a5c9f2015-09-08 13:42:05 -0700442 void incNumDraws() {}
bsalomon1d417a82016-03-23 11:50:26 -0700443 void incNumFailedDraws() {}
Greg Danield2073452018-12-07 11:20:33 -0500444 void incNumFinishFlushes() {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800445#endif
446 };
447
448 Stats* stats() { return &fStats; }
Brian Osman71a18892017-08-10 10:23:25 -0400449 void dumpJSON(SkJSONWriter*) const;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800450
Robert Phillipsf0313ee2019-05-21 13:51:11 -0400451 /**
452 * Creates a texture directly in the backend API without wrapping it in a GrTexture.
453 * Must be matched with a call to deleteBackendTexture().
Robert Phillips57ef6802019-09-23 10:12:47 -0400454 *
455 * If srcData is provided it will be used to initialize the texture. If srcData is
456 * not provided but a color is then it is used to initialize the texture. If neither
457 * srcData nor a color is provided then the texture is left uninitialized.
458 *
459 * If srcData is provided and mipMapped is kYes then data for all the miplevels must be
460 * provided (or the method will fail). If only a color is provided and mipMapped is kYes
461 * then all the mip levels will be allocated and initialized to the color. If neither
462 * srcData nor a color is provided but mipMapped is kYes then the mip levels will be allocated
463 * but left uninitialized.
464 *
465 * Note: if more than one pixmap is provided (i.e., for mipmap levels) they must all share
466 * the same SkColorType.
Robert Phillipsf0313ee2019-05-21 13:51:11 -0400467 */
Robert Phillips57ef6802019-09-23 10:12:47 -0400468 GrBackendTexture createBackendTexture(int w, int h, const GrBackendFormat&,
469 GrMipMapped, GrRenderable,
470 const SkPixmap srcData[], int numMipLevels,
471 const SkColor4f* color, GrProtected isProtected);
Robert Phillips646f6372018-09-25 09:31:10 -0400472
Brian Salomone64b0642018-03-07 11:47:54 -0500473 /**
Robert Phillipsf0313ee2019-05-21 13:51:11 -0400474 * Frees a texture created by createBackendTexture(). If ownership of the backend
Brian Salomone64b0642018-03-07 11:47:54 -0500475 * texture has been transferred to a GrContext using adopt semantics this should not be called.
476 */
Robert Phillipsf0313ee2019-05-21 13:51:11 -0400477 virtual void deleteBackendTexture(const GrBackendTexture&) = 0;
jvanverth672bb7f2015-07-13 07:19:57 -0700478
Brian Osmaned58e002019-09-06 14:42:43 -0400479 virtual bool precompileShader(const SkData& key, const SkData& data) { return false; }
480
Robert Phillipsf0ced622019-05-16 09:06:25 -0400481#if GR_TEST_UTILS
482 /** Check a handle represents an actual texture in the backend API that has not been freed. */
483 virtual bool isTestingOnlyBackendTexture(const GrBackendTexture&) const = 0;
484
Brian Osman2d010b62018-08-09 10:55:09 -0400485 virtual GrBackendRenderTarget createTestingOnlyBackendRenderTarget(int w, int h,
486 GrColorType) = 0;
Brian Salomonf865b052018-03-09 09:01:53 -0500487
488 virtual void deleteTestingOnlyBackendRenderTarget(const GrBackendRenderTarget&) = 0;
489
490 // This is only to be used in GL-specific tests.
491 virtual const GrGLContext* glContextForTesting() const { return nullptr; }
492
493 // This is only to be used by testing code
494 virtual void resetShaderCacheForTesting() const {}
495
Greg Daniel26b50a42018-03-08 09:49:58 -0500496 /**
497 * Flushes all work to the gpu and forces the GPU to wait until all the gpu work has completed.
498 * This is for testing purposes only.
499 */
500 virtual void testingOnly_flushGpuAndSync() = 0;
Brian Salomonf865b052018-03-09 09:01:53 -0500501#endif
Greg Daniel26b50a42018-03-08 09:49:58 -0500502
egdanielec00d942015-09-14 12:56:10 -0700503 // width and height may be larger than rt (if underlying API allows it).
504 // Returns nullptr if compatible sb could not be created, otherwise the caller owns the ref on
505 // the GrStencilAttachment.
Chris Daltoneffee202019-07-01 22:28:03 -0600506 virtual GrStencilAttachment* createStencilAttachmentForRenderTarget(
507 const GrRenderTarget*, int width, int height, int numStencilSamples) = 0;
bsalomon6bc1b5f2015-02-23 09:06:38 -0800508
bsalomone179a912016-01-20 06:18:10 -0800509 // Determines whether a texture will need to be rescaled in order to be used with the
Robert Phillipsabf7b762018-03-21 12:13:37 -0400510 // GrSamplerState.
Greg Daniel8f5bbda2018-06-08 17:22:23 -0400511 static bool IsACopyNeededForRepeatWrapMode(const GrCaps*, GrTextureProxy* texProxy,
512 int width, int height,
513 GrSamplerState::Filter,
514 GrTextureProducer::CopyParams*,
515 SkScalar scaleAdjust[2]);
516
517 // Determines whether a texture will need to be copied because the draw requires mips but the
518 // texutre doesn't have any. This call should be only checked if IsACopyNeededForTextureParams
519 // fails. If the previous call succeeds, then a copy should be done using those params and the
520 // mip mapping requirements will be handled there.
521 static bool IsACopyNeededForMips(const GrCaps* caps, const GrTextureProxy* texProxy,
522 GrSamplerState::Filter filter,
523 GrTextureProducer::CopyParams* copyParams);
bsalomone179a912016-01-20 06:18:10 -0800524
egdaniel9cb63402016-06-23 08:37:05 -0700525 void handleDirtyContext() {
526 if (fResetBits) {
527 this->resetContext();
528 }
529 }
530
Greg Daniel7a82edf2018-12-04 10:54:34 -0500531 /**
532 * Returns a key that represents the sampler that will be created for the passed in parameters.
533 * Currently this key is only used when we are building a vulkan pipeline with immutable
534 * samplers. In that case, we need our cache key to also contain this key.
535 *
536 * A return value of 0 indicates that the program/pipeline we are creating is not affected by
537 * the sampler.
538 */
539 virtual uint32_t getExtraSamplerKeyForProgram(const GrSamplerState&, const GrBackendFormat&) {
540 return 0;
541 }
542
Greg Daniela870b462019-01-08 15:49:46 -0500543 virtual void storeVkPipelineCacheData() {}
544
joshualittd53a8272014-11-10 16:03:14 -0800545protected:
Robert Phillips57ef6802019-09-23 10:12:47 -0400546 static bool MipMapsAreCorrect(int baseWidth, int baseHeight, GrMipMapped,
547 const SkPixmap srcData[], int numMipLevels);
548
Brian Salomon1fabd512018-02-09 09:54:25 -0500549 // Handles cases where a surface will be updated without a call to flushRenderTarget.
550 void didWriteToSurface(GrSurface* surface, GrSurfaceOrigin origin, const SkIRect* bounds,
551 uint32_t mipLevels = 1) const;
jvanverth900bd4a2016-04-29 13:53:12 -0700552
Ben Wagner145dbcd2016-11-03 14:40:50 -0400553 Stats fStats;
554 std::unique_ptr<GrPathRendering> fPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800555 // Subclass must initialize this in its constructor.
Hal Canary144caf52016-11-07 17:57:18 -0500556 sk_sp<const GrCaps> fCaps;
joshualitt3322fa42014-11-07 08:48:51 -0800557
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000558private:
Robert Phillips57ef6802019-09-23 10:12:47 -0400559 virtual GrBackendTexture onCreateBackendTexture(int w, int h, const GrBackendFormat&,
560 GrMipMapped, GrRenderable,
561 const SkPixmap srcData[], int numMipLevels,
562 const SkColor4f* color, GrProtected) = 0;
563
bsalomon@google.comb635d392011-11-05 12:47:43 +0000564 // called when the 3D context state is unknown. Subclass should emit any
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000565 // assumed 3D context state and dirty any state cache.
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000566 virtual void onResetContext(uint32_t resetBits) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000567
Brian Salomon1f05d452019-02-08 12:33:08 -0500568 // Implementation of resetTextureBindings.
569 virtual void onResetTextureBindings() {}
570
Chris Daltond7291ba2019-03-07 14:17:03 -0700571 // Queries the effective number of samples in use by the hardware for the given render target,
572 // and queries the individual sample locations.
Chris Dalton8c4cafd2019-04-15 19:14:36 -0600573 virtual void querySampleLocations(GrRenderTarget*, SkTArray<SkPoint>*) = 0;
Chris Daltond7291ba2019-03-07 14:17:03 -0700574
bsalomoncb02b382015-08-12 11:14:50 -0700575 // Called before certain draws in order to guarantee coherent results from dst reads.
576 virtual void xferBarrier(GrRenderTarget*, GrXferBarrierType) = 0;
577
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000578 // overridden by backend-specific derived class to create objects.
Brian Salomond2a8ae22019-09-10 16:03:59 -0400579 // Texture size, renderablility, format support, sample count will have already been validated
580 // in base class before onCreateTexture is called.
581 // If the ith bit is set in levelClearMask then the ith MIP level should be cleared.
Brian Salomon81536f22019-08-08 16:30:49 -0400582 virtual sk_sp<GrTexture> onCreateTexture(const GrSurfaceDesc&,
583 const GrBackendFormat&,
584 GrRenderable,
585 int renderTargetSampleCnt,
Brian Salomond2a8ae22019-09-10 16:03:59 -0400586 SkBudgeted,
587 GrProtected,
588 int mipLevelCoont,
589 uint32_t levelClearMask) = 0;
Brian Salomonbb8dde82019-06-27 10:52:13 -0400590 virtual sk_sp<GrTexture> onCreateCompressedTexture(int width, int height,
Greg Daniel7bfc9132019-08-14 14:23:53 -0400591 const GrBackendFormat&,
Brian Salomonbb8dde82019-06-27 10:52:13 -0400592 SkImage::CompressionType, SkBudgeted,
593 const void* data) = 0;
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400594 virtual sk_sp<GrTexture> onWrapBackendTexture(const GrBackendTexture&, GrColorType,
595 GrWrapOwnership, GrWrapCacheable, GrIOType) = 0;
Brian Salomonaa6ca0a2019-01-24 16:03:07 -0500596 virtual sk_sp<GrTexture> onWrapRenderableBackendTexture(const GrBackendTexture&, int sampleCnt,
Robert Phillips0902c982019-07-16 07:47:56 -0400597 GrColorType, GrWrapOwnership,
598 GrWrapCacheable) = 0;
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400599 virtual sk_sp<GrRenderTarget> onWrapBackendRenderTarget(const GrBackendRenderTarget&,
600 GrColorType) = 0;
Greg Daniel7ef28f32017-04-20 16:41:55 +0000601 virtual sk_sp<GrRenderTarget> onWrapBackendTextureAsRenderTarget(const GrBackendTexture&,
Robert Phillipsc80b0e92019-07-23 10:27:09 -0400602 int sampleCnt,
603 GrColorType) = 0;
Greg Danielb46add82019-01-02 14:51:29 -0500604 virtual sk_sp<GrRenderTarget> onWrapVulkanSecondaryCBAsRenderTarget(const SkImageInfo&,
605 const GrVkDrawableInfo&);
606
Brian Salomondbf70722019-02-07 11:31:24 -0500607 virtual sk_sp<GrGpuBuffer> onCreateBuffer(size_t size, GrGpuBufferType intendedType,
608 GrAccessPattern, const void* data) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000609
bsalomon6cb3cbe2015-07-30 07:34:27 -0700610 // overridden by backend-specific derived class to perform the surface read
Brian Salomonf77c1462019-08-01 15:19:29 -0400611 virtual bool onReadPixels(GrSurface*, int left, int top, int width, int height,
612 GrColorType surfaceColorType, GrColorType dstColorType, void* buffer,
613 size_t rowBytes) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000614
bsalomon6cb3cbe2015-07-30 07:34:27 -0700615 // overridden by backend-specific derived class to perform the surface write
Brian Salomonf77c1462019-08-01 15:19:29 -0400616 virtual bool onWritePixels(GrSurface*, int left, int top, int width, int height,
617 GrColorType surfaceColorType, GrColorType srcColorType,
Greg Danielb20d7e52019-09-03 13:54:39 -0400618 const GrMipLevel texels[], int mipLevelCount,
619 bool prepForTexSampling) = 0;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000620
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400621 // overridden by backend-specific derived class to perform the texture transfer
Brian Salomone05ba5a2019-04-08 11:59:07 -0400622 virtual bool onTransferPixelsTo(GrTexture*, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400623 GrColorType textiueColorType, GrColorType bufferColorType,
624 GrGpuBuffer* transferBuffer, size_t offset,
625 size_t rowBytes) = 0;
Brian Salomone05ba5a2019-04-08 11:59:07 -0400626 // overridden by backend-specific derived class to perform the surface transfer
Brian Salomon26de56e2019-04-10 12:14:26 -0400627 virtual bool onTransferPixelsFrom(GrSurface*, int left, int top, int width, int height,
Brian Salomonf77c1462019-08-01 15:19:29 -0400628 GrColorType surfaceColorType, GrColorType bufferColorType,
629 GrGpuBuffer* transferBuffer, size_t offset) = 0;
jvanverth17aa0472016-01-05 10:41:27 -0800630
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000631 // overridden by backend-specific derived class to perform the resolve
Brian Salomon1fabd512018-02-09 09:54:25 -0500632 virtual void onResolveRenderTarget(GrRenderTarget* target) = 0;
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000633
Brian Salomon930f9392018-06-20 16:25:26 -0400634 // overridden by backend specific derived class to perform mip map level regeneration.
635 virtual bool onRegenerateMipMapLevels(GrTexture*) = 0;
636
joshualitt1cbdcde2015-08-21 11:53:29 -0700637 // overridden by backend specific derived class to perform the copy surface
Greg Daniel46cfbc62019-06-07 11:43:30 -0400638 virtual bool onCopySurface(GrSurface* dst, GrSurface* src, const SkIRect& srcRect,
Greg Daniele227fe42019-08-21 13:52:24 -0400639 const SkIPoint& dstPoint) = 0;
joshualitt1cbdcde2015-08-21 11:53:29 -0700640
Brian Salomonf9a1fdf2019-05-09 10:30:12 -0400641 virtual void onFinishFlush(GrSurfaceProxy*[], int n, SkSurface::BackendSurfaceAccess access,
Greg Daniel797efca2019-05-09 14:04:20 -0400642 const GrFlushInfo&, const GrPrepareForExternalIORequests&) = 0;
Greg Daniel51316782017-08-02 15:10:09 +0000643
Kevin Lubickf4def342018-10-04 12:52:50 -0400644#ifdef SK_ENABLE_DUMP_GPU
Brian Osman71a18892017-08-10 10:23:25 -0400645 virtual void onDumpJSON(SkJSONWriter*) const {}
Kevin Lubickf4def342018-10-04 12:52:50 -0400646#endif
Brian Osman71a18892017-08-10 10:23:25 -0400647
Brian Salomona90382f2019-09-17 09:01:56 -0400648 sk_sp<GrTexture> createTextureCommon(const GrSurfaceDesc& desc,
649 const GrBackendFormat& format,
650 GrRenderable renderable,
651 int renderTargetSampleCnt,
652 SkBudgeted budgeted,
653 GrProtected isProtected,
654 int mipLevelCnt,
655 uint32_t levelClearMask);
656
bsalomon@google.comb635d392011-11-05 12:47:43 +0000657 void resetContext() {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000658 this->onResetContext(fResetBits);
659 fResetBits = 0;
bsalomon@google.comb635d392011-11-05 12:47:43 +0000660 }
661
Chris Dalton535ba8d2018-02-20 09:51:59 -0700662 uint32_t fResetBits;
joshualitt3322fa42014-11-07 08:48:51 -0800663 // The context owns us, not vice-versa, so this ptr is not ref'ed by Gpu.
Chris Dalton535ba8d2018-02-20 09:51:59 -0700664 GrContext* fContext;
Chris Daltond7291ba2019-03-07 14:17:03 -0700665 GrSamplePatternDictionary fSamplePatternDictionary;
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000666
kkinnunencabe20c2015-06-01 01:37:26 -0700667 friend class GrPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800668 typedef SkRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000669};
670
671#endif