blob: dd33cff39f166cef5a137208b0783f3ac9c87896 [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"
bsalomon045802d2015-10-20 07:58:01 -070014#include "GrTextureParamsAdjuster.h"
kkinnunencabe20c2015-06-01 01:37:26 -070015#include "GrXferProcessor.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000016#include "SkPath.h"
17
kkinnunencabe20c2015-06-01 01:37:26 -070018class GrBatchTracker;
bsalomon@google.com669fdc42011-04-05 17:08:27 +000019class GrContext;
reedf9ad5582015-06-25 21:29:25 -070020class GrGLContext;
kkinnunencabe20c2015-06-01 01:37:26 -070021class GrIndexBuffer;
bsalomone64eb572015-05-07 11:35:55 -070022class GrNonInstancedVertices;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000023class GrPath;
cdaltonb85a0aa2014-07-21 15:32:44 -070024class GrPathRange;
bsalomon@google.com30085192011-08-19 15:42:31 +000025class GrPathRenderer;
26class GrPathRendererChain;
kkinnunencabe20c2015-06-01 01:37:26 -070027class GrPathRendering;
egdaniel8dd688b2015-01-22 10:16:09 -080028class GrPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -080029class GrPrimitiveProcessor;
kkinnunencabe20c2015-06-01 01:37:26 -070030class GrRenderTarget;
egdaniel8dc7c3a2015-04-16 11:22:42 -070031class GrStencilAttachment;
kkinnunencabe20c2015-06-01 01:37:26 -070032class GrSurface;
33class GrTexture;
34class GrVertexBuffer;
bsalomoncb8979d2015-05-05 09:51:38 -070035class GrVertices;
reed@google.comac10a2d2010-12-22 21:39:39 +000036
joshualitt3322fa42014-11-07 08:48:51 -080037class GrGpu : public SkRefCnt {
reed@google.comac10a2d2010-12-22 21:39:39 +000038public:
39 /**
bsalomon@google.com16e3dde2012-10-25 18:43:28 +000040 * Create an instance of GrGpu that matches the specified backend. If the requested backend is
halcanary96fcdcc2015-08-27 07:41:13 -070041 * not supported (at compile-time or run-time) this returns nullptr. The context will not be
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000042 * fully constructed and should not be used by GrGpu until after this function returns.
reed@google.comac10a2d2010-12-22 21:39:39 +000043 */
bsalomon682c2692015-05-22 14:01:46 -070044 static GrGpu* Create(GrBackend, GrBackendContext, const GrContextOptions&, GrContext* context);
reed@google.comac10a2d2010-12-22 21:39:39 +000045
46 ////////////////////////////////////////////////////////////////////////////
47
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(); }
joshualitt3322fa42014-11-07 08:48:51 -080058
kkinnunencabe20c2015-06-01 01:37:26 -070059 GrPathRendering* pathRendering() { return fPathRendering.get(); }
kkinnunenccdaa042014-08-20 01:36:23 -070060
bsalomonc8dc1f72014-08-21 13:02:13 -070061 // Called by GrContext when the underlying backend context has been destroyed.
62 // GrGpu should use this to ensure that no backend API calls will be made from
63 // here onward, including in its destructor. Subclasses should call
robertphillipse3371302014-09-17 06:01:06 -070064 // INHERITED::contextAbandoned() if they override this.
65 virtual void contextAbandoned();
bsalomonc8dc1f72014-08-21 13:02:13 -070066
reed@google.comac10a2d2010-12-22 21:39:39 +000067 /**
68 * The GrGpu object normally assumes that no outsider is setting state
69 * within the underlying 3D API's context/device/whatever. This call informs
bsalomon@google.coma7f84e12011-03-10 14:13:19 +000070 * the GrGpu that the state was modified and it shouldn't make assumptions
71 * about the state.
reed@google.comac10a2d2010-12-22 21:39:39 +000072 */
mtkleinb9eb4ac2015-02-02 18:26:03 -080073 void markContextDirty(uint32_t state = kAll_GrBackendState) { fResetBits |= state; }
reed@google.comac10a2d2010-12-22 21:39:39 +000074
75 /**
bsalomon6d467ec2014-11-18 07:36:19 -080076 * Creates a texture object. If kRenderTarget_GrSurfaceFlag the texture can
77 * be used as a render target by calling GrTexture::asRenderTarget(). Not all
78 * pixel configs can be used as render targets. Support for configs as textures
bsalomon4b91f762015-05-19 09:29:46 -070079 * or render targets can be checked using GrCaps.
bsalomon@google.com1da07462011-03-10 14:51:57 +000080 *
reed@google.comac10a2d2010-12-22 21:39:39 +000081 * @param desc describes the texture to be created.
bsalomon5236cf42015-01-14 10:42:08 -080082 * @param budgeted does this texture count against the resource cache budget?
reed@google.comac10a2d2010-12-22 21:39:39 +000083 * @param srcData texel data to load texture. Begins with full-size
krajcevski9c0e6292014-06-02 07:38:14 -070084 * palette data for paletted textures. For compressed
85 * formats it contains the compressed pixel data. Otherwise,
halcanary96fcdcc2015-08-27 07:41:13 -070086 * it contains width*height texels. If nullptr texture data
krajcevski9c0e6292014-06-02 07:38:14 -070087 * is uninitialized.
88 * @param rowBytes the number of bytes between consecutive rows. Zero
89 * means rows are tightly packed. This field is ignored
90 * for compressed formats.
reed@google.comac10a2d2010-12-22 21:39:39 +000091 *
halcanary96fcdcc2015-08-27 07:41:13 -070092 * @return The texture object if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +000093 */
bsalomon5236cf42015-01-14 10:42:08 -080094 GrTexture* createTexture(const GrSurfaceDesc& desc, bool budgeted,
95 const void* srcData, size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +000096
bsalomon@google.come269f212011-11-07 13:29:52 +000097 /**
bsalomon@google.com16e3dde2012-10-25 18:43:28 +000098 * Implements GrContext::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +000099 */
bsalomon6dc6f5f2015-06-18 09:12:16 -0700100 GrTexture* wrapBackendTexture(const GrBackendTextureDesc&, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000101
102 /**
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000103 * Implements GrContext::wrapBackendTexture
bsalomon@google.come269f212011-11-07 13:29:52 +0000104 */
bsalomon6dc6f5f2015-06-18 09:12:16 -0700105 GrRenderTarget* wrapBackendRenderTarget(const GrBackendRenderTargetDesc&, GrWrapOwnership);
bsalomon@google.come269f212011-11-07 13:29:52 +0000106
107 /**
reed@google.comac10a2d2010-12-22 21:39:39 +0000108 * Creates a vertex buffer.
109 *
110 * @param size size in bytes of the vertex buffer
111 * @param dynamic hints whether the data will be frequently changed
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000112 * by either GrVertexBuffer::map() or
113 * GrVertexBuffer::updateData().
reed@google.comac10a2d2010-12-22 21:39:39 +0000114 *
halcanary96fcdcc2015-08-27 07:41:13 -0700115 * @return The vertex buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000116 */
robertphillips@google.comadacc702013-10-14 21:53:24 +0000117 GrVertexBuffer* createVertexBuffer(size_t size, bool dynamic);
reed@google.comac10a2d2010-12-22 21:39:39 +0000118
119 /**
120 * Creates an index buffer.
121 *
122 * @param size size in bytes of the index buffer
123 * @param dynamic hints whether the data will be frequently changed
commit-bot@chromium.org8341eb72014-05-07 20:51:05 +0000124 * by either GrIndexBuffer::map() or
125 * GrIndexBuffer::updateData().
reed@google.comac10a2d2010-12-22 21:39:39 +0000126 *
halcanary96fcdcc2015-08-27 07:41:13 -0700127 * @return The index buffer if successful, otherwise nullptr.
reed@google.comac10a2d2010-12-22 21:39:39 +0000128 */
robertphillips@google.comadacc702013-10-14 21:53:24 +0000129 GrIndexBuffer* createIndexBuffer(size_t size, bool dynamic);
reed@google.comac10a2d2010-12-22 21:39:39 +0000130
131 /**
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000132 * Resolves MSAA.
133 */
134 void resolveRenderTarget(GrRenderTarget* target);
135
bsalomonf0674512015-07-28 13:26:15 -0700136 /** Info struct returned by getReadPixelsInfo about performing intermediate draws before
bsalomon39826022015-07-23 08:07:21 -0700137 reading pixels for performance or correctness. */
138 struct ReadPixelTempDrawInfo {
139 /** If the GrGpu is requesting that the caller do a draw to an intermediate surface then
140 this is descriptor for the temp surface. The draw should always be a rect with
141 dst 0,0,w,h. */
142 GrSurfaceDesc fTempSurfaceDesc;
143 /** Indicates whether there is a performance advantage to using an exact match texture
144 (in terms of width and height) for the intermediate texture instead of approximate. */
145 bool fUseExactScratch;
146 /** The caller should swap the R and B channel in the temp draw and then instead of reading
147 the desired config back it should read GrPixelConfigSwapRAndB(readConfig). The swap
148 during the draw and the swap at readback time cancel and the client gets the correct
149 data. The swapped read back is either faster for or required by the underlying backend
150 3D API. */
151 bool fSwapRAndB;
152 };
153 /** Describes why an intermediate draw must/should be performed before readPixels. */
154 enum DrawPreference {
155 /** On input means that the caller would proceed without draw if the GrGpu doesn't request
156 one.
157 On output means that the GrGpu is not requesting a draw. */
158 kNoDraw_DrawPreference,
159 /** Means that the client would prefer a draw for performance of the readback but
160 can satisfy a straight readPixels call on the inputs without an intermediate draw.
161 getReadPixelsInfo will never set the draw preference to this value but may leave
162 it set. */
163 kCallerPrefersDraw_DrawPreference,
164 /** On output means that GrGpu would prefer a draw for performance of the readback but
165 can satisfy a straight readPixels call on the inputs without an intermediate draw. The
166 caller of getReadPixelsInfo should never specify this on intput. */
167 kGpuPrefersDraw_DrawPreference,
168 /** On input means that the caller requires a draw to do a transformation and there is no
169 CPU fallback.
170 On output means that GrGpu can only satisfy the readPixels request if the intermediate
171 draw is performed.
172 */
173 kRequireDraw_DrawPreference
174 };
175
bsalomonf0674512015-07-28 13:26:15 -0700176 /**
177 * Used to negotiate whether and how an intermediate draw should or must be performed before
178 * a readPixels call. If this returns false then GrGpu could not deduce an intermediate draw
179 * that would allow a successful readPixels call. The passed width, height, and rowBytes,
180 * must be non-zero and already reflect clipping to the src bounds.
181 */
182 bool getReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeight, size_t rowBytes,
183 GrPixelConfig readConfig, DrawPreference*, ReadPixelTempDrawInfo*);
184
185 /** Info struct returned by getWritePixelsInfo about performing an intermediate draw in order
186 to write pixels to a GrSurface for either performance or correctness reasons. */
187 struct WritePixelTempDrawInfo {
188 /** If the GrGpu is requesting that the caller upload to an intermediate surface and draw
189 that to the dst then this is the descriptor for the intermediate surface. The caller
190 should upload the pixels such that the upper left pixel of the upload rect is at 0,0 in
191 the intermediate surface.*/
192 GrSurfaceDesc fTempSurfaceDesc;
193 /** If set, fTempSurfaceDesc's config will be a R/B swap of the src pixel config. The caller
194 should upload the pixels as is such that R and B will be swapped in the intermediate
195 surface. When the intermediate is drawn to the dst the shader should swap R/B again
196 such that the correct swizzle results in the dst. This is done to work around either
197 performance or API restrictions in the backend 3D API implementation. */
198 bool fSwapRAndB;
199 };
bsalomon39826022015-07-23 08:07:21 -0700200
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000201 /**
bsalomonf0674512015-07-28 13:26:15 -0700202 * Used to negotiate whether and how an intermediate surface should be used to write pixels to
203 * a GrSurface. If this returns false then GrGpu could not deduce an intermediate draw
204 * that would allow a successful transfer of the src pixels to the dst. The passed width,
205 * height, and rowBytes, must be non-zero and already reflect clipping to the dst bounds.
bsalomon@google.com0a97be22011-11-08 19:20:57 +0000206 */
bsalomonf0674512015-07-28 13:26:15 -0700207 bool getWritePixelsInfo(GrSurface* dstSurface, int width, int height, size_t rowBytes,
208 GrPixelConfig srcConfig, DrawPreference*, WritePixelTempDrawInfo*);
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000209
210 /**
bsalomon@google.coma04e8e82012-08-27 12:53:13 +0000211 * Reads a rectangle of pixels from a render target.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000212 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700213 * @param surface The surface to read from
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000214 * @param left left edge of the rectangle to read (inclusive)
215 * @param top top edge of the rectangle to read (inclusive)
216 * @param width width of rectangle to read in pixels.
217 * @param height height of rectangle to read in pixels.
218 * @param config the pixel config of the destination buffer
219 * @param buffer memory to read the rectangle into.
bsalomon@google.comc6980972011-11-02 19:57:21 +0000220 * @param rowBytes the number of bytes between consecutive rows. Zero
221 * means rows are tightly packed.
bsalomon@google.comc4364992011-11-07 15:54:49 +0000222 * @param invertY buffer should be populated bottom-to-top as opposed
223 * to top-to-bottom (skia's usual order)
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000224 *
225 * @return true if the read succeeded, false if not. The read can fail
226 * because of a unsupported pixel config or because no render
227 * target is currently set.
228 */
bsalomon6cb3cbe2015-07-30 07:34:27 -0700229 bool readPixels(GrSurface* surface,
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000230 int left, int top, int width, int height,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000231 GrPixelConfig config, void* buffer, size_t rowBytes);
reed@google.comac10a2d2010-12-22 21:39:39 +0000232
bsalomon@google.com6f379512011-11-16 20:36:03 +0000233 /**
bsalomon6cb3cbe2015-07-30 07:34:27 -0700234 * Updates the pixels in a rectangle of a surface.
bsalomon@google.coma85449d2011-11-19 02:36:05 +0000235 *
bsalomon6cb3cbe2015-07-30 07:34:27 -0700236 * @param surface The surface to write to.
bsalomon@google.com6f379512011-11-16 20:36:03 +0000237 * @param left left edge of the rectangle to write (inclusive)
238 * @param top top edge of the rectangle to write (inclusive)
239 * @param width width of rectangle to write in pixels.
240 * @param height height of rectangle to write in pixels.
241 * @param config the pixel config of the source buffer
242 * @param buffer memory to read pixels from
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000243 * @param rowBytes number of bytes between consecutive rows. Zero
bsalomon@google.com6f379512011-11-16 20:36:03 +0000244 * means rows are tightly packed.
245 */
bsalomon6cb3cbe2015-07-30 07:34:27 -0700246 bool writePixels(GrSurface* surface,
247 int left, int top, int width, int height,
248 GrPixelConfig config, const void* buffer,
249 size_t rowBytes);
bsalomon@google.com6f379512011-11-16 20:36:03 +0000250
joshualitt3322fa42014-11-07 08:48:51 -0800251 /**
egdaniel51c8d402015-08-06 10:54:13 -0700252 * Clear the passed in render target. Ignores the draw state and clip.
joshualitt3322fa42014-11-07 08:48:51 -0800253 */
egdaniel51c8d402015-08-06 10:54:13 -0700254 void clear(const SkIRect& rect, GrColor color, GrRenderTarget* renderTarget);
joshualitt3322fa42014-11-07 08:48:51 -0800255
256
bsalomon6d467ec2014-11-18 07:36:19 -0800257 void clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* renderTarget);
joshualitt3322fa42014-11-07 08:48:51 -0800258
259 /**
halcanary96fcdcc2015-08-27 07:41:13 -0700260 * Discards the contents render target. nullptr indicates that the current render target should
joshualitt3322fa42014-11-07 08:48:51 -0800261 * be discarded.
262 **/
halcanary96fcdcc2015-08-27 07:41:13 -0700263 virtual void discard(GrRenderTarget* = nullptr) = 0;
joshualitt3322fa42014-11-07 08:48:51 -0800264
265 /**
266 * This is can be called before allocating a texture to be a dst for copySurface. It will
bsalomonf90a02b2014-11-26 12:28:00 -0800267 * populate the origin, config, and flags fields of the desc such that copySurface can
268 * efficiently succeed. It should only succeed if it can allow copySurface to perform a copy
269 * that would be more effecient than drawing the src to a dst render target.
joshualitt3322fa42014-11-07 08:48:51 -0800270 */
joshualitt1c735482015-07-13 08:08:25 -0700271 virtual bool initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) const = 0;
joshualitt6db519c2014-10-29 08:48:18 -0700272
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000273 // After the client interacts directly with the 3D context state the GrGpu
274 // must resync its internal state and assumptions about 3D context state.
275 // Each time this occurs the GrGpu bumps a timestamp.
276 // state of the 3D context
277 // At 10 resets / frame and 60fps a 64bit timestamp will overflow in about
278 // a billion years.
279 typedef uint64_t ResetTimestamp;
280
281 // This timestamp is always older than the current timestamp
282 static const ResetTimestamp kExpiredTimestamp = 0;
283 // Returns a timestamp based on the number of times the context was reset.
284 // This timestamp can be used to lazily detect when cached 3D context state
285 // is dirty.
bsalomon6d467ec2014-11-18 07:36:19 -0800286 ResetTimestamp getResetTimestamp() const { return fResetTimestamp; }
bsalomon@google.com80d09b92011-11-05 21:21:13 +0000287
joshualitt873ad0e2015-01-20 09:08:51 -0800288 virtual void buildProgramDesc(GrProgramDesc*,
289 const GrPrimitiveProcessor&,
joshualitt465283c2015-09-11 08:19:35 -0700290 const GrPipeline&) const = 0;
joshualitt79f8fae2014-10-28 17:59:26 -0700291
bsalomonf90a02b2014-11-26 12:28:00 -0800292 // Called to perform a surface to surface copy. Fallbacks to issuing a draw from the src to dst
293 // take place at the GrDrawTarget level and this function implement faster copy paths. The rect
294 // and point are pre-clipped. The src rect and implied dst rect are guaranteed to be within the
295 // src/dst bounds and non-empty.
joshualitt1cbdcde2015-08-21 11:53:29 -0700296 bool copySurface(GrSurface* dst,
297 GrSurface* src,
298 const SkIRect& srcRect,
299 const SkIPoint& dstPoint);
joshualitt3322fa42014-11-07 08:48:51 -0800300
joshualitt873ad0e2015-01-20 09:08:51 -0800301 struct DrawArgs {
joshualitt873ad0e2015-01-20 09:08:51 -0800302 DrawArgs(const GrPrimitiveProcessor* primProc,
egdaniel8dd688b2015-01-22 10:16:09 -0800303 const GrPipeline* pipeline,
joshualitt465283c2015-09-11 08:19:35 -0700304 const GrProgramDesc* desc)
joshualitt873ad0e2015-01-20 09:08:51 -0800305 : fPrimitiveProcessor(primProc)
egdaniel8dd688b2015-01-22 10:16:09 -0800306 , fPipeline(pipeline)
joshualitt465283c2015-09-11 08:19:35 -0700307 , fDesc(desc) {
308 SkASSERT(primProc && pipeline && desc);
joshualitt873ad0e2015-01-20 09:08:51 -0800309 }
310 const GrPrimitiveProcessor* fPrimitiveProcessor;
egdaniel8dd688b2015-01-22 10:16:09 -0800311 const GrPipeline* fPipeline;
joshualitt873ad0e2015-01-20 09:08:51 -0800312 const GrProgramDesc* fDesc;
joshualitt873ad0e2015-01-20 09:08:51 -0800313 };
314
bsalomoncb8979d2015-05-05 09:51:38 -0700315 void draw(const DrawArgs&, const GrVertices&);
bsalomon3e791242014-12-17 13:43:13 -0800316
mtkleinb9eb4ac2015-02-02 18:26:03 -0800317 ///////////////////////////////////////////////////////////////////////////
318 // Debugging and Stats
319
320 class Stats {
321 public:
322#if GR_GPU_STATS
323 Stats() { this->reset(); }
324
bsalomonb12ea412015-02-02 21:19:50 -0800325 void reset() {
326 fRenderTargetBinds = 0;
327 fShaderCompilations = 0;
328 fTextureCreates = 0;
329 fTextureUploads = 0;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700330 fStencilAttachmentCreates = 0;
joshualitt87a5c9f2015-09-08 13:42:05 -0700331 fNumDraws = 0;
bsalomonb12ea412015-02-02 21:19:50 -0800332 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800333
334 int renderTargetBinds() const { return fRenderTargetBinds; }
335 void incRenderTargetBinds() { fRenderTargetBinds++; }
336 int shaderCompilations() const { return fShaderCompilations; }
337 void incShaderCompilations() { fShaderCompilations++; }
bsalomonb12ea412015-02-02 21:19:50 -0800338 int textureCreates() const { return fTextureCreates; }
339 void incTextureCreates() { fTextureCreates++; }
340 int textureUploads() const { return fTextureUploads; }
341 void incTextureUploads() { fTextureUploads++; }
egdaniel8dc7c3a2015-04-16 11:22:42 -0700342 void incStencilAttachmentCreates() { fStencilAttachmentCreates++; }
joshualitt87a5c9f2015-09-08 13:42:05 -0700343 void incNumDraws() { fNumDraws++; }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800344 void dump(SkString*);
joshualitte45c81c2015-12-02 09:05:37 -0800345 void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values);
mtkleinb9eb4ac2015-02-02 18:26:03 -0800346
347 private:
348 int fRenderTargetBinds;
349 int fShaderCompilations;
bsalomonb12ea412015-02-02 21:19:50 -0800350 int fTextureCreates;
351 int fTextureUploads;
egdaniel8dc7c3a2015-04-16 11:22:42 -0700352 int fStencilAttachmentCreates;
joshualitt87a5c9f2015-09-08 13:42:05 -0700353 int fNumDraws;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800354#else
joshualitte45c81c2015-12-02 09:05:37 -0800355 void dump(SkString*) {}
356 void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800357 void incRenderTargetBinds() {}
358 void incShaderCompilations() {}
bsalomonb12ea412015-02-02 21:19:50 -0800359 void incTextureCreates() {}
360 void incTextureUploads() {}
egdaniel8dc7c3a2015-04-16 11:22:42 -0700361 void incStencilAttachmentCreates() {}
joshualitt87a5c9f2015-09-08 13:42:05 -0700362 void incNumDraws() {}
mtkleinb9eb4ac2015-02-02 18:26:03 -0800363#endif
364 };
365
366 Stats* stats() { return &fStats; }
367
bsalomon67d76202015-11-11 12:40:42 -0800368 /** Creates a texture directly in the backend API without wrapping it in a GrTexture. This is
369 only to be used for testing (particularly for testing the methods that import an externally
370 created texture into Skia. Must be matched with a call to deleteTestingOnlyTexture(). */
jvanverth88957922015-07-14 11:02:52 -0700371 virtual GrBackendObject createTestingOnlyBackendTexture(void* pixels, int w, int h,
372 GrPixelConfig config) const = 0;
bsalomon67d76202015-11-11 12:40:42 -0800373 /** Check a handle represents an actual texture in the backend API that has not been freed. */
374 virtual bool isTestingOnlyBackendTexture(GrBackendObject) const = 0;
375 /** If ownership of the backend texture has been transferred pass true for abandonTexture. This
376 will do any necessary cleanup of the handle without freeing the texture in the backend
377 API. */
378 virtual void deleteTestingOnlyBackendTexture(GrBackendObject,
379 bool abandonTexture = false) const = 0;
jvanverth672bb7f2015-07-13 07:19:57 -0700380
egdanielec00d942015-09-14 12:56:10 -0700381 // width and height may be larger than rt (if underlying API allows it).
382 // Returns nullptr if compatible sb could not be created, otherwise the caller owns the ref on
383 // the GrStencilAttachment.
384 virtual GrStencilAttachment* createStencilAttachmentForRenderTarget(const GrRenderTarget*,
385 int width,
386 int height) = 0;
387 // clears target's entire stencil buffer to 0
388 virtual void clearStencil(GrRenderTarget* target) = 0;
bsalomon6bc1b5f2015-02-23 09:06:38 -0800389
bsalomon045802d2015-10-20 07:58:01 -0700390
391 // Determines whether a copy of a texture must be made in order to be compatible with
392 // a given GrTextureParams. If so, the width, height and filter used for the copy are
393 // output via the CopyParams.
394 bool makeCopyForTextureParams(int width, int height, const GrTextureParams&,
bsalomon89fe56b2015-10-29 10:49:28 -0700395 GrTextureProducer::CopyParams*) const;
bsalomon045802d2015-10-20 07:58:01 -0700396
jvanverth672bb7f2015-07-13 07:19:57 -0700397 // This is only to be used in GL-specific tests.
halcanary96fcdcc2015-08-27 07:41:13 -0700398 virtual const GrGLContext* glContextForTesting() const { return nullptr; }
bsalomon993a4212015-05-29 11:37:25 -0700399
joshualittd53a8272014-11-10 16:03:14 -0800400protected:
bsalomon@google.comd302f142011-03-03 13:54:13 +0000401 // Functions used to map clip-respecting stencil tests into normal
402 // stencil funcs supported by GPUs.
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000403 static GrStencilFunc ConvertStencilFunc(bool stencilInClip,
bsalomon@google.comd302f142011-03-03 13:54:13 +0000404 GrStencilFunc func);
405 static void ConvertStencilFuncAndMask(GrStencilFunc func,
406 bool clipInStencil,
407 unsigned int clipBit,
408 unsigned int userBits,
409 unsigned int* ref,
410 unsigned int* mask);
411
bsalomonf0674512015-07-28 13:26:15 -0700412 static void ElevateDrawPreference(GrGpu::DrawPreference* preference,
413 GrGpu::DrawPreference elevation) {
414 GR_STATIC_ASSERT(GrGpu::kCallerPrefersDraw_DrawPreference > GrGpu::kNoDraw_DrawPreference);
415 GR_STATIC_ASSERT(GrGpu::kGpuPrefersDraw_DrawPreference >
416 GrGpu::kCallerPrefersDraw_DrawPreference);
417 GR_STATIC_ASSERT(GrGpu::kRequireDraw_DrawPreference >
418 GrGpu::kGpuPrefersDraw_DrawPreference);
419 *preference = SkTMax(*preference, elevation);
420 }
421
joshualitt93316b92015-10-23 09:08:08 -0700422 void handleDirtyContext() {
423 if (fResetBits) {
424 this->resetContext();
425 }
426 }
427
mtkleinb9eb4ac2015-02-02 18:26:03 -0800428 Stats fStats;
429 SkAutoTDelete<GrPathRendering> fPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800430 // Subclass must initialize this in its constructor.
bsalomon4b91f762015-05-19 09:29:46 -0700431 SkAutoTUnref<const GrCaps> fCaps;
joshualitt3322fa42014-11-07 08:48:51 -0800432
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000433private:
bsalomon@google.comb635d392011-11-05 12:47:43 +0000434 // called when the 3D context state is unknown. Subclass should emit any
bsalomon@google.comc8f7f472012-06-18 13:44:51 +0000435 // assumed 3D context state and dirty any state cache.
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000436 virtual void onResetContext(uint32_t resetBits) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000437
bsalomoncb02b382015-08-12 11:14:50 -0700438 // Called before certain draws in order to guarantee coherent results from dst reads.
439 virtual void xferBarrier(GrRenderTarget*, GrXferBarrierType) = 0;
440
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000441 // overridden by backend-specific derived class to create objects.
egdanielb0e1be22015-04-22 13:27:39 -0700442 // Texture size and sample size will have already been validated in base class before
443 // onCreateTexture/CompressedTexture are called.
444 virtual GrTexture* onCreateTexture(const GrSurfaceDesc& desc,
445 GrGpuResource::LifeCycle lifeCycle,
bsalomon5236cf42015-01-14 10:42:08 -0800446 const void* srcData, size_t rowBytes) = 0;
egdanielb0e1be22015-04-22 13:27:39 -0700447 virtual GrTexture* onCreateCompressedTexture(const GrSurfaceDesc& desc,
448 GrGpuResource::LifeCycle lifeCycle,
krajcevski9c0e6292014-06-02 07:38:14 -0700449 const void* srcData) = 0;
bsalomon6dc6f5f2015-06-18 09:12:16 -0700450 virtual GrTexture* onWrapBackendTexture(const GrBackendTextureDesc&, GrWrapOwnership) = 0;
451 virtual GrRenderTarget* onWrapBackendRenderTarget(const GrBackendRenderTargetDesc&,
452 GrWrapOwnership) = 0;
robertphillips@google.comadacc702013-10-14 21:53:24 +0000453 virtual GrVertexBuffer* onCreateVertexBuffer(size_t size, bool dynamic) = 0;
454 virtual GrIndexBuffer* onCreateIndexBuffer(size_t size, bool dynamic) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000455
bsalomon63b21962014-11-05 07:05:34 -0800456 // overridden by backend-specific derived class to perform the clear.
egdaniel51c8d402015-08-06 10:54:13 -0700457 virtual void onClear(GrRenderTarget*, const SkIRect& rect, GrColor color) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000458
joshualitt6db519c2014-10-29 08:48:18 -0700459
460 // Overridden by backend specific classes to perform a clear of the stencil clip bits. This is
461 // ONLY used by the the clip target
mtkleinb9eb4ac2015-02-02 18:26:03 -0800462 virtual void onClearStencilClip(GrRenderTarget*, const SkIRect& rect, bool insideClip) = 0;
joshualitt6db519c2014-10-29 08:48:18 -0700463
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000464 // overridden by backend-specific derived class to perform the draw call.
bsalomone64eb572015-05-07 11:35:55 -0700465 virtual void onDraw(const DrawArgs&, const GrNonInstancedVertices&) = 0;
bsalomon3e791242014-12-17 13:43:13 -0800466
bsalomonf0674512015-07-28 13:26:15 -0700467 virtual bool onGetReadPixelsInfo(GrSurface* srcSurface, int readWidth, int readHeight,
468 size_t rowBytes, GrPixelConfig readConfig, DrawPreference*,
469 ReadPixelTempDrawInfo*) = 0;
470 virtual bool onGetWritePixelsInfo(GrSurface* dstSurface, int width, int height, size_t rowBytes,
471 GrPixelConfig srcConfig, DrawPreference*,
472 WritePixelTempDrawInfo*) = 0;
473
bsalomon6cb3cbe2015-07-30 07:34:27 -0700474 // overridden by backend-specific derived class to perform the surface read
475 virtual bool onReadPixels(GrSurface*,
egdaniel6d901da2015-07-30 12:02:15 -0700476 int left, int top,
477 int width, int height,
bsalomon@google.comc4364992011-11-07 15:54:49 +0000478 GrPixelConfig,
479 void* buffer,
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000480 size_t rowBytes) = 0;
bsalomon@google.coma7f84e12011-03-10 14:13:19 +0000481
bsalomon6cb3cbe2015-07-30 07:34:27 -0700482 // overridden by backend-specific derived class to perform the surface write
483 virtual bool onWritePixels(GrSurface*,
484 int left, int top, int width, int height,
485 GrPixelConfig config, const void* buffer,
486 size_t rowBytes) = 0;
bsalomon@google.com6f379512011-11-16 20:36:03 +0000487
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000488 // overridden by backend-specific derived class to perform the resolve
bsalomon@google.com75f9f252012-01-31 13:35:56 +0000489 virtual void onResolveRenderTarget(GrRenderTarget* target) = 0;
490
joshualitt1cbdcde2015-08-21 11:53:29 -0700491 // overridden by backend specific derived class to perform the copy surface
492 virtual bool onCopySurface(GrSurface* dst,
493 GrSurface* src,
494 const SkIRect& srcRect,
495 const SkIPoint& dstPoint) = 0;
496
bsalomon@google.comb635d392011-11-05 12:47:43 +0000497 void resetContext() {
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000498 this->onResetContext(fResetBits);
499 fResetBits = 0;
bsalomon@google.comb635d392011-11-05 12:47:43 +0000500 ++fResetTimestamp;
501 }
502
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000503 ResetTimestamp fResetTimestamp;
bsalomon@google.com0a208a12013-06-28 18:57:35 +0000504 uint32_t fResetBits;
joshualitt3322fa42014-11-07 08:48:51 -0800505 // The context owns us, not vice-versa, so this ptr is not ref'ed by Gpu.
506 GrContext* fContext;
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000507
kkinnunencabe20c2015-06-01 01:37:26 -0700508 friend class GrPathRendering;
joshualitt3322fa42014-11-07 08:48:51 -0800509 typedef SkRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000510};
511
512#endif