blob: fe20a6dbcc796ab5ba87e1382b27dd6cf6731cd5 [file] [log] [blame]
robertphillipsea461502015-05-26 11:38:03 -07001/*
2 * Copyright 2015 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.
6 */
7
Brian Osman11052242016-10-27 14:47:55 -04008#ifndef GrRenderTargetContext_DEFINED
9#define GrRenderTargetContext_DEFINED
robertphillipsea461502015-05-26 11:38:03 -070010
Brian Salomon7c8460e2017-05-12 11:36:10 -040011#include "../private/GrInstancedPipelineInfo.h"
12#include "../private/GrRenderTargetProxy.h"
robertphillipsea461502015-05-26 11:38:03 -070013#include "GrColor.h"
bsalomonfaf82032016-09-16 09:53:27 -070014#include "GrContext.h"
csmartdaltonecbc12b2016-06-08 10:08:43 -070015#include "GrPaint.h"
Brian Osman45580d32016-11-23 09:37:01 -050016#include "GrSurfaceContext.h"
Brian Salomon7c8460e2017-05-12 11:36:10 -040017#include "GrTypesPriv.h"
Brian Salomon467921e2017-03-06 16:17:12 -050018#include "GrXferProcessor.h"
robertphillipsea461502015-05-26 11:38:03 -070019#include "SkRefCnt.h"
robertphillipsfcf78292015-06-19 11:49:52 -070020#include "SkSurfaceProps.h"
robertphillipsea461502015-05-26 11:38:03 -070021
robertphillipsea461502015-05-26 11:38:03 -070022class GrClip;
robertphillips77a2e522015-10-17 07:43:27 -070023class GrDrawingManager;
Brian Salomon9afd3712016-12-01 10:59:09 -050024class GrDrawOp;
csmartdalton29df7602016-08-31 11:55:52 -070025class GrFixedClip;
Brian Salomond3ccb0a2017-04-03 10:38:00 -040026class GrLegacyMeshDrawOp;
Brian Salomon54d212e2017-03-21 14:22:38 -040027class GrPipelineBuilder;
robertphillipsea461502015-05-26 11:38:03 -070028class GrRenderTarget;
Brian Osman45580d32016-11-23 09:37:01 -050029class GrRenderTargetContextPriv;
Robert Phillipsf2361d22016-10-25 14:20:06 -040030class GrRenderTargetOpList;
bsalomon6663acf2016-05-10 09:14:17 -070031class GrStyle;
Robert Phillipseaa86252016-11-08 13:49:39 +000032class GrTextureProxy;
robertphillips44302392016-07-08 14:43:03 -070033struct GrUserStencilSettings;
robertphillips2334fb62015-06-17 05:43:33 -070034class SkDrawFilter;
Jim Van Verth3af1af92017-05-18 15:06:54 -040035struct SkDrawShadowRec;
robertphillipsea461502015-05-26 11:38:03 -070036struct SkIPoint;
37struct SkIRect;
msarett10e3d9b2016-08-18 15:46:03 -070038class SkLatticeIter;
robertphillipsea461502015-05-26 11:38:03 -070039class SkMatrix;
robertphillips2334fb62015-06-17 05:43:33 -070040class SkPaint;
robertphillipsea461502015-05-26 11:38:03 -070041class SkPath;
42struct SkPoint;
43struct SkRect;
Brian Osman45580d32016-11-23 09:37:01 -050044class SkRegion;
robertphillipsea461502015-05-26 11:38:03 -070045class SkRRect;
jvanverth31ff7622015-08-07 10:09:28 -070046struct SkRSXform;
robertphillips2334fb62015-06-17 05:43:33 -070047class SkTextBlob;
Brian Salomon199fb872017-02-06 09:41:10 -050048class SkVertices;
robertphillipsea461502015-05-26 11:38:03 -070049
Brian Osman45580d32016-11-23 09:37:01 -050050/**
51 * A helper object to orchestrate commands (draws, etc...) for GrSurfaces that are GrRenderTargets.
robertphillipsea461502015-05-26 11:38:03 -070052 */
Brian Osman45580d32016-11-23 09:37:01 -050053class SK_API GrRenderTargetContext : public GrSurfaceContext {
robertphillipsea461502015-05-26 11:38:03 -070054public:
Brian Osman11052242016-10-27 14:47:55 -040055 ~GrRenderTargetContext() override;
robertphillips2334fb62015-06-17 05:43:33 -070056
Robert Phillips77f1edc2017-03-30 10:58:57 -040057 // MDB TODO: This access is mainly provided for the image filters. Remove it when they
58 // no longer need to pass it to the FragmentProcessor ctors.
Robert Phillips26c90e02017-03-14 14:39:29 -040059 GrResourceProvider* resourceProvider() { return fContext->resourceProvider(); }
60
Brian Salomon6f1d36c2017-01-13 12:02:17 -050061 // We use SkPaint rather than GrPaint here for two reasons:
62 // * The SkPaint carries extra text settings. If these were extracted to a lighter object
63 // we could use GrPaint except that
64 // * SkPaint->GrPaint conversion depends upon whether the glyphs are color or grayscale and
65 // this can vary within a text run.
66 virtual void drawText(const GrClip&, const SkPaint&, const SkMatrix& viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -050067 const char text[], size_t byteLength, SkScalar x, SkScalar y,
68 const SkIRect& clipBounds);
Brian Salomon6f1d36c2017-01-13 12:02:17 -050069 virtual void drawPosText(const GrClip&, const SkPaint&, const SkMatrix& viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -050070 const char text[], size_t byteLength, const SkScalar pos[],
71 int scalarsPerPosition, const SkPoint& offset,
72 const SkIRect& clipBounds);
joshualitt96880d92016-02-16 10:36:53 -080073 virtual void drawTextBlob(const GrClip&, const SkPaint&,
74 const SkMatrix& viewMatrix, const SkTextBlob*,
75 SkScalar x, SkScalar y,
76 SkDrawFilter*, const SkIRect& clipBounds);
robertphillipsea461502015-05-26 11:38:03 -070077
robertphillipsea461502015-05-26 11:38:03 -070078 /**
79 * Provides a perfomance hint that the render target's contents are allowed
80 * to become undefined.
81 */
robertphillips2e1e51f2015-10-15 08:01:48 -070082 void discard();
robertphillipsea461502015-05-26 11:38:03 -070083
84 /**
85 * Clear the entire or rect of the render target, ignoring any clips.
robertphillipsea461502015-05-26 11:38:03 -070086 * @param rect the rect to clear or the whole thing if rect is NULL.
87 * @param color the color to clear to.
88 * @param canIgnoreRect allows partial clears to be converted to whole
89 * clears on platforms for which that is cheap
90 */
robertphillips2e1e51f2015-10-15 08:01:48 -070091 void clear(const SkIRect* rect, GrColor color, bool canIgnoreRect);
robertphillipsea461502015-05-26 11:38:03 -070092
93 /**
94 * Draw everywhere (respecting the clip) with the paint.
95 */
Brian Salomon82f44312017-01-11 13:42:54 -050096 void drawPaint(const GrClip&, GrPaint&&, const SkMatrix& viewMatrix);
robertphillipsea461502015-05-26 11:38:03 -070097
98 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050099 * Draw the rect using a paint.
100 * @param paint describes how to color pixels.
101 * @param GrAA Controls whether rect is antialiased
102 * @param viewMatrix transformation matrix
103 * @param style The style to apply. Null means fill. Currently path effects are not
104 * allowed.
105 * The rects coords are used to access the paint (through texture matrix)
robertphillipsea461502015-05-26 11:38:03 -0700106 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700107 void drawRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500108 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500109 GrAA,
robertphillipsea461502015-05-26 11:38:03 -0700110 const SkMatrix& viewMatrix,
111 const SkRect&,
Brian Salomon82f44312017-01-11 13:42:54 -0500112 const GrStyle* style = nullptr);
robertphillipsea461502015-05-26 11:38:03 -0700113
114 /**
bsalomona2e69fc2015-11-05 10:41:43 -0800115 * Maps a rectangle of shader coordinates to a rectangle and fills that rectangle.
robertphillipsea461502015-05-26 11:38:03 -0700116 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500117 * @param paint describes how to color pixels.
118 * @param GrAA Controls whether rect is antialiased
119 * @param viewMatrix transformation matrix which applies to rectToDraw
120 * @param rectToDraw the rectangle to draw
121 * @param localRect the rectangle of shader coordinates applied to rectToDraw
robertphillipsea461502015-05-26 11:38:03 -0700122 */
bsalomona2e69fc2015-11-05 10:41:43 -0800123 void fillRectToRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500124 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500125 GrAA,
bsalomona2e69fc2015-11-05 10:41:43 -0800126 const SkMatrix& viewMatrix,
127 const SkRect& rectToDraw,
128 const SkRect& localRect);
robertphillipsea461502015-05-26 11:38:03 -0700129
130 /**
bsalomona2e69fc2015-11-05 10:41:43 -0800131 * Fills a rect with a paint and a localMatrix.
robertphillipsea461502015-05-26 11:38:03 -0700132 */
bsalomona2e69fc2015-11-05 10:41:43 -0800133 void fillRectWithLocalMatrix(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500134 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500135 GrAA,
bsalomona2e69fc2015-11-05 10:41:43 -0800136 const SkMatrix& viewMatrix,
137 const SkRect& rect,
138 const SkMatrix& localMatrix);
robertphillipsea461502015-05-26 11:38:03 -0700139
140 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500141 * Draw a roundrect using a paint.
robertphillipsea461502015-05-26 11:38:03 -0700142 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500143 * @param paint describes how to color pixels.
144 * @param GrAA Controls whether rrect is antialiased.
145 * @param viewMatrix transformation matrix
146 * @param rrect the roundrect to draw
147 * @param style style to apply to the rrect. Currently path effects are not allowed.
robertphillipsea461502015-05-26 11:38:03 -0700148 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700149 void drawRRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500150 GrPaint&&,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500151 GrAA,
robertphillipsea461502015-05-26 11:38:03 -0700152 const SkMatrix& viewMatrix,
153 const SkRRect& rrect,
bsalomon6663acf2016-05-10 09:14:17 -0700154 const GrStyle& style);
robertphillipsea461502015-05-26 11:38:03 -0700155
156 /**
Jim Van Verth3af1af92017-05-18 15:06:54 -0400157 * Use a fast method to render the ambient and spot shadows for a path.
158 * Will return false if not possible for the given path.
Jim Van Verthc5903412016-11-17 15:27:09 -0500159 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500160 * @param paint describes how to color pixels.
161 * @param viewMatrix transformation matrix
Jim Van Verth3af1af92017-05-18 15:06:54 -0400162 * @param path the path to shadow
163 * @param rec parameters for shadow rendering
Jim Van Verthc5903412016-11-17 15:27:09 -0500164 */
Jim Van Verth3af1af92017-05-18 15:06:54 -0400165 bool drawFastShadow(const GrClip&,
166 GrPaint&&,
167 const SkMatrix& viewMatrix,
168 const SkPath& path,
169 const SkDrawShadowRec& rec);
Jim Van Verthc5903412016-11-17 15:27:09 -0500170
171 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500172 * Shortcut for filling a SkPath consisting of nested rrects using a paint. The result is
173 * undefined if outer does not contain inner.
robertphillips00095892016-02-29 13:50:40 -0800174 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500175 * @param paint describes how to color pixels.
176 * @param GrAA Controls whether rrects edges are antialiased
177 * @param viewMatrix transformation matrix
178 * @param outer the outer roundrect
179 * @param inner the inner roundrect
robertphillips00095892016-02-29 13:50:40 -0800180 */
181 void drawDRRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500182 GrPaint&&,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500183 GrAA,
robertphillips00095892016-02-29 13:50:40 -0800184 const SkMatrix& viewMatrix,
185 const SkRRect& outer,
186 const SkRRect& inner);
187
188 /**
robertphillipsea461502015-05-26 11:38:03 -0700189 * Draws a path.
190 *
191 * @param paint describes how to color pixels.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500192 * @param GrAA Controls whether the path is antialiased.
robertphillipsea461502015-05-26 11:38:03 -0700193 * @param viewMatrix transformation matrix
194 * @param path the path to draw
bsalomon6663acf2016-05-10 09:14:17 -0700195 * @param style style to apply to the path.
robertphillipsea461502015-05-26 11:38:03 -0700196 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700197 void drawPath(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500198 GrPaint&&,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500199 GrAA,
robertphillipsea461502015-05-26 11:38:03 -0700200 const SkMatrix& viewMatrix,
201 const SkPath&,
bsalomon6663acf2016-05-10 09:14:17 -0700202 const GrStyle& style);
robertphillipsea461502015-05-26 11:38:03 -0700203
Brian Salomon3de0aee2017-01-29 09:34:17 -0500204 enum class ColorArrayType {
205 kPremulGrColor,
206 kSkColor,
207 };
robertphillipsea461502015-05-26 11:38:03 -0700208 /**
209 * Draws vertices with a paint.
210 *
211 * @param paint describes how to color pixels.
212 * @param viewMatrix transformation matrix
213 * @param primitiveType primitives type to draw.
214 * @param vertexCount number of vertices.
215 * @param positions array of vertex positions, required.
216 * @param texCoords optional array of texture coordinates used
217 * to access the paint.
218 * @param colors optional array of per-vertex colors, supercedes
219 * the paint's color field.
220 * @param indices optional array of indices. If NULL vertices
221 * are drawn non-indexed.
222 * @param indexCount if indices is non-null then this is the
223 * number of indices.
Brian Salomon3de0aee2017-01-29 09:34:17 -0500224 * @param ColorArrayType Determines how the color array should be interpreted.
robertphillipsea461502015-05-26 11:38:03 -0700225 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700226 void drawVertices(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500227 GrPaint&& paint,
robertphillipsea461502015-05-26 11:38:03 -0700228 const SkMatrix& viewMatrix,
229 GrPrimitiveType primitiveType,
230 int vertexCount,
231 const SkPoint positions[],
232 const SkPoint texs[],
Brian Salomon3de0aee2017-01-29 09:34:17 -0500233 const uint32_t colors[],
robertphillipsea461502015-05-26 11:38:03 -0700234 const uint16_t indices[],
Brian Salomon3de0aee2017-01-29 09:34:17 -0500235 int indexCount,
236 ColorArrayType = ColorArrayType::kPremulGrColor);
robertphillipsea461502015-05-26 11:38:03 -0700237
238 /**
Brian Salomon199fb872017-02-06 09:41:10 -0500239 * Draws vertices with a paint.
240 *
241 * @param paint describes how to color pixels.
242 * @param viewMatrix transformation matrix
243 * @param veritces specifies the mesh to draw.
244 * @param flags A bitfield of options specified by SkCanvas::VerticesFlags.
245 */
246 void drawVertices(const GrClip&,
247 GrPaint&& paint,
248 const SkMatrix& viewMatrix,
Mike Reed5fa66452017-03-16 09:06:34 -0400249 sk_sp<SkVertices> vertices);
Brian Salomon199fb872017-02-06 09:41:10 -0500250
251 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500252 * Draws textured sprites from an atlas with a paint. This currently does not support AA for the
253 * sprite rectangle edges.
jvanverth31ff7622015-08-07 10:09:28 -0700254 *
255 * @param paint describes how to color pixels.
256 * @param viewMatrix transformation matrix
257 * @param spriteCount number of sprites.
258 * @param xform array of compressed transformation data, required.
259 * @param texRect array of texture rectangles used to access the paint.
260 * @param colors optional array of per-sprite colors, supercedes
261 * the paint's color field.
262 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700263 void drawAtlas(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500264 GrPaint&& paint,
jvanverth31ff7622015-08-07 10:09:28 -0700265 const SkMatrix& viewMatrix,
266 int spriteCount,
267 const SkRSXform xform[],
268 const SkRect texRect[],
269 const SkColor colors[]);
msarettcc319b92016-08-25 18:07:18 -0700270
271 /**
272 * Draws a region.
273 *
274 * @param paint describes how to color pixels
275 * @param viewMatrix transformation matrix
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500276 * @param aa should the rects of the region be antialiased.
msarettcc319b92016-08-25 18:07:18 -0700277 * @param region the region to be drawn
278 * @param style style to apply to the region
279 */
280 void drawRegion(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500281 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500282 GrAA aa,
msarettcc319b92016-08-25 18:07:18 -0700283 const SkMatrix& viewMatrix,
284 const SkRegion& region,
285 const GrStyle& style);
286
jvanverth31ff7622015-08-07 10:09:28 -0700287 /**
robertphillipsea461502015-05-26 11:38:03 -0700288 * Draws an oval.
289 *
290 * @param paint describes how to color pixels.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500291 * @param GrAA Controls whether the oval is antialiased.
robertphillipsea461502015-05-26 11:38:03 -0700292 * @param viewMatrix transformation matrix
293 * @param oval the bounding rect of the oval.
bsalomon6663acf2016-05-10 09:14:17 -0700294 * @param style style to apply to the oval. Currently path effects are not allowed.
robertphillipsea461502015-05-26 11:38:03 -0700295 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700296 void drawOval(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500297 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500298 GrAA,
robertphillipsea461502015-05-26 11:38:03 -0700299 const SkMatrix& viewMatrix,
300 const SkRect& oval,
bsalomon6663acf2016-05-10 09:14:17 -0700301 const GrStyle& style);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500302 /**
303 * Draws a partial arc of an oval.
304 *
305 * @param paint describes how to color pixels.
Brian Salomon99504082016-12-09 15:51:31 -0500306 * @param GrGrAA Controls whether the arc is antialiased.
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500307 * @param viewMatrix transformation matrix.
308 * @param oval the bounding rect of the oval.
309 * @param startAngle starting angle in degrees.
310 * @param sweepAngle angle to sweep in degrees. Must be in (-360, 360)
311 * @param useCenter true means that the implied path begins at the oval center, connects as
312 * a line to the point indicated by the start contains the arc indicated by
313 * the sweep angle. If false the line beginning at the center point is
314 * omitted.
315 * @param style style to apply to the oval.
316 */
bsalomon4f3a0ca2016-08-22 13:14:26 -0700317 void drawArc(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500318 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500319 GrAA,
bsalomon4f3a0ca2016-08-22 13:14:26 -0700320 const SkMatrix& viewMatrix,
321 const SkRect& oval,
322 SkScalar startAngle,
323 SkScalar sweepAngle,
324 bool useCenter,
325 const GrStyle& style);
robertphillipsea461502015-05-26 11:38:03 -0700326
joshualitt33a5fce2015-11-18 13:28:51 -0800327 /**
bsalomon4f3a0ca2016-08-22 13:14:26 -0700328 * Draw the image as a set of rects, specified by |iter|.
joshualitt33a5fce2015-11-18 13:28:51 -0800329 */
msarett10e3d9b2016-08-18 15:46:03 -0700330 void drawImageLattice(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500331 GrPaint&& paint,
msarett10e3d9b2016-08-18 15:46:03 -0700332 const SkMatrix& viewMatrix,
333 int imageWidth,
334 int imageHeight,
335 std::unique_ptr<SkLatticeIter> iter,
336 const SkRect& dst);
robertphillipsea461502015-05-26 11:38:03 -0700337
robertphillips8c523e02016-07-26 07:41:00 -0700338 /**
339 * After this returns any pending surface IO will be issued to the backend 3D API and
340 * if the surface has MSAA it will be resolved.
341 */
342 void prepareForExternalIO();
343
Brian Salomon7c8460e2017-05-12 11:36:10 -0400344 GrFSAAType fsaaType() const { return fRenderTargetProxy->fsaaType(); }
bsalomonfaf82032016-09-16 09:53:27 -0700345 const GrCaps* caps() const { return fContext->caps(); }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400346 int width() const { return fRenderTargetProxy->width(); }
347 int height() const { return fRenderTargetProxy->height(); }
348 GrPixelConfig config() const { return fRenderTargetProxy->config(); }
349 int numColorSamples() const { return fRenderTargetProxy->numColorSamples(); }
Brian Salomon50e66d42017-05-15 16:28:07 -0400350 int numStencilSamples() const { return fRenderTargetProxy->numStencilSamples(); }
robertphillipsca6eafc2016-05-17 09:57:46 -0700351 const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; }
msarettc71a9b72016-09-16 11:01:27 -0700352 GrColorSpaceXform* getColorXformFromSRGB() const { return fColorXformFromSRGB.get(); }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400353 GrSurfaceOrigin origin() const { return fRenderTargetProxy->origin(); }
robertphillips7bceedc2015-12-01 12:51:26 -0800354
robertphillips7761d612016-05-16 09:14:53 -0700355 bool wasAbandoned() const;
356
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400357 GrRenderTarget* accessRenderTarget() {
358 // TODO: usage of this entry point needs to be reduced and potentially eliminated
359 // since it ends the deferral of the GrRenderTarget's allocation
Brian Salomonbb5711a2017-05-17 13:49:59 -0400360 return fRenderTargetProxy->instantiateRenderTarget(fContext->resourceProvider());
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400361 }
robertphillips6c7e3252016-04-27 10:47:51 -0700362
Robert Phillipsf200a902017-01-30 13:27:37 -0500363 GrSurfaceProxy* asSurfaceProxy() override { return fRenderTargetProxy.get(); }
364 const GrSurfaceProxy* asSurfaceProxy() const override { return fRenderTargetProxy.get(); }
365 sk_sp<GrSurfaceProxy> asSurfaceProxyRef() override { return fRenderTargetProxy; }
366
367 GrTextureProxy* asTextureProxy() override;
368 sk_sp<GrTextureProxy> asTextureProxyRef() override;
369
370 GrRenderTargetProxy* asRenderTargetProxy() override { return fRenderTargetProxy.get(); }
371 sk_sp<GrRenderTargetProxy> asRenderTargetProxyRef() override { return fRenderTargetProxy; }
Robert Phillipseaa86252016-11-08 13:49:39 +0000372
Robert Phillipsd46697a2017-01-25 12:10:37 -0500373 GrRenderTargetContext* asRenderTargetContext() override { return this; }
374
robertphillips391395d2016-03-02 09:26:36 -0800375 // Provides access to functions that aren't part of the public API.
Brian Osman693a5402016-10-27 15:13:22 -0400376 GrRenderTargetContextPriv priv();
377 const GrRenderTargetContextPriv priv() const;
joshualittf5883a62016-01-13 07:47:38 -0800378
Robert Phillipseaa86252016-11-08 13:49:39 +0000379 bool isWrapped_ForTesting() const;
380
joshualitt96880d92016-02-16 10:36:53 -0800381protected:
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400382 GrRenderTargetContext(GrContext*, GrDrawingManager*, sk_sp<GrRenderTargetProxy>,
Robert Phillips2c862492017-01-18 10:08:39 -0500383 sk_sp<SkColorSpace>, const SkSurfaceProps*, GrAuditTrail*,
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400384 GrSingleOwner*);
joshualitt96880d92016-02-16 10:36:53 -0800385
joshualitt96880d92016-02-16 10:36:53 -0800386 SkDEBUGCODE(void validate() const;)
387
robertphillipsea461502015-05-26 11:38:03 -0700388private:
Brian Salomon7c8460e2017-05-12 11:36:10 -0400389 inline GrAAType chooseAAType(GrAA aa, GrAllowMixedSamples allowMixedSamples) {
390 return GrChooseAAType(aa, this->fsaaType(), allowMixedSamples);
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500391 }
392
Brian Salomon649a3412017-03-09 13:50:43 -0500393 friend class GrAtlasTextBlob; // for access to add[Mesh]DrawOp
394 friend class GrStencilAndCoverTextContext; // for access to add[Mesh]DrawOp
robertphillips55fdccc2016-06-06 06:16:20 -0700395
robertphillips77a2e522015-10-17 07:43:27 -0700396 friend class GrDrawingManager; // for ctor
Brian Osman11052242016-10-27 14:47:55 -0400397 friend class GrRenderTargetContextPriv;
Brian Salomon649a3412017-03-09 13:50:43 -0500398 friend class GrSWMaskHelper; // for access to add[Mesh]DrawOp
robertphillips976f5f02016-06-03 10:59:20 -0700399
Brian Salomon42521e82016-12-07 16:44:58 -0500400 // All the path renderers currently make their own ops
Brian Salomon649a3412017-03-09 13:50:43 -0500401 friend class GrSoftwarePathRenderer; // for access to add[Mesh]DrawOp
402 friend class GrAAConvexPathRenderer; // for access to add[Mesh]DrawOp
403 friend class GrDashLinePathRenderer; // for access to add[Mesh]DrawOp
404 friend class GrAAHairLinePathRenderer; // for access to add[Mesh]DrawOp
405 friend class GrAALinearizingConvexPathRenderer; // for access to add[Mesh]DrawOp
Jim Van Verth83010462017-03-16 08:45:39 -0400406 friend class GrSmallPathRenderer; // for access to add[Mesh]DrawOp
Brian Salomon649a3412017-03-09 13:50:43 -0500407 friend class GrDefaultPathRenderer; // for access to add[Mesh]DrawOp
408 friend class GrMSAAPathRenderer; // for access to add[Mesh]DrawOp
409 friend class GrStencilAndCoverPathRenderer; // for access to add[Mesh]DrawOp
410 friend class GrTessellatingPathRenderer; // for access to add[Mesh]DrawOp
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500411 // for a unit test
Robert Phillips296b1cc2017-03-15 10:42:12 -0400412 friend void test_draw_op(GrRenderTargetContext*,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500413 sk_sp<GrFragmentProcessor>, sk_sp<GrTextureProxy>);
robertphillipsea461502015-05-26 11:38:03 -0700414
csmartdalton29df7602016-08-31 11:55:52 -0700415 void internalClear(const GrFixedClip&, const GrColor, bool canIgnoreClip);
416
Brian Salomon82f44312017-01-11 13:42:54 -0500417 // Only consumes the GrPaint if successful.
robertphillips00095892016-02-29 13:50:40 -0800418 bool drawFilledDRRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500419 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500420 GrAA,
robertphillips00095892016-02-29 13:50:40 -0800421 const SkMatrix& viewMatrix,
422 const SkRRect& origOuter,
423 const SkRRect& origInner);
424
Brian Salomon82f44312017-01-11 13:42:54 -0500425 // Only consumes the GrPaint if successful.
robertphillips44302392016-07-08 14:43:03 -0700426 bool drawFilledRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500427 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500428 GrAA,
robertphillips44302392016-07-08 14:43:03 -0700429 const SkMatrix& viewMatrix,
430 const SkRect& rect,
431 const GrUserStencilSettings* ss);
432
433 void drawNonAAFilledRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500434 GrPaint&&,
robertphillips44302392016-07-08 14:43:03 -0700435 const SkMatrix& viewMatrix,
436 const SkRect& rect,
437 const SkRect* localRect,
438 const SkMatrix* localMatrix,
csmartdalton34ee0c92016-07-27 13:22:27 -0700439 const GrUserStencilSettings* ss,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500440 GrAAType hwOrNoneAAType);
robertphillips391395d2016-03-02 09:26:36 -0800441
Brian Salomon82f44312017-01-11 13:42:54 -0500442 void internalDrawPath(
443 const GrClip&, GrPaint&&, GrAA, const SkMatrix&, const SkPath&, const GrStyle&);
robertphillipsea461502015-05-26 11:38:03 -0700444
Robert Phillipse2f7d182016-12-15 09:23:05 -0500445 bool onCopy(GrSurfaceProxy* src, const SkIRect& srcRect, const SkIPoint& dstPoint) override;
446
Brian Salomon649a3412017-03-09 13:50:43 -0500447 // These perform processing specific to Gr[Mesh]DrawOp-derived ops before recording them into
448 // the op list. They return the id of the opList to which the op was added, or 0, if it was
Robert Phillipsc0138922017-03-08 11:50:55 -0500449 // dropped (e.g., due to clipping).
Brian Salomon54d212e2017-03-21 14:22:38 -0400450 uint32_t addDrawOp(const GrClip&, std::unique_ptr<GrDrawOp>);
Brian Salomone14bd802017-04-04 15:13:25 -0400451 uint32_t addLegacyMeshDrawOp(GrPipelineBuilder&&, const GrClip&,
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400452 std::unique_ptr<GrLegacyMeshDrawOp>);
robertphillips2334fb62015-06-17 05:43:33 -0700453
Robert Phillipsbf25d432017-04-07 10:08:53 -0400454 // Makes a copy of the proxy if it is necessary for the draw and places the texture that should
455 // be used by GrXferProcessor to access the destination color in 'result'. If the return
456 // value is false then a texture copy could not be made.
Robert Phillipsc3757042017-05-17 13:00:14 +0000457 bool SK_WARN_UNUSED_RESULT setupDstTexture(GrRenderTargetProxy*,
458 const GrClip&,
459 const SkRect& opBounds,
460 GrXferProcessor::DstTexture* result);
Brian Salomon467921e2017-03-06 16:17:12 -0500461
Robert Phillipsf2361d22016-10-25 14:20:06 -0400462 GrRenderTargetOpList* getOpList();
robertphillipsa106c622015-10-16 09:07:06 -0700463
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400464 sk_sp<GrRenderTargetProxy> fRenderTargetProxy;
robertphillipsa106c622015-10-16 09:07:06 -0700465
Brian Osman11052242016-10-27 14:47:55 -0400466 // In MDB-mode the GrOpList can be closed by some other renderTargetContext that has picked
Robert Phillipsf2361d22016-10-25 14:20:06 -0400467 // it up. For this reason, the GrOpList should only ever be accessed via 'getOpList'.
Robert Phillipsdc83b892017-04-13 12:23:54 -0400468 sk_sp<GrRenderTargetOpList> fOpList;
msarettc71a9b72016-09-16 11:01:27 -0700469 GrInstancedPipelineInfo fInstancedPipelineInfo;
robertphillips2334fb62015-06-17 05:43:33 -0700470
msarettc71a9b72016-09-16 11:01:27 -0700471 sk_sp<GrColorSpaceXform> fColorXformFromSRGB;
472 SkSurfaceProps fSurfaceProps;
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500473
474 typedef GrSurfaceContext INHERITED;
robertphillipsea461502015-05-26 11:38:03 -0700475};
476
477#endif