blob: d0a290fd229f4d085bc3f754247be0965417e253 [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
kkinnunencabe20c2015-06-01 01:37:26 -070011#include "GrPipelineBuilder.h"
joshualitt79f8fae2014-10-28 17:59:26 -070012#include "GrProgramDesc.h"
kkinnunencabe20c2015-06-01 01:37:26 -070013#include "GrStencil.h"
bsalomon6c9cd552016-01-22 07:17:34 -080014#include "GrSwizzle.h"
cdalton28f45b92016-03-07 13:58:26 -080015#include "GrAllocator.h"
bsalomon045802d2015-10-20 07:58:01 -070016#include "GrTextureParamsAdjuster.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"
sugoi@google.com12b4e272012-12-06 20:13:11 +000021
kkinnunencabe20c2015-06-01 01:37:26 -070022class GrBatchTracker;
cdalton397536c2016-03-25 12:15:03 -070023class GrBuffer;
bsalomon@google.com669fdc42011-04-05 17:08:27 +000024class GrContext;
reedf9ad5582015-06-25 21:29:25 -070025class GrGLContext;
egdaniel0e1853c2016-03-17 11:35:45 -070026class GrMesh;
bsalomone64eb572015-05-07 11:35:55 -070027class GrNonInstancedVertices;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000028class GrPath;
cdaltonb85a0aa2014-07-21 15:32:44 -070029class GrPathRange;
bsalomon@google.com30085192011-08-19 15:42:31 +000030class GrPathRenderer;
31class GrPathRendererChain;
kkinnunencabe20c2015-06-01 01:37:26 -070032class GrPathRendering;
egdaniel8dd688b2015-01-22 10:16:09 -080033class GrPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -080034class GrPrimitiveProcessor;
kkinnunencabe20c2015-06-01 01:37:26 -070035class GrRenderTarget;
egdaniel8dc7c3a2015-04-16 11:22:42 -070036class GrStencilAttachment;
kkinnunencabe20c2015-06-01 01:37:26 -070037class GrSurface;
38class GrTexture;
reed@google.comac10a2d2010-12-22 21:39:39 +000039
joshualitt3322fa42014-11-07 08:48:51 -080040class GrGpu : public SkRefCnt {
reed@google.comac10a2d2010-12-22 21:39:39 +000041public:
42 /**
bsalomon@google.com16e3dde2012-10-25 18:43:28 +000043 * Create an instance of GrGpu that matches the specified backend. If the requested backend is
halcanary96fcdcc2015-08-27 07:41:13 -070044 * not supported (at compile-time or run-time) this returns nullptr. The context will not be
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000045 * fully constructed and should not be used by GrGpu until after this function returns.
reed@google.comac10a2d2010-12-22 21:39:39 +000046 */
bsalomon682c2692015-05-22 14:01:46 -070047 static GrGpu* Create(GrBackend, GrBackendContext, const GrContextOptions&, GrContext* context);
reed@google.comac10a2d2010-12-22 21:39:39 +000048
49 ////////////////////////////////////////////////////////////////////////////
50
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000051 GrGpu(GrContext* context);
mtklein36352bf2015-03-25 18:17:31 -070052 ~GrGpu() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000053
joshualitt3322fa42014-11-07 08:48:51 -080054 GrContext* getContext() { return fContext; }
55 const GrContext* getContext() const { return fContext; }
56
57 /**
58 * Gets the capabilities of the draw target.
59 */
bsalomon4b91f762015-05-19 09:29:46 -070060 const GrCaps* caps() const { return fCaps.get(); }
joshualitt3322fa42014-11-07 08:48:51 -080061
kkinnunencabe20c2015-06-01 01:37:26 -070062 GrPathRendering* pathRendering() { return fPathRendering.get(); }
kkinnunenccdaa042014-08-20 01:36:23 -070063
bsalomon6e2aad42016-04-01 11:54:31 -070064 enum class DisconnectType {
65 // No cleanup should be attempted, immediately cease making backend API calls
66 kAbandon,
67 // Free allocated resources (not known by GrResourceCache) before returning and
68 // ensure no backend backend 3D API calls will be made after disconnect() returns.
69 kCleanup,
70 };
71
72 // Called by GrContext when the underlying backend context is already or will be destroyed
73 // before GrContext.
74 virtual void disconnect(DisconnectType);
bsalomonc8dc1f72014-08-21 13:02:13 -070075
reed@google.comac10a2d2010-12-22 21:39:39 +000076 /**
77 * The GrGpu object normally assumes that no outsider is setting state
78 * within the underlying 3D API's context/device/whatever. This call informs
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000079 * the GrGpu that the state was modified and it shouldn't make assumptions
80 * about the state.
reed@google.comac10a2d2010-12-22 21:39:39 +000081 */
mtkleinb9eb4ac2015-02-02 18:26:03 -080082 void markContextDirty(uint32_t state = kAll_GrBackendState) { fResetBits |= state; }
reed@google.comac10a2d2010-12-22 21:39:39 +000083
84 /**
bsalomon6d467ec2014-11-18 07:36:19 -080085 * Creates a texture object. If kRenderTarget_GrSurfaceFlag the texture can
86 * be used as a render target by calling GrTexture::asRenderTarget(). Not all
87 * pixel configs can be used as render targets. Support for configs as textures
bsalomon4b91f762015-05-19 09:29:46 -070088 * or render targets can be checked using GrCaps.
bsalomon@google.com1da07462011-03-10 14:51:57 +000089 *
reed@google.comac10a2d2010-12-22 21:39:39 +000090 * @param desc describes the texture to be created.
bsalomon5236cf42015-01-14 10:42:08 -080091 * @param budgeted does this texture count against the resource cache budget?
cblume55f2d2d2016-02-26 13:20:48 -080092 * @param texels array of mipmap levels containing texel data to load.
93 * Each level begins with full-size palette data for paletted textures.
94 * For compressed formats the level contains the compressed pixel data.
95 * Otherwise, it contains width*height texels. If there is only one
96 * element and it contains nullptr fPixels, texture data is
97 * uninitialized.
halcanary96fcdcc2015-08-27 07:41:13 -070098 * @return The texture object if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +000099 */
bsalomon5ec26ae2016-02-25 08:33:02 -0800100 GrTexture* createTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted,
cblume55f2d2d2016-02-26 13:20:48 -0800101 const SkTArray<GrMipLevel>& texels);
102
103 /**
bsalomone699d0c2016-03-09 06:25:15 -0800104 * Simplified createTexture() interface for when there is no initial texel data to upload.
cblume55f2d2d2016-02-26 13:20:48 -0800105 */
bsalomone699d0c2016-03-09 06:25:15 -0800106 GrTexture* createTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted) {
107 return this->createTexture(desc, budgeted, SkTArray<GrMipLevel>());
108 }
109
110 /** Simplified createTexture() interface for when there is only a base level */
111 GrTexture* createTexture(const GrSurfaceDesc& desc, SkBudgeted budgeted, const void* level0Data,
112 size_t rowBytes) {
113 SkASSERT(level0Data);
114 GrMipLevel level = { level0Data, rowBytes };
115 SkSTArray<1, GrMipLevel> array;
116 array.push_back() = level;
117 return this->createTexture(desc, budgeted, array);
118 }
bsalomond3312592016-03-04 07:06:43 -0800119
bsalomon@google.come269f212011-11-07 13:29:52 +0000120 /**
ericrkf7b8b8a2016-02-24 14:49:51 -0800121 * Implements GrTextureProvider::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +0000122 */
bsalomon6dc6f5f2015-06-18 09:12:16 -0700123 GrTexture* wrapBackendTexture(const GrBackendTextureDesc&, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000124
125 /**
brianosman436d9852016-02-25 13:40:42 -0800126 * Implements GrTextureProvider::wrapBackendRenderTarget
bsalomon@google.come269f212011-11-07 13:29:52 +0000127 */
bsalomon6dc6f5f2015-06-18 09:12:16 -0700128 GrRenderTarget* wrapBackendRenderTarget(const GrBackendRenderTargetDesc&, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000129
130 /**
ericrkf7b8b8a2016-02-24 14:49:51 -0800131 * Implements GrTextureProvider::wrapBackendTextureAsRenderTarget
132 */
kkinnunen49c4c222016-04-01 04:50:37 -0700133 GrRenderTarget* wrapBackendTextureAsRenderTarget(const GrBackendTextureDesc&);
ericrkf7b8b8a2016-02-24 14:49:51 -0800134
135 /**
cdalton397536c2016-03-25 12:15:03 -0700136 * Creates a buffer.
reed@google.comac10a2d2010-12-22 21:39:39 +0000137 *
cdaltone2e71c22016-04-07 18:13:29 -0700138 * @param size size of buffer to create.
139 * @param intendedType hint to the graphics subsystem about what the buffer will be used for.
140 * @param accessPattern hint to the graphics subsystem about how the data will be accessed.
141 *
cdalton397536c2016-03-25 12:15:03 -0700142 * @return the buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000143 */
cdaltone2e71c22016-04-07 18:13:29 -0700144 GrBuffer* createBuffer(size_t size, GrBufferType intendedType, GrAccessPattern accessPattern);
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 */
149 void resolveRenderTarget(GrRenderTarget* target);
150
bsalomonf0674512015-07-28 13:26:15 -0700151 /** Info struct returned by getReadPixelsInfo about performing intermediate draws before
bsalomon39826022015-07-23 08:07:21 -0700152 reading pixels for performance or correctness. */
153 struct ReadPixelTempDrawInfo {
154 /** If the GrGpu is requesting that the caller do a draw to an intermediate surface then
155 this is descriptor for the temp surface. The draw should always be a rect with
156 dst 0,0,w,h. */
157 GrSurfaceDesc fTempSurfaceDesc;
158 /** Indicates whether there is a performance advantage to using an exact match texture
159 (in terms of width and height) for the intermediate texture instead of approximate. */
160 bool fUseExactScratch;
bsalomon6c9cd552016-01-22 07:17:34 -0800161 /** Swizzle to apply during the draw. This is used to compensate for either feature or
162 performance limitations in the underlying 3D API. */
163 GrSwizzle fSwizzle;
164 /** The config that should be used to read from the temp surface after the draw. This may be
165 different than the original read config in order to compensate for swizzling. The
166 read data will effectively be in the original read config. */
167 GrPixelConfig fReadConfig;
bsalomon39826022015-07-23 08:07:21 -0700168 };
bsalomon6c9cd552016-01-22 07:17:34 -0800169
bsalomon39826022015-07-23 08:07:21 -0700170 /** Describes why an intermediate draw must/should be performed before readPixels. */
171 enum DrawPreference {
172 /** On input means that the caller would proceed without draw if the GrGpu doesn't request
173 one.
174 On output means that the GrGpu is not requesting a draw. */
175 kNoDraw_DrawPreference,
176 /** Means that the client would prefer a draw for performance of the readback but
177 can satisfy a straight readPixels call on the inputs without an intermediate draw.
178 getReadPixelsInfo will never set the draw preference to this value but may leave
179 it set. */
180 kCallerPrefersDraw_DrawPreference,
181 /** On output means that GrGpu would prefer a draw for performance of the readback but
182 can satisfy a straight readPixels call on the inputs without an intermediate draw. The
183 caller of getReadPixelsInfo should never specify this on intput. */
184 kGpuPrefersDraw_DrawPreference,
185 /** On input means that the caller requires a draw to do a transformation and there is no
186 CPU fallback.
187 On output means that GrGpu can only satisfy the readPixels request if the intermediate
188 draw is performed.
189 */
190 kRequireDraw_DrawPreference
191 };
192
bsalomonf0674512015-07-28 13:26:15 -0700193 /**
194 * Used to negotiate whether and how an intermediate draw should or must be performed before
195 * a readPixels call. If this returns false then GrGpu could not deduce an intermediate draw
196 * that would allow a successful readPixels call. The passed width, height, and rowBytes,
197 * must be non-zero and already reflect clipping to the src bounds.
198 */
199 bool getReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeight, size_t rowBytes,
200 GrPixelConfig readConfig, DrawPreference*, ReadPixelTempDrawInfo*);
201
cblume61214052016-01-26 09:10:48 -0800202 /** Info struct returned by getWritePixelsInfo about performing an intermediate draw in order
bsalomonf0674512015-07-28 13:26:15 -0700203 to write pixels to a GrSurface for either performance or correctness reasons. */
204 struct WritePixelTempDrawInfo {
205 /** If the GrGpu is requesting that the caller upload to an intermediate surface and draw
206 that to the dst then this is the descriptor for the intermediate surface. The caller
207 should upload the pixels such that the upper left pixel of the upload rect is at 0,0 in
208 the intermediate surface.*/
209 GrSurfaceDesc fTempSurfaceDesc;
bsalomon6c9cd552016-01-22 07:17:34 -0800210 /** Swizzle to apply during the draw. This is used to compensate for either feature or
211 performance limitations in the underlying 3D API. */
212 GrSwizzle fSwizzle;
213 /** The config that should be specified when uploading the *original* data to the temp
214 surface before the draw. This may be different than the original src data config in
215 order to compensate for swizzling that will occur when drawing. */
216 GrPixelConfig fWriteConfig;
bsalomonf0674512015-07-28 13:26:15 -0700217 };
bsalomon39826022015-07-23 08:07:21 -0700218
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000219 /**
bsalomonf0674512015-07-28 13:26:15 -0700220 * Used to negotiate whether and how an intermediate surface should be used to write pixels to
221 * a GrSurface. If this returns false then GrGpu could not deduce an intermediate draw
222 * that would allow a successful transfer of the src pixels to the dst. The passed width,
223 * height, and rowBytes, must be non-zero and already reflect clipping to the dst bounds.
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000224 */
cblumeed828002016-02-16 13:00:01 -0800225 bool getWritePixelsInfo(GrSurface* dstSurface, int width, int height,
bsalomonf0674512015-07-28 13:26:15 -0700226 GrPixelConfig srcConfig, DrawPreference*, WritePixelTempDrawInfo*);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000227
228 /**
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000229 * Reads a rectangle of pixels from a render target.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000230 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700231 * @param surface The surface to read from
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000232 * @param left left edge of the rectangle to read (inclusive)
233 * @param top top edge of the rectangle to read (inclusive)
234 * @param width width of rectangle to read in pixels.
235 * @param height height of rectangle to read in pixels.
236 * @param config the pixel config of the destination buffer
237 * @param buffer memory to read the rectangle into.
bsalomon@google.comc6980972011-11-02 19:57:21 +0000238 * @param rowBytes the number of bytes between consecutive rows. Zero
239 * means rows are tightly packed.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000240 * @param invertY buffer should be populated bottom-to-top as opposed
241 * to top-to-bottom (skia's usual order)
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000242 *
243 * @return true if the read succeeded, false if not. The read can fail
244 * because of a unsupported pixel config or because no render
245 * target is currently set.
246 */
bsalomon6cb3cbe2015-07-30 07:34:27 -0700247 bool readPixels(GrSurface* surface,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000248 int left, int top, int width, int height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000249 GrPixelConfig config, void* buffer, size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000250
bsalomon@google.com6f379512011-11-16 20:36:03 +0000251 /**
bsalomon6cb3cbe2015-07-30 07:34:27 -0700252 * Updates the pixels in a rectangle of a surface.
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000253 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700254 * @param surface The surface to write to.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000255 * @param left left edge of the rectangle to write (inclusive)
256 * @param top top edge of the rectangle to write (inclusive)
257 * @param width width of rectangle to write in pixels.
258 * @param height height of rectangle to write in pixels.
259 * @param config the pixel config of the source buffer
cblume55f2d2d2016-02-26 13:20:48 -0800260 * @param texels array of mipmap levels containing texture data
261 */
262 bool writePixels(GrSurface* surface,
263 int left, int top, int width, int height,
264 GrPixelConfig config,
265 const SkTArray<GrMipLevel>& texels);
266
267 /**
268 * This function is a shim which creates a SkTArray<GrMipLevel> of size 1.
269 * It then calls writePixels with that SkTArray.
270 *
271 * @param buffer memory to read pixels from.
272 * @param rowBytes number of bytes between consecutive rows. Zero
273 * means rows are tightly packed.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000274 */
bsalomon6cb3cbe2015-07-30 07:34:27 -0700275 bool writePixels(GrSurface* surface,
276 int left, int top, int width, int height,
277 GrPixelConfig config, const void* buffer,
278 size_t rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000279
joshualitt3322fa42014-11-07 08:48:51 -0800280 /**
cdalton397536c2016-03-25 12:15:03 -0700281 * Updates the pixels in a rectangle of a surface using a buffer
jvanverth17aa0472016-01-05 10:41:27 -0800282 *
cdalton397536c2016-03-25 12:15:03 -0700283 * @param surface The surface to write to.
284 * @param left left edge of the rectangle to write (inclusive)
285 * @param top top edge of the rectangle to write (inclusive)
286 * @param width width of rectangle to write in pixels.
287 * @param height height of rectangle to write in pixels.
288 * @param config the pixel config of the source buffer
289 * @param transferBuffer GrBuffer to read pixels from (type must be "kCpuToGpu")
290 * @param offset offset from the start of the buffer
291 * @param rowBytes number of bytes between consecutive rows. Zero
292 * means rows are tightly packed.
jvanverth17aa0472016-01-05 10:41:27 -0800293 */
294 bool transferPixels(GrSurface* surface,
295 int left, int top, int width, int height,
cdalton397536c2016-03-25 12:15:03 -0700296 GrPixelConfig config, GrBuffer* transferBuffer,
jvanverth17aa0472016-01-05 10:41:27 -0800297 size_t offset, size_t rowBytes);
298
299 /**
egdaniel51c8d402015-08-06 10:54:13 -0700300 * Clear the passed in render target. Ignores the draw state and clip.
joshualitt3322fa42014-11-07 08:48:51 -0800301 */
egdaniel51c8d402015-08-06 10:54:13 -0700302 void clear(const SkIRect& rect, GrColor color, GrRenderTarget* renderTarget);
joshualitt3322fa42014-11-07 08:48:51 -0800303
304
bsalomon6d467ec2014-11-18 07:36:19 -0800305 void clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* renderTarget);
joshualitt3322fa42014-11-07 08:48:51 -0800306
307 /**
halcanary96fcdcc2015-08-27 07:41:13 -0700308 * Discards the contents render target. nullptr indicates that the current render target should
joshualitt3322fa42014-11-07 08:48:51 -0800309 * be discarded.
310 **/
halcanary96fcdcc2015-08-27 07:41:13 -0700311 virtual void discard(GrRenderTarget* = nullptr) = 0;
joshualitt3322fa42014-11-07 08:48:51 -0800312
313 /**
314 * This is can be called before allocating a texture to be a dst for copySurface. It will
bsalomonf90a02b2014-11-26 12:28:00 -0800315 * populate the origin, config, and flags fields of the desc such that copySurface can
316 * efficiently succeed. It should only succeed if it can allow copySurface to perform a copy
317 * that would be more effecient than drawing the src to a dst render target.
joshualitt3322fa42014-11-07 08:48:51 -0800318 */
joshualitt1c735482015-07-13 08:08:25 -0700319 virtual bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const = 0;
joshualitt6db519c2014-10-29 08:48:18 -0700320
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000321 // After the client interacts directly with the 3D context state the GrGpu
322 // must resync its internal state and assumptions about 3D context state.
323 // Each time this occurs the GrGpu bumps a timestamp.
324 // state of the 3D context
325 // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about
326 // a billion years.
327 typedef uint64_t ResetTimestamp;
328
329 // This timestamp is always older than the current timestamp
330 static const ResetTimestamp kExpiredTimestamp = 0;
331 // Returns a timestamp based on the number of times the context was reset.
332 // This timestamp can be used to lazily detect when cached 3D context state
333 // is dirty.
bsalomon6d467ec2014-11-18 07:36:19 -0800334 ResetTimestamp getResetTimestamp() const { return fResetTimestamp; }
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000335
bsalomonf90a02b2014-11-26 12:28:00 -0800336 // Called to perform a surface to surface copy. Fallbacks to issuing a draw from the src to dst
337 // take place at the GrDrawTarget level and this function implement faster copy paths. The rect
338 // and point are pre-clipped. The src rect and implied dst rect are guaranteed to be within the
339 // src/dst bounds and non-empty.
joshualitt1cbdcde2015-08-21 11:53:29 -0700340 bool copySurface(GrSurface* dst,
341 GrSurface* src,
342 const SkIRect& srcRect,
343 const SkIPoint& dstPoint);
joshualitt3322fa42014-11-07 08:48:51 -0800344
cdalton28f45b92016-03-07 13:58:26 -0800345 struct MultisampleSpecs {
346 // Nonzero ID that uniquely identifies these multisample specs.
347 uint8_t fUniqueID;
348 // The actual number of samples the GPU will run. NOTE: this value can be greater than the
349 // the render target's sample count.
350 int fEffectiveSampleCnt;
351 // If sample locations are supported, contains the subpixel locations at which the GPU will
352 // sample. Pixel center is at (.5, .5) and (0, 0) indicates the top left corner.
353 SkAutoTDeleteArray<const SkPoint> fSampleLocations;
354 };
355
356 // Finds a render target's multisample specs. The stencil settings are only needed to flush the
357 // draw state prior to querying multisample information; they should not have any effect on the
358 // multisample information itself.
359 const MultisampleSpecs& getMultisampleSpecs(GrRenderTarget*, const GrStencilSettings&);
360
egdaniel0e1853c2016-03-17 11:35:45 -0700361 // We pass in an array of meshCount GrMesh to the draw. The backend should loop over each
362 // GrMesh object and emit a draw for it. Each draw will use the same GrPipeline and
bsalomon7dbd45d2016-03-23 10:40:53 -0700363 // GrPrimitiveProcessor. This may fail if the draw would exceed any resource limits (e.g.
364 // number of vertex attributes is too large).
365 bool draw(const GrPipeline&,
egdaniel0e1853c2016-03-17 11:35:45 -0700366 const GrPrimitiveProcessor&,
367 const GrMesh*,
368 int meshCount);
bsalomon3e791242014-12-17 13:43:13 -0800369
halcanary9d524f22016-03-29 09:03:52 -0700370 // Called by drawtarget when flushing.
jvanverthd2d2eb92016-02-17 14:04:46 -0800371 // Provides a hook for post-flush actions (e.g. PLS reset and Vulkan command buffer submits).
372 virtual void finishDrawTarget() {}
ethannicholas22793252016-01-30 09:59:10 -0800373
mtkleinb9eb4ac2015-02-02 18:26:03 -0800374 ///////////////////////////////////////////////////////////////////////////
375 // Debugging and Stats
376
377 class Stats {
378 public:
379#if GR_GPU_STATS
380 Stats() { this->reset(); }
381
bsalomonb12ea412015-02-02 21:19:50 -0800382 void reset() {
383 fRenderTargetBinds = 0;
384 fShaderCompilations = 0;
385 fTextureCreates = 0;
386 fTextureUploads = 0;
jvanverth17aa0472016-01-05 10:41:27 -0800387 fTransfersToTexture = 0;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700388 fStencilAttachmentCreates = 0;
joshualitt87a5c9f2015-09-08 13:42:05 -0700389 fNumDraws = 0;
bsalomon1d417a82016-03-23 11:50:26 -0700390 fNumFailedDraws = 0;
bsalomonb12ea412015-02-02 21:19:50 -0800391 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800392
393 int renderTargetBinds() const { return fRenderTargetBinds; }
394 void incRenderTargetBinds() { fRenderTargetBinds++; }
395 int shaderCompilations() const { return fShaderCompilations; }
396 void incShaderCompilations() { fShaderCompilations++; }
bsalomonb12ea412015-02-02 21:19:50 -0800397 int textureCreates() const { return fTextureCreates; }
398 void incTextureCreates() { fTextureCreates++; }
399 int textureUploads() const { return fTextureUploads; }
400 void incTextureUploads() { fTextureUploads++; }
jvanverth17aa0472016-01-05 10:41:27 -0800401 int transfersToTexture() const { return fTransfersToTexture; }
402 void incTransfersToTexture() { fTransfersToTexture++; }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700403 void incStencilAttachmentCreates() { fStencilAttachmentCreates++; }
joshualitt87a5c9f2015-09-08 13:42:05 -0700404 void incNumDraws() { fNumDraws++; }
bsalomon1d417a82016-03-23 11:50:26 -0700405 void incNumFailedDraws() { ++fNumFailedDraws; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800406 void dump(SkString*);
joshualitte45c81c2015-12-02 09:05:37 -0800407 void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values);
bsalomon1d417a82016-03-23 11:50:26 -0700408 int numDraws() const { return fNumDraws; }
409 int numFailedDraws() const { return fNumFailedDraws; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800410 private:
411 int fRenderTargetBinds;
412 int fShaderCompilations;
bsalomonb12ea412015-02-02 21:19:50 -0800413 int fTextureCreates;
414 int fTextureUploads;
jvanverth17aa0472016-01-05 10:41:27 -0800415 int fTransfersToTexture;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700416 int fStencilAttachmentCreates;
joshualitt87a5c9f2015-09-08 13:42:05 -0700417 int fNumDraws;
bsalomon1d417a82016-03-23 11:50:26 -0700418 int fNumFailedDraws;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800419#else
joshualitte45c81c2015-12-02 09:05:37 -0800420 void dump(SkString*) {}
421 void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800422 void incRenderTargetBinds() {}
423 void incShaderCompilations() {}
bsalomonb12ea412015-02-02 21:19:50 -0800424 void incTextureCreates() {}
425 void incTextureUploads() {}
jvanverth17aa0472016-01-05 10:41:27 -0800426 void incTransfersToTexture() {}
egdaniel8dc7c3a2015-04-16 11:22:42 -0700427 void incStencilAttachmentCreates() {}
joshualitt87a5c9f2015-09-08 13:42:05 -0700428 void incNumDraws() {}
bsalomon1d417a82016-03-23 11:50:26 -0700429 void incNumFailedDraws() {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800430#endif
431 };
432
433 Stats* stats() { return &fStats; }
434
bsalomon67d76202015-11-11 12:40:42 -0800435 /** Creates a texture directly in the backend API without wrapping it in a GrTexture. This is
436 only to be used for testing (particularly for testing the methods that import an externally
437 created texture into Skia. Must be matched with a call to deleteTestingOnlyTexture(). */
jvanverth88957922015-07-14 11:02:52 -0700438 virtual GrBackendObject createTestingOnlyBackendTexture(void* pixels, int w, int h,
bsalomone63ffef2016-02-05 07:17:34 -0800439 GrPixelConfig config) = 0;
bsalomon67d76202015-11-11 12:40:42 -0800440 /** Check a handle represents an actual texture in the backend API that has not been freed. */
441 virtual bool isTestingOnlyBackendTexture(GrBackendObject) const = 0;
442 /** If ownership of the backend texture has been transferred pass true for abandonTexture. This
443 will do any necessary cleanup of the handle without freeing the texture in the backend
444 API. */
445 virtual void deleteTestingOnlyBackendTexture(GrBackendObject,
bsalomone63ffef2016-02-05 07:17:34 -0800446 bool abandonTexture = false) = 0;
jvanverth672bb7f2015-07-13 07:19:57 -0700447
egdanielec00d942015-09-14 12:56:10 -0700448 // width and height may be larger than rt (if underlying API allows it).
449 // Returns nullptr if compatible sb could not be created, otherwise the caller owns the ref on
450 // the GrStencilAttachment.
451 virtual GrStencilAttachment* createStencilAttachmentForRenderTarget(const GrRenderTarget*,
452 int width,
453 int height) = 0;
454 // clears target's entire stencil buffer to 0
455 virtual void clearStencil(GrRenderTarget* target) = 0;
bsalomon6bc1b5f2015-02-23 09:06:38 -0800456
bsalomon6dea83f2015-12-03 12:58:06 -0800457 // draws an outline rectangle for debugging/visualization purposes.
458 virtual void drawDebugWireRect(GrRenderTarget*, const SkIRect&, GrColor) = 0;
bsalomon045802d2015-10-20 07:58:01 -0700459
bsalomone179a912016-01-20 06:18:10 -0800460 // Determines whether a texture will need to be rescaled in order to be used with the
461 // GrTextureParams. This variation is called when the caller will create a new texture using the
462 // texture provider from a non-texture src (cpu-backed image, ...).
bsalomon045802d2015-10-20 07:58:01 -0700463 bool makeCopyForTextureParams(int width, int height, const GrTextureParams&,
bsalomone179a912016-01-20 06:18:10 -0800464 GrTextureProducer::CopyParams*) const;
465
466 // Like the above but this variation should be called when the caller is not creating the
467 // original texture but rather was handed the original texture. It adds additional checks
468 // relevant to original textures that were created external to Skia via
469 // GrTextureProvider::wrap methods.
470 bool makeCopyForTextureParams(GrTexture* texture, const GrTextureParams& params,
471 GrTextureProducer::CopyParams* copyParams) const {
472 if (this->makeCopyForTextureParams(texture->width(), texture->height(), params,
473 copyParams)) {
474 return true;
475 }
476 return this->onMakeCopyForTextureParams(texture, params, copyParams);
477 }
bsalomon045802d2015-10-20 07:58:01 -0700478
jvanverth672bb7f2015-07-13 07:19:57 -0700479 // This is only to be used in GL-specific tests.
halcanary96fcdcc2015-08-27 07:41:13 -0700480 virtual const GrGLContext* glContextForTesting() const { return nullptr; }
bsalomon993a4212015-05-29 11:37:25 -0700481
joshualitt8fd844f2015-12-02 13:36:47 -0800482 // This is only to be used by testing code
483 virtual void resetShaderCacheForTesting() const {}
484
joshualittd53a8272014-11-10 16:03:14 -0800485protected:
bsalomon@google.comd302f142011-03-03 13:54:13 +0000486 // Functions used to map clip-respecting stencil tests into normal
487 // stencil funcs supported by GPUs.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000488 static GrStencilFunc ConvertStencilFunc(bool stencilInClip,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000489 GrStencilFunc func);
490 static void ConvertStencilFuncAndMask(GrStencilFunc func,
491 bool clipInStencil,
492 unsigned int clipBit,
493 unsigned int userBits,
494 unsigned int* ref,
495 unsigned int* mask);
496
bsalomonf0674512015-07-28 13:26:15 -0700497 static void ElevateDrawPreference(GrGpu::DrawPreference* preference,
498 GrGpu::DrawPreference elevation) {
499 GR_STATIC_ASSERT(GrGpu::kCallerPrefersDraw_DrawPreference > GrGpu::kNoDraw_DrawPreference);
500 GR_STATIC_ASSERT(GrGpu::kGpuPrefersDraw_DrawPreference >
501 GrGpu::kCallerPrefersDraw_DrawPreference);
502 GR_STATIC_ASSERT(GrGpu::kRequireDraw_DrawPreference >
503 GrGpu::kGpuPrefersDraw_DrawPreference);
504 *preference = SkTMax(*preference, elevation);
505 }
506
joshualitt93316b92015-10-23 09:08:08 -0700507 void handleDirtyContext() {
508 if (fResetBits) {
509 this->resetContext();
510 }
511 }
512
mtkleinb9eb4ac2015-02-02 18:26:03 -0800513 Stats fStats;
514 SkAutoTDelete<GrPathRendering> fPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800515 // Subclass must initialize this in its constructor.
bsalomon4b91f762015-05-19 09:29:46 -0700516 SkAutoTUnref<const GrCaps> fCaps;
joshualitt3322fa42014-11-07 08:48:51 -0800517
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000518private:
bsalomon@google.comb635d392011-11-05 12:47:43 +0000519 // called when the 3D context state is unknown. Subclass should emit any
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000520 // assumed 3D context state and dirty any state cache.
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000521 virtual void onResetContext(uint32_t resetBits) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000522
bsalomoncb02b382015-08-12 11:14:50 -0700523 // Called before certain draws in order to guarantee coherent results from dst reads.
524 virtual void xferBarrier(GrRenderTarget*, GrXferBarrierType) = 0;
525
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000526 // overridden by backend-specific derived class to create objects.
egdanielb0e1be22015-04-22 13:27:39 -0700527 // Texture size and sample size will have already been validated in base class before
528 // onCreateTexture/CompressedTexture are called.
529 virtual GrTexture* onCreateTexture(const GrSurfaceDesc& desc,
530 GrGpuResource::LifeCycle lifeCycle,
cblume55f2d2d2016-02-26 13:20:48 -0800531 const SkTArray<GrMipLevel>& texels) = 0;
egdanielb0e1be22015-04-22 13:27:39 -0700532 virtual GrTexture* onCreateCompressedTexture(const GrSurfaceDesc& desc,
533 GrGpuResource::LifeCycle lifeCycle,
cblume55f2d2d2016-02-26 13:20:48 -0800534 const SkTArray<GrMipLevel>& texels) = 0;
535
bsalomon6dc6f5f2015-06-18 09:12:16 -0700536 virtual GrTexture* onWrapBackendTexture(const GrBackendTextureDesc&, GrWrapOwnership) = 0;
537 virtual GrRenderTarget* onWrapBackendRenderTarget(const GrBackendRenderTargetDesc&,
538 GrWrapOwnership) = 0;
kkinnunen49c4c222016-04-01 04:50:37 -0700539 virtual GrRenderTarget* onWrapBackendTextureAsRenderTarget(const GrBackendTextureDesc&) = 0;
cdaltone2e71c22016-04-07 18:13:29 -0700540 virtual GrBuffer* onCreateBuffer(size_t size, GrBufferType intendedType, GrAccessPattern) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000541
bsalomon63b21962014-11-05 07:05:34 -0800542 // overridden by backend-specific derived class to perform the clear.
egdaniel51c8d402015-08-06 10:54:13 -0700543 virtual void onClear(GrRenderTarget*, const SkIRect& rect, GrColor color) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000544
joshualitt6db519c2014-10-29 08:48:18 -0700545 // Overridden by backend specific classes to perform a clear of the stencil clip bits. This is
546 // ONLY used by the the clip target
mtkleinb9eb4ac2015-02-02 18:26:03 -0800547 virtual void onClearStencilClip(GrRenderTarget*, const SkIRect& rect, bool insideClip) = 0;
joshualitt6db519c2014-10-29 08:48:18 -0700548
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000549 // overridden by backend-specific derived class to perform the draw call.
egdaniel0e1853c2016-03-17 11:35:45 -0700550 virtual void onDraw(const GrPipeline&,
551 const GrPrimitiveProcessor&,
552 const GrMesh*,
553 int meshCount) = 0;
bsalomon3e791242014-12-17 13:43:13 -0800554
bsalomone179a912016-01-20 06:18:10 -0800555 virtual bool onMakeCopyForTextureParams(GrTexture* texture, const GrTextureParams&,
556 GrTextureProducer::CopyParams*) const { return false; }
557
bsalomonf0674512015-07-28 13:26:15 -0700558 virtual bool onGetReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeight,
559 size_t rowBytes, GrPixelConfig readConfig, DrawPreference*,
560 ReadPixelTempDrawInfo*) = 0;
cblumeed828002016-02-16 13:00:01 -0800561 virtual bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height,
bsalomonf0674512015-07-28 13:26:15 -0700562 GrPixelConfig srcConfig, DrawPreference*,
563 WritePixelTempDrawInfo*) = 0;
564
bsalomon6cb3cbe2015-07-30 07:34:27 -0700565 // overridden by backend-specific derived class to perform the surface read
566 virtual bool onReadPixels(GrSurface*,
egdaniel6d901da2015-07-30 12:02:15 -0700567 int left, int top,
568 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000569 GrPixelConfig,
570 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000571 size_t rowBytes) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000572
bsalomon6cb3cbe2015-07-30 07:34:27 -0700573 // overridden by backend-specific derived class to perform the surface write
574 virtual bool onWritePixels(GrSurface*,
575 int left, int top, int width, int height,
cblume55f2d2d2016-02-26 13:20:48 -0800576 GrPixelConfig config,
577 const SkTArray<GrMipLevel>& texels) = 0;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000578
jvanverth17aa0472016-01-05 10:41:27 -0800579 // overridden by backend-specific derived class to perform the surface write
580 virtual bool onTransferPixels(GrSurface*,
581 int left, int top, int width, int height,
cdalton397536c2016-03-25 12:15:03 -0700582 GrPixelConfig config, GrBuffer* transferBuffer,
jvanverth17aa0472016-01-05 10:41:27 -0800583 size_t offset, size_t rowBytes) = 0;
584
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000585 // overridden by backend-specific derived class to perform the resolve
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000586 virtual void onResolveRenderTarget(GrRenderTarget* target) = 0;
587
joshualitt1cbdcde2015-08-21 11:53:29 -0700588 // overridden by backend specific derived class to perform the copy surface
589 virtual bool onCopySurface(GrSurface* dst,
590 GrSurface* src,
591 const SkIRect& srcRect,
592 const SkIPoint& dstPoint) = 0;
593
cdalton28f45b92016-03-07 13:58:26 -0800594 // overridden by backend specific derived class to perform the multisample queries
595 virtual void onGetMultisampleSpecs(GrRenderTarget*,
596 const GrStencilSettings&,
597 int* effectiveSampleCnt,
598 SkAutoTDeleteArray<SkPoint>* sampleLocations) = 0;
599
bsalomon@google.comb635d392011-11-05 12:47:43 +0000600 void resetContext() {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000601 this->onResetContext(fResetBits);
602 fResetBits = 0;
bsalomon@google.comb635d392011-11-05 12:47:43 +0000603 ++fResetTimestamp;
604 }
605
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000606 ResetTimestamp fResetTimestamp;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000607 uint32_t fResetBits;
cdalton28f45b92016-03-07 13:58:26 -0800608 SkTArray<const MultisampleSpecs*, true> fMultisampleSpecsMap;
609 GrTAllocator<MultisampleSpecs> fMultisampleSpecsAllocator;
joshualitt3322fa42014-11-07 08:48:51 -0800610 // The context owns us, not vice-versa, so this ptr is not ref'ed by Gpu.
611 GrContext* fContext;
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000612
kkinnunencabe20c2015-06-01 01:37:26 -0700613 friend class GrPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800614 typedef SkRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000615};
616
617#endif