blob: fd134eae2ca8d1eb0f7ce738482da04ce1e66f5d [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"
bsalomon045802d2015-10-20 07:58:01 -070015#include "GrTextureParamsAdjuster.h"
kkinnunencabe20c2015-06-01 01:37:26 -070016#include "GrXferProcessor.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000017#include "SkPath.h"
18
kkinnunencabe20c2015-06-01 01:37:26 -070019class GrBatchTracker;
bsalomon@google.com669fdc42011-04-05 17:08:27 +000020class GrContext;
reedf9ad5582015-06-25 21:29:25 -070021class GrGLContext;
kkinnunencabe20c2015-06-01 01:37:26 -070022class GrIndexBuffer;
bsalomone64eb572015-05-07 11:35:55 -070023class GrNonInstancedVertices;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000024class GrPath;
cdaltonb85a0aa2014-07-21 15:32:44 -070025class GrPathRange;
bsalomon@google.com30085192011-08-19 15:42:31 +000026class GrPathRenderer;
27class GrPathRendererChain;
kkinnunencabe20c2015-06-01 01:37:26 -070028class GrPathRendering;
egdaniel8dd688b2015-01-22 10:16:09 -080029class GrPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -080030class GrPrimitiveProcessor;
kkinnunencabe20c2015-06-01 01:37:26 -070031class GrRenderTarget;
egdaniel8dc7c3a2015-04-16 11:22:42 -070032class GrStencilAttachment;
kkinnunencabe20c2015-06-01 01:37:26 -070033class GrSurface;
34class GrTexture;
jvanverth73063dc2015-12-03 09:15:47 -080035class GrTransferBuffer;
kkinnunencabe20c2015-06-01 01:37:26 -070036class GrVertexBuffer;
bsalomoncb8979d2015-05-05 09:51:38 -070037class GrVertices;
reed@google.comac10a2d2010-12-22 21:39:39 +000038
joshualitt3322fa42014-11-07 08:48:51 -080039class GrGpu : public SkRefCnt {
reed@google.comac10a2d2010-12-22 21:39:39 +000040public:
41 /**
bsalomon@google.com16e3dde2012-10-25 18:43:28 +000042 * Create an instance of GrGpu that matches the specified backend. If the requested backend is
halcanary96fcdcc2015-08-27 07:41:13 -070043 * not supported (at compile-time or run-time) this returns nullptr. The context will not be
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000044 * fully constructed and should not be used by GrGpu until after this function returns.
reed@google.comac10a2d2010-12-22 21:39:39 +000045 */
bsalomon682c2692015-05-22 14:01:46 -070046 static GrGpu* Create(GrBackend, GrBackendContext, const GrContextOptions&, GrContext* context);
reed@google.comac10a2d2010-12-22 21:39:39 +000047
48 ////////////////////////////////////////////////////////////////////////////
49
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000050 GrGpu(GrContext* context);
mtklein36352bf2015-03-25 18:17:31 -070051 ~GrGpu() override;
reed@google.comac10a2d2010-12-22 21:39:39 +000052
joshualitt3322fa42014-11-07 08:48:51 -080053 GrContext* getContext() { return fContext; }
54 const GrContext* getContext() const { return fContext; }
55
56 /**
57 * Gets the capabilities of the draw target.
58 */
bsalomon4b91f762015-05-19 09:29:46 -070059 const GrCaps* caps() const { return fCaps.get(); }
joshualitt3322fa42014-11-07 08:48:51 -080060
kkinnunencabe20c2015-06-01 01:37:26 -070061 GrPathRendering* pathRendering() { return fPathRendering.get(); }
kkinnunenccdaa042014-08-20 01:36:23 -070062
bsalomonc8dc1f72014-08-21 13:02:13 -070063 // Called by GrContext when the underlying backend context has been destroyed.
64 // GrGpu should use this to ensure that no backend API calls will be made from
65 // here onward, including in its destructor. Subclasses should call
robertphillipse3371302014-09-17 06:01:06 -070066 // INHERITED::contextAbandoned() if they override this.
67 virtual void contextAbandoned();
bsalomonc8dc1f72014-08-21 13:02:13 -070068
reed@google.comac10a2d2010-12-22 21:39:39 +000069 /**
70 * The GrGpu object normally assumes that no outsider is setting state
71 * within the underlying 3D API's context/device/whatever. This call informs
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000072 * the GrGpu that the state was modified and it shouldn't make assumptions
73 * about the state.
reed@google.comac10a2d2010-12-22 21:39:39 +000074 */
mtkleinb9eb4ac2015-02-02 18:26:03 -080075 void markContextDirty(uint32_t state = kAll_GrBackendState) { fResetBits |= state; }
reed@google.comac10a2d2010-12-22 21:39:39 +000076
77 /**
bsalomon6d467ec2014-11-18 07:36:19 -080078 * Creates a texture object. If kRenderTarget_GrSurfaceFlag the texture can
79 * be used as a render target by calling GrTexture::asRenderTarget(). Not all
80 * pixel configs can be used as render targets. Support for configs as textures
bsalomon4b91f762015-05-19 09:29:46 -070081 * or render targets can be checked using GrCaps.
bsalomon@google.com1da07462011-03-10 14:51:57 +000082 *
reed@google.comac10a2d2010-12-22 21:39:39 +000083 * @param desc describes the texture to be created.
bsalomon5236cf42015-01-14 10:42:08 -080084 * @param budgeted does this texture count against the resource cache budget?
reed@google.comac10a2d2010-12-22 21:39:39 +000085 * @param srcData texel data to load texture. Begins with full-size
krajcevski9c0e6292014-06-02 07:38:14 -070086 * palette data for paletted textures. For compressed
87 * formats it contains the compressed pixel data. Otherwise,
halcanary96fcdcc2015-08-27 07:41:13 -070088 * it contains width*height texels. If nullptr texture data
krajcevski9c0e6292014-06-02 07:38:14 -070089 * is uninitialized.
90 * @param rowBytes the number of bytes between consecutive rows. Zero
91 * means rows are tightly packed. This field is ignored
92 * for compressed formats.
reed@google.comac10a2d2010-12-22 21:39:39 +000093 *
halcanary96fcdcc2015-08-27 07:41:13 -070094 * @return The texture object if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +000095 */
bsalomon5236cf42015-01-14 10:42:08 -080096 GrTexture* createTexture(const GrSurfaceDesc& desc, bool budgeted,
97 const void* srcData, size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +000098
bsalomon@google.come269f212011-11-07 13:29:52 +000099 /**
ericrkf7b8b8a2016-02-24 14:49:51 -0800100 * Implements GrTextureProvider::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +0000101 */
bsalomon6dc6f5f2015-06-18 09:12:16 -0700102 GrTexture* wrapBackendTexture(const GrBackendTextureDesc&, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000103
104 /**
ericrkf7b8b8a2016-02-24 14:49:51 -0800105 * Implements GrTextureProvider::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +0000106 */
bsalomon6dc6f5f2015-06-18 09:12:16 -0700107 GrRenderTarget* wrapBackendRenderTarget(const GrBackendRenderTargetDesc&, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000108
109 /**
ericrkf7b8b8a2016-02-24 14:49:51 -0800110 * Implements GrTextureProvider::wrapBackendTextureAsRenderTarget
111 */
112 GrRenderTarget* wrapBackendTextureAsRenderTarget(const GrBackendTextureDesc&, GrWrapOwnership);
113
114 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000115 * Creates a vertex buffer.
116 *
117 * @param size size in bytes of the vertex buffer
118 * @param dynamic hints whether the data will be frequently changed
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000119 * by either GrVertexBuffer::map() or
120 * GrVertexBuffer::updateData().
reed@google.comac10a2d2010-12-22 21:39:39 +0000121 *
halcanary96fcdcc2015-08-27 07:41:13 -0700122 * @return The vertex buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000123 */
robertphillips@google.comadacc702013-10-14 21:53:24 +0000124 GrVertexBuffer* createVertexBuffer(size_t size, bool dynamic);
reed@google.comac10a2d2010-12-22 21:39:39 +0000125
126 /**
127 * Creates an index buffer.
128 *
129 * @param size size in bytes of the index buffer
130 * @param dynamic hints whether the data will be frequently changed
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000131 * by either GrIndexBuffer::map() or
132 * GrIndexBuffer::updateData().
reed@google.comac10a2d2010-12-22 21:39:39 +0000133 *
halcanary96fcdcc2015-08-27 07:41:13 -0700134 * @return The index buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000135 */
robertphillips@google.comadacc702013-10-14 21:53:24 +0000136 GrIndexBuffer* createIndexBuffer(size_t size, bool dynamic);
reed@google.comac10a2d2010-12-22 21:39:39 +0000137
jvanverth73063dc2015-12-03 09:15:47 -0800138 /**
139 * Creates a transfer buffer.
140 *
141 * @param size size in bytes of the index buffer
142 * @param toGpu true if used to transfer from the cpu to the gpu
143 * otherwise to be used to transfer from the gpu to the cpu
144 *
145 * @return The transfer buffer if successful, otherwise nullptr.
146 */
147 GrTransferBuffer* createTransferBuffer(size_t size, TransferType type);
148
reed@google.comac10a2d2010-12-22 21:39:39 +0000149 /**
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000150 * Resolves MSAA.
151 */
152 void resolveRenderTarget(GrRenderTarget* target);
153
bsalomonf0674512015-07-28 13:26:15 -0700154 /** Info struct returned by getReadPixelsInfo about performing intermediate draws before
bsalomon39826022015-07-23 08:07:21 -0700155 reading pixels for performance or correctness. */
156 struct ReadPixelTempDrawInfo {
157 /** If the GrGpu is requesting that the caller do a draw to an intermediate surface then
158 this is descriptor for the temp surface. The draw should always be a rect with
159 dst 0,0,w,h. */
160 GrSurfaceDesc fTempSurfaceDesc;
161 /** Indicates whether there is a performance advantage to using an exact match texture
162 (in terms of width and height) for the intermediate texture instead of approximate. */
163 bool fUseExactScratch;
bsalomon6c9cd552016-01-22 07:17:34 -0800164 /** Swizzle to apply during the draw. This is used to compensate for either feature or
165 performance limitations in the underlying 3D API. */
166 GrSwizzle fSwizzle;
167 /** The config that should be used to read from the temp surface after the draw. This may be
168 different than the original read config in order to compensate for swizzling. The
169 read data will effectively be in the original read config. */
170 GrPixelConfig fReadConfig;
bsalomon39826022015-07-23 08:07:21 -0700171 };
bsalomon6c9cd552016-01-22 07:17:34 -0800172
bsalomon39826022015-07-23 08:07:21 -0700173 /** Describes why an intermediate draw must/should be performed before readPixels. */
174 enum DrawPreference {
175 /** On input means that the caller would proceed without draw if the GrGpu doesn't request
176 one.
177 On output means that the GrGpu is not requesting a draw. */
178 kNoDraw_DrawPreference,
179 /** Means that the client would prefer a draw for performance of the readback but
180 can satisfy a straight readPixels call on the inputs without an intermediate draw.
181 getReadPixelsInfo will never set the draw preference to this value but may leave
182 it set. */
183 kCallerPrefersDraw_DrawPreference,
184 /** On output means that GrGpu would prefer a draw for performance of the readback but
185 can satisfy a straight readPixels call on the inputs without an intermediate draw. The
186 caller of getReadPixelsInfo should never specify this on intput. */
187 kGpuPrefersDraw_DrawPreference,
188 /** On input means that the caller requires a draw to do a transformation and there is no
189 CPU fallback.
190 On output means that GrGpu can only satisfy the readPixels request if the intermediate
191 draw is performed.
192 */
193 kRequireDraw_DrawPreference
194 };
195
bsalomonf0674512015-07-28 13:26:15 -0700196 /**
197 * Used to negotiate whether and how an intermediate draw should or must be performed before
198 * a readPixels call. If this returns false then GrGpu could not deduce an intermediate draw
199 * that would allow a successful readPixels call. The passed width, height, and rowBytes,
200 * must be non-zero and already reflect clipping to the src bounds.
201 */
202 bool getReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeight, size_t rowBytes,
203 GrPixelConfig readConfig, DrawPreference*, ReadPixelTempDrawInfo*);
204
cblume61214052016-01-26 09:10:48 -0800205 /** Info struct returned by getWritePixelsInfo about performing an intermediate draw in order
bsalomonf0674512015-07-28 13:26:15 -0700206 to write pixels to a GrSurface for either performance or correctness reasons. */
207 struct WritePixelTempDrawInfo {
208 /** If the GrGpu is requesting that the caller upload to an intermediate surface and draw
209 that to the dst then this is the descriptor for the intermediate surface. The caller
210 should upload the pixels such that the upper left pixel of the upload rect is at 0,0 in
211 the intermediate surface.*/
212 GrSurfaceDesc fTempSurfaceDesc;
bsalomon6c9cd552016-01-22 07:17:34 -0800213 /** Swizzle to apply during the draw. This is used to compensate for either feature or
214 performance limitations in the underlying 3D API. */
215 GrSwizzle fSwizzle;
216 /** The config that should be specified when uploading the *original* data to the temp
217 surface before the draw. This may be different than the original src data config in
218 order to compensate for swizzling that will occur when drawing. */
219 GrPixelConfig fWriteConfig;
bsalomonf0674512015-07-28 13:26:15 -0700220 };
bsalomon39826022015-07-23 08:07:21 -0700221
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000222 /**
bsalomonf0674512015-07-28 13:26:15 -0700223 * Used to negotiate whether and how an intermediate surface should be used to write pixels to
224 * a GrSurface. If this returns false then GrGpu could not deduce an intermediate draw
225 * that would allow a successful transfer of the src pixels to the dst. The passed width,
226 * height, and rowBytes, must be non-zero and already reflect clipping to the dst bounds.
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000227 */
cblumeed828002016-02-16 13:00:01 -0800228 bool getWritePixelsInfo(GrSurface* dstSurface, int width, int height,
bsalomonf0674512015-07-28 13:26:15 -0700229 GrPixelConfig srcConfig, DrawPreference*, WritePixelTempDrawInfo*);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000230
231 /**
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000232 * Reads a rectangle of pixels from a render target.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000233 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700234 * @param surface The surface to read from
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000235 * @param left left edge of the rectangle to read (inclusive)
236 * @param top top edge of the rectangle to read (inclusive)
237 * @param width width of rectangle to read in pixels.
238 * @param height height of rectangle to read in pixels.
239 * @param config the pixel config of the destination buffer
240 * @param buffer memory to read the rectangle into.
bsalomon@google.comc6980972011-11-02 19:57:21 +0000241 * @param rowBytes the number of bytes between consecutive rows. Zero
242 * means rows are tightly packed.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000243 * @param invertY buffer should be populated bottom-to-top as opposed
244 * to top-to-bottom (skia's usual order)
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000245 *
246 * @return true if the read succeeded, false if not. The read can fail
247 * because of a unsupported pixel config or because no render
248 * target is currently set.
249 */
bsalomon6cb3cbe2015-07-30 07:34:27 -0700250 bool readPixels(GrSurface* surface,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000251 int left, int top, int width, int height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000252 GrPixelConfig config, void* buffer, size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000253
bsalomon@google.com6f379512011-11-16 20:36:03 +0000254 /**
bsalomon6cb3cbe2015-07-30 07:34:27 -0700255 * Updates the pixels in a rectangle of a surface.
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000256 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700257 * @param surface The surface to write to.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000258 * @param left left edge of the rectangle to write (inclusive)
259 * @param top top edge of the rectangle to write (inclusive)
260 * @param width width of rectangle to write in pixels.
261 * @param height height of rectangle to write in pixels.
262 * @param config the pixel config of the source buffer
263 * @param buffer memory to read pixels from
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000264 * @param rowBytes number of bytes between consecutive rows. Zero
bsalomon@google.com6f379512011-11-16 20:36:03 +0000265 * means rows are tightly packed.
266 */
bsalomon6cb3cbe2015-07-30 07:34:27 -0700267 bool writePixels(GrSurface* surface,
268 int left, int top, int width, int height,
269 GrPixelConfig config, const void* buffer,
270 size_t rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000271
joshualitt3322fa42014-11-07 08:48:51 -0800272 /**
jvanverth17aa0472016-01-05 10:41:27 -0800273 * Updates the pixels in a rectangle of a surface using a GrTransferBuffer
274 *
275 * @param surface The surface to write to.
276 * @param left left edge of the rectangle to write (inclusive)
277 * @param top top edge of the rectangle to write (inclusive)
278 * @param width width of rectangle to write in pixels.
279 * @param height height of rectangle to write in pixels.
280 * @param config the pixel config of the source buffer
281 * @param buffer GrTransferBuffer to read pixels from
282 * @param offset offset from the start of the buffer
283 * @param rowBytes number of bytes between consecutive rows. Zero
284 * means rows are tightly packed.
285 */
286 bool transferPixels(GrSurface* surface,
287 int left, int top, int width, int height,
288 GrPixelConfig config, GrTransferBuffer* buffer,
289 size_t offset, size_t rowBytes);
290
291 /**
egdaniel51c8d402015-08-06 10:54:13 -0700292 * Clear the passed in render target. Ignores the draw state and clip.
joshualitt3322fa42014-11-07 08:48:51 -0800293 */
egdaniel51c8d402015-08-06 10:54:13 -0700294 void clear(const SkIRect& rect, GrColor color, GrRenderTarget* renderTarget);
joshualitt3322fa42014-11-07 08:48:51 -0800295
296
bsalomon6d467ec2014-11-18 07:36:19 -0800297 void clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* renderTarget);
joshualitt3322fa42014-11-07 08:48:51 -0800298
299 /**
halcanary96fcdcc2015-08-27 07:41:13 -0700300 * Discards the contents render target. nullptr indicates that the current render target should
joshualitt3322fa42014-11-07 08:48:51 -0800301 * be discarded.
302 **/
halcanary96fcdcc2015-08-27 07:41:13 -0700303 virtual void discard(GrRenderTarget* = nullptr) = 0;
joshualitt3322fa42014-11-07 08:48:51 -0800304
305 /**
306 * This is can be called before allocating a texture to be a dst for copySurface. It will
bsalomonf90a02b2014-11-26 12:28:00 -0800307 * populate the origin, config, and flags fields of the desc such that copySurface can
308 * efficiently succeed. It should only succeed if it can allow copySurface to perform a copy
309 * that would be more effecient than drawing the src to a dst render target.
joshualitt3322fa42014-11-07 08:48:51 -0800310 */
joshualitt1c735482015-07-13 08:08:25 -0700311 virtual bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const = 0;
joshualitt6db519c2014-10-29 08:48:18 -0700312
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000313 // After the client interacts directly with the 3D context state the GrGpu
314 // must resync its internal state and assumptions about 3D context state.
315 // Each time this occurs the GrGpu bumps a timestamp.
316 // state of the 3D context
317 // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about
318 // a billion years.
319 typedef uint64_t ResetTimestamp;
320
321 // This timestamp is always older than the current timestamp
322 static const ResetTimestamp kExpiredTimestamp = 0;
323 // Returns a timestamp based on the number of times the context was reset.
324 // This timestamp can be used to lazily detect when cached 3D context state
325 // is dirty.
bsalomon6d467ec2014-11-18 07:36:19 -0800326 ResetTimestamp getResetTimestamp() const { return fResetTimestamp; }
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000327
joshualitt873ad0e2015-01-20 09:08:51 -0800328 virtual void buildProgramDesc(GrProgramDesc*,
329 const GrPrimitiveProcessor&,
joshualitt465283c2015-09-11 08:19:35 -0700330 const GrPipeline&) const = 0;
joshualitt79f8fae2014-10-28 17:59:26 -0700331
bsalomonf90a02b2014-11-26 12:28:00 -0800332 // Called to perform a surface to surface copy. Fallbacks to issuing a draw from the src to dst
333 // take place at the GrDrawTarget level and this function implement faster copy paths. The rect
334 // and point are pre-clipped. The src rect and implied dst rect are guaranteed to be within the
335 // src/dst bounds and non-empty.
joshualitt1cbdcde2015-08-21 11:53:29 -0700336 bool copySurface(GrSurface* dst,
337 GrSurface* src,
338 const SkIRect& srcRect,
339 const SkIPoint& dstPoint);
joshualitt3322fa42014-11-07 08:48:51 -0800340
joshualitt873ad0e2015-01-20 09:08:51 -0800341 struct DrawArgs {
joshualitt873ad0e2015-01-20 09:08:51 -0800342 DrawArgs(const GrPrimitiveProcessor* primProc,
egdaniel8dd688b2015-01-22 10:16:09 -0800343 const GrPipeline* pipeline,
joshualitt465283c2015-09-11 08:19:35 -0700344 const GrProgramDesc* desc)
joshualitt873ad0e2015-01-20 09:08:51 -0800345 : fPrimitiveProcessor(primProc)
egdaniel8dd688b2015-01-22 10:16:09 -0800346 , fPipeline(pipeline)
joshualitt465283c2015-09-11 08:19:35 -0700347 , fDesc(desc) {
348 SkASSERT(primProc && pipeline && desc);
joshualitt873ad0e2015-01-20 09:08:51 -0800349 }
350 const GrPrimitiveProcessor* fPrimitiveProcessor;
egdaniel8dd688b2015-01-22 10:16:09 -0800351 const GrPipeline* fPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -0800352 const GrProgramDesc* fDesc;
joshualitt873ad0e2015-01-20 09:08:51 -0800353 };
354
bsalomoncb8979d2015-05-05 09:51:38 -0700355 void draw(const DrawArgs&, const GrVertices&);
bsalomon3e791242014-12-17 13:43:13 -0800356
jvanverthd2d2eb92016-02-17 14:04:46 -0800357 // Called by drawtarget when flushing.
358 // Provides a hook for post-flush actions (e.g. PLS reset and Vulkan command buffer submits).
359 virtual void finishDrawTarget() {}
ethannicholas22793252016-01-30 09:59:10 -0800360
mtkleinb9eb4ac2015-02-02 18:26:03 -0800361 ///////////////////////////////////////////////////////////////////////////
362 // Debugging and Stats
363
364 class Stats {
365 public:
366#if GR_GPU_STATS
367 Stats() { this->reset(); }
368
bsalomonb12ea412015-02-02 21:19:50 -0800369 void reset() {
370 fRenderTargetBinds = 0;
371 fShaderCompilations = 0;
372 fTextureCreates = 0;
373 fTextureUploads = 0;
jvanverth17aa0472016-01-05 10:41:27 -0800374 fTransfersToTexture = 0;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700375 fStencilAttachmentCreates = 0;
joshualitt87a5c9f2015-09-08 13:42:05 -0700376 fNumDraws = 0;
bsalomonb12ea412015-02-02 21:19:50 -0800377 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800378
379 int renderTargetBinds() const { return fRenderTargetBinds; }
380 void incRenderTargetBinds() { fRenderTargetBinds++; }
381 int shaderCompilations() const { return fShaderCompilations; }
382 void incShaderCompilations() { fShaderCompilations++; }
bsalomonb12ea412015-02-02 21:19:50 -0800383 int textureCreates() const { return fTextureCreates; }
384 void incTextureCreates() { fTextureCreates++; }
385 int textureUploads() const { return fTextureUploads; }
386 void incTextureUploads() { fTextureUploads++; }
jvanverth17aa0472016-01-05 10:41:27 -0800387 int transfersToTexture() const { return fTransfersToTexture; }
388 void incTransfersToTexture() { fTransfersToTexture++; }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700389 void incStencilAttachmentCreates() { fStencilAttachmentCreates++; }
joshualitt87a5c9f2015-09-08 13:42:05 -0700390 void incNumDraws() { fNumDraws++; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800391 void dump(SkString*);
joshualitte45c81c2015-12-02 09:05:37 -0800392 void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values);
mtkleinb9eb4ac2015-02-02 18:26:03 -0800393
394 private:
395 int fRenderTargetBinds;
396 int fShaderCompilations;
bsalomonb12ea412015-02-02 21:19:50 -0800397 int fTextureCreates;
398 int fTextureUploads;
jvanverth17aa0472016-01-05 10:41:27 -0800399 int fTransfersToTexture;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700400 int fStencilAttachmentCreates;
joshualitt87a5c9f2015-09-08 13:42:05 -0700401 int fNumDraws;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800402#else
joshualitte45c81c2015-12-02 09:05:37 -0800403 void dump(SkString*) {}
404 void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800405 void incRenderTargetBinds() {}
406 void incShaderCompilations() {}
bsalomonb12ea412015-02-02 21:19:50 -0800407 void incTextureCreates() {}
408 void incTextureUploads() {}
jvanverth17aa0472016-01-05 10:41:27 -0800409 void incTransfersToTexture() {}
egdaniel8dc7c3a2015-04-16 11:22:42 -0700410 void incStencilAttachmentCreates() {}
joshualitt87a5c9f2015-09-08 13:42:05 -0700411 void incNumDraws() {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800412#endif
413 };
414
415 Stats* stats() { return &fStats; }
416
bsalomon67d76202015-11-11 12:40:42 -0800417 /** Creates a texture directly in the backend API without wrapping it in a GrTexture. This is
418 only to be used for testing (particularly for testing the methods that import an externally
419 created texture into Skia. Must be matched with a call to deleteTestingOnlyTexture(). */
jvanverth88957922015-07-14 11:02:52 -0700420 virtual GrBackendObject createTestingOnlyBackendTexture(void* pixels, int w, int h,
bsalomone63ffef2016-02-05 07:17:34 -0800421 GrPixelConfig config) = 0;
bsalomon67d76202015-11-11 12:40:42 -0800422 /** Check a handle represents an actual texture in the backend API that has not been freed. */
423 virtual bool isTestingOnlyBackendTexture(GrBackendObject) const = 0;
424 /** If ownership of the backend texture has been transferred pass true for abandonTexture. This
425 will do any necessary cleanup of the handle without freeing the texture in the backend
426 API. */
427 virtual void deleteTestingOnlyBackendTexture(GrBackendObject,
bsalomone63ffef2016-02-05 07:17:34 -0800428 bool abandonTexture = false) = 0;
jvanverth672bb7f2015-07-13 07:19:57 -0700429
egdanielec00d942015-09-14 12:56:10 -0700430 // width and height may be larger than rt (if underlying API allows it).
431 // Returns nullptr if compatible sb could not be created, otherwise the caller owns the ref on
432 // the GrStencilAttachment.
433 virtual GrStencilAttachment* createStencilAttachmentForRenderTarget(const GrRenderTarget*,
434 int width,
435 int height) = 0;
436 // clears target's entire stencil buffer to 0
437 virtual void clearStencil(GrRenderTarget* target) = 0;
bsalomon6bc1b5f2015-02-23 09:06:38 -0800438
bsalomon6dea83f2015-12-03 12:58:06 -0800439 // draws an outline rectangle for debugging/visualization purposes.
440 virtual void drawDebugWireRect(GrRenderTarget*, const SkIRect&, GrColor) = 0;
bsalomon045802d2015-10-20 07:58:01 -0700441
bsalomone179a912016-01-20 06:18:10 -0800442 // Determines whether a texture will need to be rescaled in order to be used with the
443 // GrTextureParams. This variation is called when the caller will create a new texture using the
444 // texture provider from a non-texture src (cpu-backed image, ...).
bsalomon045802d2015-10-20 07:58:01 -0700445 bool makeCopyForTextureParams(int width, int height, const GrTextureParams&,
bsalomone179a912016-01-20 06:18:10 -0800446 GrTextureProducer::CopyParams*) const;
447
448 // Like the above but this variation should be called when the caller is not creating the
449 // original texture but rather was handed the original texture. It adds additional checks
450 // relevant to original textures that were created external to Skia via
451 // GrTextureProvider::wrap methods.
452 bool makeCopyForTextureParams(GrTexture* texture, const GrTextureParams& params,
453 GrTextureProducer::CopyParams* copyParams) const {
454 if (this->makeCopyForTextureParams(texture->width(), texture->height(), params,
455 copyParams)) {
456 return true;
457 }
458 return this->onMakeCopyForTextureParams(texture, params, copyParams);
459 }
bsalomon045802d2015-10-20 07:58:01 -0700460
jvanverth672bb7f2015-07-13 07:19:57 -0700461 // This is only to be used in GL-specific tests.
halcanary96fcdcc2015-08-27 07:41:13 -0700462 virtual const GrGLContext* glContextForTesting() const { return nullptr; }
bsalomon993a4212015-05-29 11:37:25 -0700463
joshualitt8fd844f2015-12-02 13:36:47 -0800464 // This is only to be used by testing code
465 virtual void resetShaderCacheForTesting() const {}
466
joshualittd53a8272014-11-10 16:03:14 -0800467protected:
bsalomon@google.comd302f142011-03-03 13:54:13 +0000468 // Functions used to map clip-respecting stencil tests into normal
469 // stencil funcs supported by GPUs.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000470 static GrStencilFunc ConvertStencilFunc(bool stencilInClip,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000471 GrStencilFunc func);
472 static void ConvertStencilFuncAndMask(GrStencilFunc func,
473 bool clipInStencil,
474 unsigned int clipBit,
475 unsigned int userBits,
476 unsigned int* ref,
477 unsigned int* mask);
478
bsalomonf0674512015-07-28 13:26:15 -0700479 static void ElevateDrawPreference(GrGpu::DrawPreference* preference,
480 GrGpu::DrawPreference elevation) {
481 GR_STATIC_ASSERT(GrGpu::kCallerPrefersDraw_DrawPreference > GrGpu::kNoDraw_DrawPreference);
482 GR_STATIC_ASSERT(GrGpu::kGpuPrefersDraw_DrawPreference >
483 GrGpu::kCallerPrefersDraw_DrawPreference);
484 GR_STATIC_ASSERT(GrGpu::kRequireDraw_DrawPreference >
485 GrGpu::kGpuPrefersDraw_DrawPreference);
486 *preference = SkTMax(*preference, elevation);
487 }
488
joshualitt93316b92015-10-23 09:08:08 -0700489 void handleDirtyContext() {
490 if (fResetBits) {
491 this->resetContext();
492 }
493 }
494
mtkleinb9eb4ac2015-02-02 18:26:03 -0800495 Stats fStats;
496 SkAutoTDelete<GrPathRendering> fPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800497 // Subclass must initialize this in its constructor.
bsalomon4b91f762015-05-19 09:29:46 -0700498 SkAutoTUnref<const GrCaps> fCaps;
joshualitt3322fa42014-11-07 08:48:51 -0800499
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000500private:
bsalomon@google.comb635d392011-11-05 12:47:43 +0000501 // called when the 3D context state is unknown. Subclass should emit any
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000502 // assumed 3D context state and dirty any state cache.
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000503 virtual void onResetContext(uint32_t resetBits) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000504
bsalomoncb02b382015-08-12 11:14:50 -0700505 // Called before certain draws in order to guarantee coherent results from dst reads.
506 virtual void xferBarrier(GrRenderTarget*, GrXferBarrierType) = 0;
507
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000508 // overridden by backend-specific derived class to create objects.
egdanielb0e1be22015-04-22 13:27:39 -0700509 // Texture size and sample size will have already been validated in base class before
510 // onCreateTexture/CompressedTexture are called.
511 virtual GrTexture* onCreateTexture(const GrSurfaceDesc& desc,
512 GrGpuResource::LifeCycle lifeCycle,
bsalomon5236cf42015-01-14 10:42:08 -0800513 const void* srcData, size_t rowBytes) = 0;
egdanielb0e1be22015-04-22 13:27:39 -0700514 virtual GrTexture* onCreateCompressedTexture(const GrSurfaceDesc& desc,
515 GrGpuResource::LifeCycle lifeCycle,
krajcevski9c0e6292014-06-02 07:38:14 -0700516 const void* srcData) = 0;
bsalomon6dc6f5f2015-06-18 09:12:16 -0700517 virtual GrTexture* onWrapBackendTexture(const GrBackendTextureDesc&, GrWrapOwnership) = 0;
518 virtual GrRenderTarget* onWrapBackendRenderTarget(const GrBackendRenderTargetDesc&,
519 GrWrapOwnership) = 0;
ericrkf7b8b8a2016-02-24 14:49:51 -0800520 virtual GrRenderTarget* onWrapBackendTextureAsRenderTarget(const GrBackendTextureDesc&,
521 GrWrapOwnership) = 0;
robertphillips@google.comadacc702013-10-14 21:53:24 +0000522 virtual GrVertexBuffer* onCreateVertexBuffer(size_t size, bool dynamic) = 0;
523 virtual GrIndexBuffer* onCreateIndexBuffer(size_t size, bool dynamic) = 0;
jvanverth73063dc2015-12-03 09:15:47 -0800524 virtual GrTransferBuffer* onCreateTransferBuffer(size_t size, TransferType type) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000525
bsalomon63b21962014-11-05 07:05:34 -0800526 // overridden by backend-specific derived class to perform the clear.
egdaniel51c8d402015-08-06 10:54:13 -0700527 virtual void onClear(GrRenderTarget*, const SkIRect& rect, GrColor color) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000528
joshualitt6db519c2014-10-29 08:48:18 -0700529
530 // Overridden by backend specific classes to perform a clear of the stencil clip bits. This is
531 // ONLY used by the the clip target
mtkleinb9eb4ac2015-02-02 18:26:03 -0800532 virtual void onClearStencilClip(GrRenderTarget*, const SkIRect& rect, bool insideClip) = 0;
joshualitt6db519c2014-10-29 08:48:18 -0700533
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000534 // overridden by backend-specific derived class to perform the draw call.
bsalomone64eb572015-05-07 11:35:55 -0700535 virtual void onDraw(const DrawArgs&, const GrNonInstancedVertices&) = 0;
bsalomon3e791242014-12-17 13:43:13 -0800536
bsalomone179a912016-01-20 06:18:10 -0800537 virtual bool onMakeCopyForTextureParams(GrTexture* texture, const GrTextureParams&,
538 GrTextureProducer::CopyParams*) const { return false; }
539
bsalomonf0674512015-07-28 13:26:15 -0700540 virtual bool onGetReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeight,
541 size_t rowBytes, GrPixelConfig readConfig, DrawPreference*,
542 ReadPixelTempDrawInfo*) = 0;
cblumeed828002016-02-16 13:00:01 -0800543 virtual bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height,
bsalomonf0674512015-07-28 13:26:15 -0700544 GrPixelConfig srcConfig, DrawPreference*,
545 WritePixelTempDrawInfo*) = 0;
546
bsalomon6cb3cbe2015-07-30 07:34:27 -0700547 // overridden by backend-specific derived class to perform the surface read
548 virtual bool onReadPixels(GrSurface*,
egdaniel6d901da2015-07-30 12:02:15 -0700549 int left, int top,
550 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000551 GrPixelConfig,
552 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000553 size_t rowBytes) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000554
bsalomon6cb3cbe2015-07-30 07:34:27 -0700555 // overridden by backend-specific derived class to perform the surface write
556 virtual bool onWritePixels(GrSurface*,
557 int left, int top, int width, int height,
558 GrPixelConfig config, const void* buffer,
559 size_t rowBytes) = 0;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000560
jvanverth17aa0472016-01-05 10:41:27 -0800561 // overridden by backend-specific derived class to perform the surface write
562 virtual bool onTransferPixels(GrSurface*,
563 int left, int top, int width, int height,
564 GrPixelConfig config, GrTransferBuffer* buffer,
565 size_t offset, size_t rowBytes) = 0;
566
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000567 // overridden by backend-specific derived class to perform the resolve
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000568 virtual void onResolveRenderTarget(GrRenderTarget* target) = 0;
569
joshualitt1cbdcde2015-08-21 11:53:29 -0700570 // overridden by backend specific derived class to perform the copy surface
571 virtual bool onCopySurface(GrSurface* dst,
572 GrSurface* src,
573 const SkIRect& srcRect,
574 const SkIPoint& dstPoint) = 0;
575
bsalomon@google.comb635d392011-11-05 12:47:43 +0000576 void resetContext() {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000577 this->onResetContext(fResetBits);
578 fResetBits = 0;
bsalomon@google.comb635d392011-11-05 12:47:43 +0000579 ++fResetTimestamp;
580 }
581
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000582 ResetTimestamp fResetTimestamp;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000583 uint32_t fResetBits;
joshualitt3322fa42014-11-07 08:48:51 -0800584 // The context owns us, not vice-versa, so this ptr is not ref'ed by Gpu.
585 GrContext* fContext;
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000586
kkinnunencabe20c2015-06-01 01:37:26 -0700587 friend class GrPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800588 typedef SkRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000589};
590
591#endif