blob: fe32faf1b9a5c4db250c52a297680ca6752604a9 [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
11#include "GrColor.h"
bsalomonfaf82032016-09-16 09:53:27 -070012#include "GrContext.h"
csmartdaltonecbc12b2016-06-08 10:08:43 -070013#include "GrPaint.h"
Brian Osman45580d32016-11-23 09:37:01 -050014#include "GrSurfaceContext.h"
Brian Salomon467921e2017-03-06 16:17:12 -050015#include "GrXferProcessor.h"
robertphillipsea461502015-05-26 11:38:03 -070016#include "SkRefCnt.h"
robertphillipsfcf78292015-06-19 11:49:52 -070017#include "SkSurfaceProps.h"
csmartdaltona7f29642016-07-07 08:49:11 -070018#include "../private/GrInstancedPipelineInfo.h"
Robert Phillipsc7635fa2016-10-28 13:25:24 -040019#include "../private/GrRenderTargetProxy.h"
robertphillipsea461502015-05-26 11:38:03 -070020
robertphillipsea461502015-05-26 11:38:03 -070021class GrClip;
robertphillips77a2e522015-10-17 07:43:27 -070022class GrDrawingManager;
Brian Salomon9afd3712016-12-01 10:59:09 -050023class GrDrawOp;
csmartdalton29df7602016-08-31 11:55:52 -070024class GrFixedClip;
Brian Salomond3ccb0a2017-04-03 10:38:00 -040025class GrLegacyMeshDrawOp;
Brian Salomon54d212e2017-03-21 14:22:38 -040026class GrPipelineBuilder;
robertphillipsea461502015-05-26 11:38:03 -070027class GrRenderTarget;
Brian Osman45580d32016-11-23 09:37:01 -050028class GrRenderTargetContextPriv;
Robert Phillipsf2361d22016-10-25 14:20:06 -040029class GrRenderTargetOpList;
bsalomon6663acf2016-05-10 09:14:17 -070030class GrStyle;
Robert Phillipseaa86252016-11-08 13:49:39 +000031class GrTextureProxy;
robertphillips44302392016-07-08 14:43:03 -070032struct GrUserStencilSettings;
robertphillips2334fb62015-06-17 05:43:33 -070033class SkDrawFilter;
robertphillipsea461502015-05-26 11:38:03 -070034struct SkIPoint;
35struct SkIRect;
msarett10e3d9b2016-08-18 15:46:03 -070036class SkLatticeIter;
robertphillipsea461502015-05-26 11:38:03 -070037class SkMatrix;
robertphillips2334fb62015-06-17 05:43:33 -070038class SkPaint;
robertphillipsea461502015-05-26 11:38:03 -070039class SkPath;
40struct SkPoint;
41struct SkRect;
Brian Osman45580d32016-11-23 09:37:01 -050042class SkRegion;
robertphillipsea461502015-05-26 11:38:03 -070043class SkRRect;
jvanverth31ff7622015-08-07 10:09:28 -070044struct SkRSXform;
robertphillips2334fb62015-06-17 05:43:33 -070045class SkTextBlob;
Brian Salomon199fb872017-02-06 09:41:10 -050046class SkVertices;
robertphillipsea461502015-05-26 11:38:03 -070047
Brian Osman45580d32016-11-23 09:37:01 -050048/**
49 * A helper object to orchestrate commands (draws, etc...) for GrSurfaces that are GrRenderTargets.
robertphillipsea461502015-05-26 11:38:03 -070050 */
Brian Osman45580d32016-11-23 09:37:01 -050051class SK_API GrRenderTargetContext : public GrSurfaceContext {
robertphillipsea461502015-05-26 11:38:03 -070052public:
Brian Osman11052242016-10-27 14:47:55 -040053 ~GrRenderTargetContext() override;
robertphillips2334fb62015-06-17 05:43:33 -070054
Robert Phillips77f1edc2017-03-30 10:58:57 -040055 // MDB TODO: This access is mainly provided for the image filters. Remove it when they
56 // no longer need to pass it to the FragmentProcessor ctors.
Robert Phillips26c90e02017-03-14 14:39:29 -040057 GrResourceProvider* resourceProvider() { return fContext->resourceProvider(); }
58
Brian Salomon6f1d36c2017-01-13 12:02:17 -050059 // We use SkPaint rather than GrPaint here for two reasons:
60 // * The SkPaint carries extra text settings. If these were extracted to a lighter object
61 // we could use GrPaint except that
62 // * SkPaint->GrPaint conversion depends upon whether the glyphs are color or grayscale and
63 // this can vary within a text run.
64 virtual void drawText(const GrClip&, const SkPaint&, const SkMatrix& viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -050065 const char text[], size_t byteLength, SkScalar x, SkScalar y,
66 const SkIRect& clipBounds);
Brian Salomon6f1d36c2017-01-13 12:02:17 -050067 virtual void drawPosText(const GrClip&, const SkPaint&, const SkMatrix& viewMatrix,
Brian Salomon82f44312017-01-11 13:42:54 -050068 const char text[], size_t byteLength, const SkScalar pos[],
69 int scalarsPerPosition, const SkPoint& offset,
70 const SkIRect& clipBounds);
joshualitt96880d92016-02-16 10:36:53 -080071 virtual void drawTextBlob(const GrClip&, const SkPaint&,
72 const SkMatrix& viewMatrix, const SkTextBlob*,
73 SkScalar x, SkScalar y,
74 SkDrawFilter*, const SkIRect& clipBounds);
robertphillipsea461502015-05-26 11:38:03 -070075
robertphillipsea461502015-05-26 11:38:03 -070076 /**
77 * Provides a perfomance hint that the render target's contents are allowed
78 * to become undefined.
79 */
robertphillips2e1e51f2015-10-15 08:01:48 -070080 void discard();
robertphillipsea461502015-05-26 11:38:03 -070081
82 /**
83 * Clear the entire or rect of the render target, ignoring any clips.
robertphillipsea461502015-05-26 11:38:03 -070084 * @param rect the rect to clear or the whole thing if rect is NULL.
85 * @param color the color to clear to.
86 * @param canIgnoreRect allows partial clears to be converted to whole
87 * clears on platforms for which that is cheap
88 */
robertphillips2e1e51f2015-10-15 08:01:48 -070089 void clear(const SkIRect* rect, GrColor color, bool canIgnoreRect);
robertphillipsea461502015-05-26 11:38:03 -070090
91 /**
92 * Draw everywhere (respecting the clip) with the paint.
93 */
Brian Salomon82f44312017-01-11 13:42:54 -050094 void drawPaint(const GrClip&, GrPaint&&, const SkMatrix& viewMatrix);
robertphillipsea461502015-05-26 11:38:03 -070095
96 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050097 * Draw the rect using a paint.
98 * @param paint describes how to color pixels.
99 * @param GrAA Controls whether rect is antialiased
100 * @param viewMatrix transformation matrix
101 * @param style The style to apply. Null means fill. Currently path effects are not
102 * allowed.
103 * The rects coords are used to access the paint (through texture matrix)
robertphillipsea461502015-05-26 11:38:03 -0700104 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700105 void drawRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500106 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500107 GrAA,
robertphillipsea461502015-05-26 11:38:03 -0700108 const SkMatrix& viewMatrix,
109 const SkRect&,
Brian Salomon82f44312017-01-11 13:42:54 -0500110 const GrStyle* style = nullptr);
robertphillipsea461502015-05-26 11:38:03 -0700111
112 /**
bsalomona2e69fc2015-11-05 10:41:43 -0800113 * Maps a rectangle of shader coordinates to a rectangle and fills that rectangle.
robertphillipsea461502015-05-26 11:38:03 -0700114 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500115 * @param paint describes how to color pixels.
116 * @param GrAA Controls whether rect is antialiased
117 * @param viewMatrix transformation matrix which applies to rectToDraw
118 * @param rectToDraw the rectangle to draw
119 * @param localRect the rectangle of shader coordinates applied to rectToDraw
robertphillipsea461502015-05-26 11:38:03 -0700120 */
bsalomona2e69fc2015-11-05 10:41:43 -0800121 void fillRectToRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500122 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500123 GrAA,
bsalomona2e69fc2015-11-05 10:41:43 -0800124 const SkMatrix& viewMatrix,
125 const SkRect& rectToDraw,
126 const SkRect& localRect);
robertphillipsea461502015-05-26 11:38:03 -0700127
128 /**
bsalomona2e69fc2015-11-05 10:41:43 -0800129 * Fills a rect with a paint and a localMatrix.
robertphillipsea461502015-05-26 11:38:03 -0700130 */
bsalomona2e69fc2015-11-05 10:41:43 -0800131 void fillRectWithLocalMatrix(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500132 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500133 GrAA,
bsalomona2e69fc2015-11-05 10:41:43 -0800134 const SkMatrix& viewMatrix,
135 const SkRect& rect,
136 const SkMatrix& localMatrix);
robertphillipsea461502015-05-26 11:38:03 -0700137
138 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500139 * Draw a roundrect using a paint.
robertphillipsea461502015-05-26 11:38:03 -0700140 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500141 * @param paint describes how to color pixels.
142 * @param GrAA Controls whether rrect is antialiased.
143 * @param viewMatrix transformation matrix
144 * @param rrect the roundrect to draw
145 * @param style style to apply to the rrect. Currently path effects are not allowed.
robertphillipsea461502015-05-26 11:38:03 -0700146 */
robertphillips2e1e51f2015-10-15 08:01:48 -0700147 void drawRRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500148 GrPaint&&,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500149 GrAA,
robertphillipsea461502015-05-26 11:38:03 -0700150 const SkMatrix& viewMatrix,
151 const SkRRect& rrect,
bsalomon6663acf2016-05-10 09:14:17 -0700152 const GrStyle& style);
robertphillipsea461502015-05-26 11:38:03 -0700153
154 /**
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500155 * Draw a roundrect using a paint and a shadow shader. This is separate from drawRRect
156 * because it uses different underlying geometry and GeometryProcessor
Jim Van Verthc5903412016-11-17 15:27:09 -0500157 *
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500158 * @param paint describes how to color pixels.
159 * @param viewMatrix transformation matrix
160 * @param rrect the roundrect to draw
161 * @param blurRadius amount of shadow blur to apply (in device space)
162 * @param style style to apply to the rrect. Currently path effects are not allowed.
Jim Van Verthc5903412016-11-17 15:27:09 -0500163 */
164 void drawShadowRRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500165 GrPaint&&,
Jim Van Verthc5903412016-11-17 15:27:09 -0500166 const SkMatrix& viewMatrix,
167 const SkRRect& rrect,
168 SkScalar blurRadius,
169 const GrStyle& style);
170
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
robertphillips976f5f02016-06-03 10:59:20 -0700344 bool isStencilBufferMultisampled() const {
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400345 return fRenderTargetProxy->isStencilBufferMultisampled();
robertphillips976f5f02016-06-03 10:59:20 -0700346 }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400347 bool isUnifiedMultisampled() const { return fRenderTargetProxy->isUnifiedMultisampled(); }
348 bool hasMixedSamples() const { return fRenderTargetProxy->isMixedSampled(); }
robertphillips82ec6e52016-05-19 14:01:05 -0700349
bsalomonfaf82032016-09-16 09:53:27 -0700350 const GrCaps* caps() const { return fContext->caps(); }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400351 const GrSurfaceDesc& desc() const { return fRenderTargetProxy->desc(); }
352 int width() const { return fRenderTargetProxy->width(); }
353 int height() const { return fRenderTargetProxy->height(); }
354 GrPixelConfig config() const { return fRenderTargetProxy->config(); }
355 int numColorSamples() const { return fRenderTargetProxy->numColorSamples(); }
robertphillipsca6eafc2016-05-17 09:57:46 -0700356 const SkSurfaceProps& surfaceProps() const { return fSurfaceProps; }
msarettc71a9b72016-09-16 11:01:27 -0700357 GrColorSpaceXform* getColorXformFromSRGB() const { return fColorXformFromSRGB.get(); }
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400358 GrSurfaceOrigin origin() const { return fRenderTargetProxy->origin(); }
robertphillips7bceedc2015-12-01 12:51:26 -0800359
robertphillips7761d612016-05-16 09:14:53 -0700360 bool wasAbandoned() const;
361
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400362 GrRenderTarget* accessRenderTarget() {
363 // TODO: usage of this entry point needs to be reduced and potentially eliminated
364 // since it ends the deferral of the GrRenderTarget's allocation
Brian Osman32342f02017-03-04 08:12:46 -0500365 return fRenderTargetProxy->instantiate(fContext->resourceProvider());
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400366 }
robertphillips6c7e3252016-04-27 10:47:51 -0700367
Robert Phillipsf200a902017-01-30 13:27:37 -0500368 GrSurfaceProxy* asSurfaceProxy() override { return fRenderTargetProxy.get(); }
369 const GrSurfaceProxy* asSurfaceProxy() const override { return fRenderTargetProxy.get(); }
370 sk_sp<GrSurfaceProxy> asSurfaceProxyRef() override { return fRenderTargetProxy; }
371
372 GrTextureProxy* asTextureProxy() override;
373 sk_sp<GrTextureProxy> asTextureProxyRef() override;
374
375 GrRenderTargetProxy* asRenderTargetProxy() override { return fRenderTargetProxy.get(); }
376 sk_sp<GrRenderTargetProxy> asRenderTargetProxyRef() override { return fRenderTargetProxy; }
Robert Phillipseaa86252016-11-08 13:49:39 +0000377
Robert Phillipsd46697a2017-01-25 12:10:37 -0500378 GrRenderTargetContext* asRenderTargetContext() override { return this; }
379
robertphillips391395d2016-03-02 09:26:36 -0800380 // Provides access to functions that aren't part of the public API.
Brian Osman693a5402016-10-27 15:13:22 -0400381 GrRenderTargetContextPriv priv();
382 const GrRenderTargetContextPriv priv() const;
joshualittf5883a62016-01-13 07:47:38 -0800383
Robert Phillipseaa86252016-11-08 13:49:39 +0000384 bool isWrapped_ForTesting() const;
385
joshualitt96880d92016-02-16 10:36:53 -0800386protected:
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400387 GrRenderTargetContext(GrContext*, GrDrawingManager*, sk_sp<GrRenderTargetProxy>,
Robert Phillips2c862492017-01-18 10:08:39 -0500388 sk_sp<SkColorSpace>, const SkSurfaceProps*, GrAuditTrail*,
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400389 GrSingleOwner*);
joshualitt96880d92016-02-16 10:36:53 -0800390
joshualitt96880d92016-02-16 10:36:53 -0800391 SkDEBUGCODE(void validate() const;)
392
robertphillipsea461502015-05-26 11:38:03 -0700393private:
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500394 inline GrAAType decideAAType(GrAA aa, bool allowMixedSamples = false) {
395 if (GrAA::kNo == aa) {
396 return GrAAType::kNone;
397 }
398 if (this->isUnifiedMultisampled()) {
399 return GrAAType::kMSAA;
400 }
401 if (allowMixedSamples && this->isStencilBufferMultisampled()) {
402 return GrAAType::kMixedSamples;
403 }
404 return GrAAType::kCoverage;
405 }
406
Brian Salomon649a3412017-03-09 13:50:43 -0500407 friend class GrAtlasTextBlob; // for access to add[Mesh]DrawOp
408 friend class GrStencilAndCoverTextContext; // for access to add[Mesh]DrawOp
robertphillips55fdccc2016-06-06 06:16:20 -0700409
robertphillips77a2e522015-10-17 07:43:27 -0700410 friend class GrDrawingManager; // for ctor
Brian Osman11052242016-10-27 14:47:55 -0400411 friend class GrRenderTargetContextPriv;
Brian Salomon649a3412017-03-09 13:50:43 -0500412 friend class GrSWMaskHelper; // for access to add[Mesh]DrawOp
robertphillips976f5f02016-06-03 10:59:20 -0700413
Brian Salomon42521e82016-12-07 16:44:58 -0500414 // All the path renderers currently make their own ops
Brian Salomon649a3412017-03-09 13:50:43 -0500415 friend class GrSoftwarePathRenderer; // for access to add[Mesh]DrawOp
416 friend class GrAAConvexPathRenderer; // for access to add[Mesh]DrawOp
417 friend class GrDashLinePathRenderer; // for access to add[Mesh]DrawOp
418 friend class GrAAHairLinePathRenderer; // for access to add[Mesh]DrawOp
419 friend class GrAALinearizingConvexPathRenderer; // for access to add[Mesh]DrawOp
Jim Van Verth83010462017-03-16 08:45:39 -0400420 friend class GrSmallPathRenderer; // for access to add[Mesh]DrawOp
Brian Salomon649a3412017-03-09 13:50:43 -0500421 friend class GrDefaultPathRenderer; // for access to add[Mesh]DrawOp
422 friend class GrMSAAPathRenderer; // for access to add[Mesh]DrawOp
423 friend class GrStencilAndCoverPathRenderer; // for access to add[Mesh]DrawOp
424 friend class GrTessellatingPathRenderer; // for access to add[Mesh]DrawOp
Brian Salomon5d4cd9e2017-02-09 11:16:46 -0500425 // for a unit test
Robert Phillips296b1cc2017-03-15 10:42:12 -0400426 friend void test_draw_op(GrRenderTargetContext*,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500427 sk_sp<GrFragmentProcessor>, sk_sp<GrTextureProxy>);
robertphillipsea461502015-05-26 11:38:03 -0700428
csmartdalton29df7602016-08-31 11:55:52 -0700429 void internalClear(const GrFixedClip&, const GrColor, bool canIgnoreClip);
430
Brian Salomon82f44312017-01-11 13:42:54 -0500431 // Only consumes the GrPaint if successful.
robertphillips00095892016-02-29 13:50:40 -0800432 bool drawFilledDRRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500433 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500434 GrAA,
robertphillips00095892016-02-29 13:50:40 -0800435 const SkMatrix& viewMatrix,
436 const SkRRect& origOuter,
437 const SkRRect& origInner);
438
Brian Salomon82f44312017-01-11 13:42:54 -0500439 // Only consumes the GrPaint if successful.
robertphillips44302392016-07-08 14:43:03 -0700440 bool drawFilledRect(const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500441 GrPaint&& paint,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500442 GrAA,
robertphillips44302392016-07-08 14:43:03 -0700443 const SkMatrix& viewMatrix,
444 const SkRect& rect,
445 const GrUserStencilSettings* ss);
446
447 void drawNonAAFilledRect(const GrClip&,
Brian Salomon82f44312017-01-11 13:42:54 -0500448 GrPaint&&,
robertphillips44302392016-07-08 14:43:03 -0700449 const SkMatrix& viewMatrix,
450 const SkRect& rect,
451 const SkRect* localRect,
452 const SkMatrix* localMatrix,
csmartdalton34ee0c92016-07-27 13:22:27 -0700453 const GrUserStencilSettings* ss,
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500454 GrAAType hwOrNoneAAType);
robertphillips391395d2016-03-02 09:26:36 -0800455
Brian Salomon82f44312017-01-11 13:42:54 -0500456 void internalDrawPath(
457 const GrClip&, GrPaint&&, GrAA, const SkMatrix&, const SkPath&, const GrStyle&);
robertphillipsea461502015-05-26 11:38:03 -0700458
Robert Phillipse2f7d182016-12-15 09:23:05 -0500459 bool onCopy(GrSurfaceProxy* src, const SkIRect& srcRect, const SkIPoint& dstPoint) override;
Robert Phillips2c862492017-01-18 10:08:39 -0500460 bool onReadPixels(const SkImageInfo& dstInfo, void* dstBuffer,
Robert Phillipsb726d582017-03-09 16:36:32 -0500461 size_t dstRowBytes, int x, int y, uint32_t flags) override;
Robert Phillips2c862492017-01-18 10:08:39 -0500462 bool onWritePixels(const SkImageInfo& srcInfo, const void* srcBuffer,
Robert Phillips30f9bc62017-02-22 15:28:38 -0500463 size_t srcRowBytes, int x, int y, uint32_t flags) override;
Robert Phillipse2f7d182016-12-15 09:23:05 -0500464
Brian Salomon649a3412017-03-09 13:50:43 -0500465 // These perform processing specific to Gr[Mesh]DrawOp-derived ops before recording them into
466 // 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 -0500467 // dropped (e.g., due to clipping).
Brian Salomon54d212e2017-03-21 14:22:38 -0400468 uint32_t addDrawOp(const GrClip&, std::unique_ptr<GrDrawOp>);
Brian Salomone14bd802017-04-04 15:13:25 -0400469 uint32_t addLegacyMeshDrawOp(GrPipelineBuilder&&, const GrClip&,
Brian Salomond3ccb0a2017-04-03 10:38:00 -0400470 std::unique_ptr<GrLegacyMeshDrawOp>);
robertphillips2334fb62015-06-17 05:43:33 -0700471
Brian Salomon467921e2017-03-06 16:17:12 -0500472 // Makes a copy of the dst if it is necessary for the draw and returns the texture that should
473 // be used by GrXferProcessor to access the destination color. If the texture is nullptr then
474 // a texture copy could not be made.
475 void setupDstTexture(GrRenderTarget*, const GrClip&, const SkRect& opBounds,
476 GrXferProcessor::DstTexture*);
477
478
Robert Phillipsf2361d22016-10-25 14:20:06 -0400479 GrRenderTargetOpList* getOpList();
robertphillipsa106c622015-10-16 09:07:06 -0700480
Robert Phillipsc7635fa2016-10-28 13:25:24 -0400481 sk_sp<GrRenderTargetProxy> fRenderTargetProxy;
robertphillipsa106c622015-10-16 09:07:06 -0700482
Brian Osman11052242016-10-27 14:47:55 -0400483 // In MDB-mode the GrOpList can be closed by some other renderTargetContext that has picked
Robert Phillipsf2361d22016-10-25 14:20:06 -0400484 // it up. For this reason, the GrOpList should only ever be accessed via 'getOpList'.
485 GrRenderTargetOpList* fOpList;
msarettc71a9b72016-09-16 11:01:27 -0700486 GrInstancedPipelineInfo fInstancedPipelineInfo;
robertphillips2334fb62015-06-17 05:43:33 -0700487
msarettc71a9b72016-09-16 11:01:27 -0700488 sk_sp<GrColorSpaceXform> fColorXformFromSRGB;
489 SkSurfaceProps fSurfaceProps;
Robert Phillipse305cc1f2016-12-14 12:19:05 -0500490
491 typedef GrSurfaceContext INHERITED;
robertphillipsea461502015-05-26 11:38:03 -0700492};
493
494#endif