blob: 8b9c0ee5f0900acfd435835e1f36b10d2c65e303 [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 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 GrDrawTarget_DEFINED
9#define GrDrawTarget_DEFINED
10
joshualitt44701df2015-02-23 14:44:57 -080011#include "GrClip.h"
joshualitt6db519c2014-10-29 08:48:18 -070012#include "GrClipMaskManager.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000013#include "GrContext.h"
joshualitt8072caa2015-02-12 14:20:52 -080014#include "GrPathProcessor.h"
15#include "GrPrimitiveProcessor.h"
bsalomon@google.com934c5702012-03-20 21:17:58 +000016#include "GrIndexBuffer.h"
kkinnunenccdaa042014-08-20 01:36:23 -070017#include "GrPathRendering.h"
egdaniel8dd688b2015-01-22 10:16:09 -080018#include "GrPipelineBuilder.h"
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000019#include "GrTraceMarker.h"
joshualitt7eb8c7b2014-11-18 14:24:27 -080020#include "GrVertexBuffer.h"
bsalomon6a44c6a2015-05-26 09:49:05 -070021#include "GrXferProcessor.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000022
bsalomon@google.com8d67c072012-12-13 20:38:14 +000023#include "SkClipStack.h"
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000024#include "SkMatrix.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000025#include "SkPath.h"
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +000026#include "SkStrokeRec.h"
robertphillips@google.coma2d71482012-08-01 20:08:47 +000027#include "SkTArray.h"
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000028#include "SkTLazy.h"
commit-bot@chromium.orga0b40282013-09-18 13:00:55 +000029#include "SkTypes.h"
bsalomon@google.com8d67c072012-12-13 20:38:14 +000030#include "SkXfermode.h"
Scroggo97c88c22011-05-11 14:05:25 +000031
joshualitt44701df2015-02-23 14:44:57 -080032class GrClip;
bsalomon4b91f762015-05-19 09:29:46 -070033class GrCaps;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000034class GrPath;
cdaltonb85a0aa2014-07-21 15:32:44 -070035class GrPathRange;
egdaniele36914c2015-02-13 09:00:33 -080036class GrPipeline;
sugoi@google.com12b4e272012-12-06 20:13:11 +000037
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +000038class GrDrawTarget : public SkRefCnt {
bsalomon@google.comf6601872012-08-28 21:11:35 +000039public:
40 SK_DECLARE_INST_COUNT(GrDrawTarget)
41
cdalton55b24af2014-11-25 11:00:56 -080042 typedef GrPathRange::PathIndexType PathIndexType;
43 typedef GrPathRendering::PathTransformType PathTransformType;
kkinnunenccdaa042014-08-20 01:36:23 -070044
reed@google.comac10a2d2010-12-22 21:39:39 +000045 ///////////////////////////////////////////////////////////////////////////
46
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000047 // The context may not be fully constructed and should not be used during GrDrawTarget
48 // construction.
robertphillipse40d3972015-05-07 09:51:43 -070049 GrDrawTarget(GrContext* context);
bsalomona73239a2015-04-28 13:35:17 -070050
bsalomon72e3ae42015-04-28 08:08:46 -070051 virtual ~GrDrawTarget() {}
reed@google.comac10a2d2010-12-22 21:39:39 +000052
53 /**
bsalomona73239a2015-04-28 13:35:17 -070054 * Empties the draw buffer of any queued up draws.
55 */
robertphillipse40d3972015-05-07 09:51:43 -070056 void reset() { this->onReset(); }
bsalomona73239a2015-04-28 13:35:17 -070057
58 /**
59 * This plays any queued up draws to its GrGpu target. It also resets this object (i.e. flushing
60 * is destructive).
61 */
62 void flush();
63
64 /**
bsalomon@google.com18c9c192011-09-22 21:01:31 +000065 * Gets the capabilities of the draw target.
66 */
bsalomon4b91f762015-05-19 09:29:46 -070067 const GrCaps* caps() const { return fCaps.get(); }
bsalomon@google.com18c9c192011-09-22 21:01:31 +000068
joshualitt99c7c072015-05-01 13:43:30 -070069 void drawBatch(GrPipelineBuilder*, GrBatch*);
joshualitt4d8da812015-01-28 12:53:54 -080070
bsalomon@google.com86afc2a2011-02-16 16:12:19 +000071 /**
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000072 * Draws path into the stencil buffer. The fill must be either even/odd or
73 * winding (not inverse or hairline). It will respect the HW antialias flag
egdaniel8dd688b2015-01-22 10:16:09 -080074 * on the GrPipelineBuilder (if possible in the 3D API). Note, we will never have an inverse
75 * fill with stencil path
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000076 */
egdaniel8dd688b2015-01-22 10:16:09 -080077 void stencilPath(GrPipelineBuilder*, const GrPathProcessor*, const GrPath*,
78 GrPathRendering::FillType);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +000079
80 /**
commit-bot@chromium.org32184d82013-10-09 15:14:18 +000081 * Draws a path. Fill must not be a hairline. It will respect the HW
egdaniel8dd688b2015-01-22 10:16:09 -080082 * antialias flag on the GrPipelineBuilder (if possible in the 3D API).
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000083 */
egdaniel8dd688b2015-01-22 10:16:09 -080084 void drawPath(GrPipelineBuilder*, const GrPathProcessor*, const GrPath*,
85 GrPathRendering::FillType);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000086
87 /**
cdalton55b24af2014-11-25 11:00:56 -080088 * Draws the aggregate path from combining multiple. Note that this will not
89 * always be equivalent to back-to-back calls to drawPath(). It will respect
egdaniel8dd688b2015-01-22 10:16:09 -080090 * the HW antialias flag on the GrPipelineBuilder (if possible in the 3D API).
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +000091 *
cdalton55b24af2014-11-25 11:00:56 -080092 * @param pathRange Source paths to draw from
93 * @param indices Array of path indices to draw
94 * @param indexType Data type of the array elements in indexBuffer
95 * @param transformValues Array of transforms for the individual paths
96 * @param transformType Type of transforms in transformBuffer
97 * @param count Number of paths to draw
cdaltonb85a0aa2014-07-21 15:32:44 -070098 * @param fill Fill type for drawing all the paths
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +000099 */
egdaniel8dd688b2015-01-22 10:16:09 -0800100 void drawPaths(GrPipelineBuilder*,
joshualitt56995b52014-12-11 15:44:02 -0800101 const GrPathProcessor*,
joshualitt2e3b3e32014-12-09 13:31:14 -0800102 const GrPathRange* pathRange,
cdalton55b24af2014-11-25 11:00:56 -0800103 const void* indices,
104 PathIndexType indexType,
105 const float transformValues[],
106 PathTransformType transformType,
joshualitt9853cce2014-11-17 14:22:48 -0800107 int count,
joshualitt92e496f2014-10-31 13:56:50 -0700108 GrPathRendering::FillType fill);
cdaltonb85a0aa2014-07-21 15:32:44 -0700109
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000110 /**
bsalomon72e3ae42015-04-28 08:08:46 -0700111 * Helper function for drawing rects.
skia.committer@gmail.com044679e2013-02-15 07:16:57 +0000112 *
bsalomon@google.comc7818882013-03-20 19:19:53 +0000113 * @param rect the rect to draw
bsalomon@google.comc7818882013-03-20 19:19:53 +0000114 * @param localRect optional rect that specifies local coords to map onto
115 * rect. If NULL then rect serves as the local coords.
joshualitt8fc6c2d2014-12-22 15:27:05 -0800116 * @param localMatrix Optional local matrix. The local coordinates are specified by localRect,
117 * or if it is NULL by rect. This matrix applies to the coordinate implied by
118 * that rectangle before it is input to GrCoordTransforms that read local
119 * coordinates
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000120 */
robertphillipsea461502015-05-26 11:38:03 -0700121 void drawBWRect(GrPipelineBuilder* pipelineBuilder,
122 GrColor color,
123 const SkMatrix& viewMatrix,
124 const SkRect& rect,
125 const SkRect* localRect,
126 const SkMatrix* localMatrix);
jvanverth@google.com39768252013-02-14 15:25:44 +0000127
bsalomon@google.comcf939ae2012-12-13 19:59:23 +0000128 /**
bsalomon@google.comc7818882013-03-20 19:19:53 +0000129 * Helper for drawRect when the caller doesn't need separate local rects or matrices.
bsalomon@google.comcf939ae2012-12-13 19:59:23 +0000130 */
egdaniel8dd688b2015-01-22 10:16:09 -0800131 void drawSimpleRect(GrPipelineBuilder* ds, GrColor color, const SkMatrix& viewM,
132 const SkRect& rect) {
robertphillipsea461502015-05-26 11:38:03 -0700133 this->drawBWRect(ds, color, viewM, rect, NULL, NULL);
bsalomon@google.comcf939ae2012-12-13 19:59:23 +0000134 }
egdaniel8dd688b2015-01-22 10:16:09 -0800135 void drawSimpleRect(GrPipelineBuilder* ds, GrColor color, const SkMatrix& viewM,
joshualitt8059eb92014-12-29 15:10:07 -0800136 const SkIRect& irect) {
reed@google.com44699382013-10-31 17:28:30 +0000137 SkRect rect = SkRect::Make(irect);
robertphillipsea461502015-05-26 11:38:03 -0700138 this->drawBWRect(ds, color, viewM, rect, NULL, NULL);
bsalomon@google.comcf939ae2012-12-13 19:59:23 +0000139 }
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000140
robertphillipsea461502015-05-26 11:38:03 -0700141 void drawAARect(GrPipelineBuilder* pipelineBuilder,
142 GrColor color,
143 const SkMatrix& viewMatrix,
144 const SkRect& rect,
145 const SkRect& devRect);
bsalomon@google.com934c5702012-03-20 21:17:58 +0000146
147 /**
egdaniel8dd688b2015-01-22 10:16:09 -0800148 * Clear the passed in render target. Ignores the GrPipelineBuilder and clip. Clears the whole
149 * thing if rect is NULL, otherwise just the rect. If canIgnoreRect is set then the entire
150 * render target can be optionally cleared.
bsalomon@google.com0b335c12011-04-25 19:17:44 +0000151 */
joshualitt9853cce2014-11-17 14:22:48 -0800152 void clear(const SkIRect* rect,
153 GrColor color,
154 bool canIgnoreRect,
bsalomon63b21962014-11-05 07:05:34 -0800155 GrRenderTarget* renderTarget);
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000156
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000157 /**
bsalomon89c62982014-11-03 12:08:42 -0800158 * Discards the contents render target.
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000159 **/
bsalomon89c62982014-11-03 12:08:42 -0800160 virtual void discard(GrRenderTarget*) = 0;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +0000161
162 /**
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000163 * Called at start and end of gpu trace marking
164 * GR_CREATE_GPU_TRACE_MARKER(marker_str, target) will automatically call these at the start
165 * and end of a code block respectively
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000166 */
egdaniel3eee3832014-06-18 13:09:11 -0700167 void addGpuTraceMarker(const GrGpuTraceMarker* marker);
168 void removeGpuTraceMarker(const GrGpuTraceMarker* marker);
169
170 /**
171 * Takes the current active set of markers and stores them for later use. Any current marker
172 * in the active set is removed from the active set and the targets remove function is called.
173 * These functions do not work as a stack so you cannot call save a second time before calling
174 * restore. Also, it is assumed that when restore is called the current active set of markers
175 * is empty. When the stored markers are added back into the active set, the targets add marker
176 * is called.
177 */
178 void saveActiveTraceMarkers();
179 void restoreActiveTraceMarkers();
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000180
181 /**
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000182 * Copies a pixel rectangle from one surface to another. This call may finalize
183 * reserved vertex/index data (as though a draw call was made). The src pixels
184 * copied are specified by srcRect. They are copied to a rect of the same
185 * size in dst with top left at dstPoint. If the src rect is clipped by the
186 * src bounds then pixel values in the dst rect corresponding to area clipped
mtklein404b3b22015-05-18 09:29:10 -0700187 * by the src rect are not overwritten. This method can fail and return false
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000188 * depending on the type of surface, configs, etc, and the backend-specific
mtklein404b3b22015-05-18 09:29:10 -0700189 * limitations. If rect is clipped out entirely by the src or dst bounds then
190 * true is returned since there is no actual copy necessary to succeed.
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000191 */
mtklein404b3b22015-05-18 09:29:10 -0700192 bool copySurface(GrSurface* dst,
bsalomonf90a02b2014-11-26 12:28:00 -0800193 GrSurface* src,
194 const SkIRect& srcRect,
195 const SkIPoint& dstPoint);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000196 /**
mtklein404b3b22015-05-18 09:29:10 -0700197 * Function that determines whether a copySurface call would succeed without actually
198 * performing the copy.
199 */
200 bool canCopySurface(const GrSurface* dst,
201 const GrSurface* src,
202 const SkIRect& srcRect,
203 const SkIPoint& dstPoint);
204
205 /**
robertphillips@google.comff175842012-05-14 19:31:39 +0000206 * Release any resources that are cached but not currently in use. This
207 * is intended to give an application some recourse when resources are low.
208 */
209 virtual void purgeResources() {};
210
joshualitt2c93efe2014-11-06 12:57:13 -0800211 bool programUnitTest(int maxStages);
212
reed@google.comac10a2d2010-12-22 21:39:39 +0000213protected:
joshualitte46760e2015-05-05 08:41:50 -0700214 friend class GrCommandBuilder; // for PipelineInfo
joshualittaf242952015-05-05 11:55:39 -0700215 friend class GrInOrderCommandBuilder; // for PipelineInfo
joshualitt3b58d752015-05-07 11:14:30 -0700216 friend class GrReorderCommandBuilder; // for PipelineInfo
robertphillipsdad77942015-03-03 09:28:16 -0800217 friend class GrTargetCommands; // for PipelineInfo
218
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000219 GrContext* getContext() { return fContext; }
220 const GrContext* getContext() const { return fContext; }
221
bsalomona73239a2015-04-28 13:35:17 -0700222 GrGpu* getGpu() {
223 SkASSERT(fContext && fContext->getGpu());
224 return fContext->getGpu();
225 }
226 const GrGpu* getGpu() const {
227 SkASSERT(fContext && fContext->getGpu());
228 return fContext->getGpu();
229 }
230
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000231 const GrTraceMarkerSet& getActiveTraceMarkers() { return fActiveTraceMarkers; }
232
joshualitt65171342014-10-09 07:25:36 -0700233 // Makes a copy of the dst if it is necessary for the draw. Returns false if a copy is required
234 // but couldn't be made. Otherwise, returns true. This method needs to be protected because it
235 // needs to be accessed by GLPrograms to setup a correct drawstate
bsalomon50785a32015-02-06 07:02:37 -0800236 bool setupDstReadIfNecessary(const GrPipelineBuilder&,
egdaniele36914c2015-02-13 09:00:33 -0800237 const GrProcOptInfo& colorPOI,
238 const GrProcOptInfo& coveragePOI,
bsalomon6a44c6a2015-05-26 09:49:05 -0700239 GrXferProcessor::DstTexture*,
joshualitt9853cce2014-11-17 14:22:48 -0800240 const SkRect* drawBounds);
joshualitt65171342014-10-09 07:25:36 -0700241
egdaniele36914c2015-02-13 09:00:33 -0800242 struct PipelineInfo {
243 PipelineInfo(GrPipelineBuilder* pipelineBuilder, GrScissorState* scissor,
joshualitt44701df2015-02-23 14:44:57 -0800244 const GrPrimitiveProcessor* primProc,
245 const SkRect* devBounds, GrDrawTarget* target);
egdaniele36914c2015-02-13 09:00:33 -0800246
247 PipelineInfo(GrPipelineBuilder* pipelineBuilder, GrScissorState* scissor,
joshualitt44701df2015-02-23 14:44:57 -0800248 const GrBatch* batch, const SkRect* devBounds,
249 GrDrawTarget* target);
egdaniele36914c2015-02-13 09:00:33 -0800250
251 bool willBlendWithDst(const GrPrimitiveProcessor* primProc) const {
252 return fPipelineBuilder->willBlendWithDst(primProc);
253 }
254 private:
255 friend class GrDrawTarget;
256
257 bool mustSkipDraw() const { return (NULL == fPipelineBuilder); }
258
bsalomon6a44c6a2015-05-26 09:49:05 -0700259 GrPipelineBuilder* fPipelineBuilder;
260 GrScissorState* fScissor;
261 GrProcOptInfo fColorPOI;
262 GrProcOptInfo fCoveragePOI;
263 GrXferProcessor::DstTexture fDstTexture;
egdaniele36914c2015-02-13 09:00:33 -0800264 };
265
266 void setupPipeline(const PipelineInfo& pipelineInfo, GrPipeline* pipeline);
267
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000268private:
bsalomona73239a2015-04-28 13:35:17 -0700269 virtual void onReset() = 0;
bsalomonf90a02b2014-11-26 12:28:00 -0800270
bsalomona73239a2015-04-28 13:35:17 -0700271 virtual void onFlush() = 0;
bsalomonf90a02b2014-11-26 12:28:00 -0800272
egdaniele36914c2015-02-13 09:00:33 -0800273 virtual void onDrawBatch(GrBatch*, const PipelineInfo&) = 0;
egdaniel8dd688b2015-01-22 10:16:09 -0800274 virtual void onStencilPath(const GrPipelineBuilder&,
joshualitt56995b52014-12-11 15:44:02 -0800275 const GrPathProcessor*,
joshualitt9853cce2014-11-17 14:22:48 -0800276 const GrPath*,
bsalomon3e791242014-12-17 13:43:13 -0800277 const GrScissorState&,
joshualitt2c93efe2014-11-06 12:57:13 -0800278 const GrStencilSettings&) = 0;
egdaniele36914c2015-02-13 09:00:33 -0800279 virtual void onDrawPath(const GrPathProcessor*,
joshualitt9853cce2014-11-17 14:22:48 -0800280 const GrPath*,
joshualitt2c93efe2014-11-06 12:57:13 -0800281 const GrStencilSettings&,
egdaniele36914c2015-02-13 09:00:33 -0800282 const PipelineInfo&) = 0;
283 virtual void onDrawPaths(const GrPathProcessor*,
joshualitt9853cce2014-11-17 14:22:48 -0800284 const GrPathRange*,
cdalton55b24af2014-11-25 11:00:56 -0800285 const void* indices,
286 PathIndexType,
287 const float transformValues[],
joshualitt2c93efe2014-11-06 12:57:13 -0800288 PathTransformType,
cdalton55b24af2014-11-25 11:00:56 -0800289 int count,
joshualitt2c93efe2014-11-06 12:57:13 -0800290 const GrStencilSettings&,
egdaniele36914c2015-02-13 09:00:33 -0800291 const PipelineInfo&) = 0;
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000292
bsalomon63b21962014-11-05 07:05:34 -0800293 virtual void onClear(const SkIRect* rect, GrColor color, bool canIgnoreRect,
294 GrRenderTarget* renderTarget) = 0;
295
bsalomona73239a2015-04-28 13:35:17 -0700296 /** The subclass's copy surface implementation. It should assume that any clipping has already
297 been performed on the rect and point and that the GrGpu supports the copy. */
298 virtual void onCopySurface(GrSurface* dst,
bsalomonf90a02b2014-11-26 12:28:00 -0800299 GrSurface* src,
300 const SkIRect& srcRect,
301 const SkIPoint& dstPoint) = 0;
302
commit-bot@chromium.orga8916ff2013-08-16 15:53:46 +0000303 // Check to see if this set of draw commands has been sent out
304 virtual bool isIssued(uint32_t drawID) { return true; }
joshualitt9853cce2014-11-17 14:22:48 -0800305 void getPathStencilSettingsForFilltype(GrPathRendering::FillType,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700306 const GrStencilAttachment*,
joshualitt9853cce2014-11-17 14:22:48 -0800307 GrStencilSettings*);
joshualitta7024152014-11-03 14:16:35 -0800308 virtual GrClipMaskManager* clipMaskManager() = 0;
egdaniel8dd688b2015-01-22 10:16:09 -0800309 virtual bool setupClip(GrPipelineBuilder*,
bsalomon6be6f7c2015-02-26 13:05:21 -0800310 GrPipelineBuilder::AutoRestoreFragmentProcessors*,
311 GrPipelineBuilder::AutoRestoreStencil*,
312 GrScissorState*,
joshualitt8059eb92014-12-29 15:10:07 -0800313 const SkRect* devBounds) = 0;
skia.committer@gmail.com74758112013-08-17 07:01:54 +0000314
bsalomon@google.com6e4e6502013-02-25 20:12:45 +0000315 // The context owns us, not vice-versa, so this ptr is not ref'ed by DrawTarget.
316 GrContext* fContext;
bsalomon4b91f762015-05-19 09:29:46 -0700317 SkAutoTUnref<const GrCaps> fCaps;
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000318 // To keep track that we always have at least as many debug marker adds as removes
319 int fGpuTraceMarkerCount;
320 GrTraceMarkerSet fActiveTraceMarkers;
egdaniel3eee3832014-06-18 13:09:11 -0700321 GrTraceMarkerSet fStoredTraceMarkers;
bsalomona73239a2015-04-28 13:35:17 -0700322 bool fFlushing;
reed@google.comfa35e3d2012-06-26 20:16:17 +0000323
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000324 typedef SkRefCnt INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000325};
326
joshualitt329bf482014-10-29 12:31:28 -0700327/*
328 * This class is JUST for clip mask manager. Everyone else should just use draw target above.
329 */
joshualitt6db519c2014-10-29 08:48:18 -0700330class GrClipTarget : public GrDrawTarget {
331public:
bsalomonedd77a12015-05-29 09:45:57 -0700332 GrClipTarget(GrContext*);
joshualitt329bf482014-10-29 12:31:28 -0700333
334 /* Clip mask manager needs access to the context.
335 * TODO we only need a very small subset of context in the CMM.
336 */
337 GrContext* getContext() { return INHERITED::getContext(); }
338 const GrContext* getContext() const { return INHERITED::getContext(); }
339
joshualitt6db519c2014-10-29 08:48:18 -0700340 /**
341 * Clip Mask Manager(and no one else) needs to clear private stencil bits.
342 * ClipTarget subclass sets clip bit in the stencil buffer. The subclass
343 * is free to clear the remaining bits to zero if masked clears are more
344 * expensive than clearing all bits.
345 */
346 virtual void clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* = NULL) = 0;
347
joshualitt3bdd7dc2014-10-31 08:27:39 -0700348 /**
349 * Release any resources that are cached but not currently in use. This
350 * is intended to give an application some recourse when resources are low.
351 */
bsalomonedd77a12015-05-29 09:45:57 -0700352 void purgeResources() override;
joshualitt3bdd7dc2014-10-31 08:27:39 -0700353
joshualitt329bf482014-10-29 12:31:28 -0700354protected:
bsalomonedd77a12015-05-29 09:45:57 -0700355 SkAutoTDelete<GrClipMaskManager> fClipMaskManager;
joshualitt329bf482014-10-29 12:31:28 -0700356
joshualitt6db519c2014-10-29 08:48:18 -0700357private:
bsalomonedd77a12015-05-29 09:45:57 -0700358 GrClipMaskManager* clipMaskManager() override { return fClipMaskManager; }
joshualitt329bf482014-10-29 12:31:28 -0700359
egdaniel8dd688b2015-01-22 10:16:09 -0800360 virtual bool setupClip(GrPipelineBuilder*,
bsalomon6be6f7c2015-02-26 13:05:21 -0800361 GrPipelineBuilder::AutoRestoreFragmentProcessors*,
362 GrPipelineBuilder::AutoRestoreStencil*,
joshualitt8059eb92014-12-29 15:10:07 -0800363 GrScissorState* scissorState,
mtklein36352bf2015-03-25 18:17:31 -0700364 const SkRect* devBounds) override;
joshualitt2c93efe2014-11-06 12:57:13 -0800365
joshualitt6db519c2014-10-29 08:48:18 -0700366 typedef GrDrawTarget INHERITED;
367};
368
reed@google.comac10a2d2010-12-22 21:39:39 +0000369#endif