blob: 8788374d71d490057cc507cbef739b262cd92232 [file] [log] [blame]
bsalomon@google.com45a15f52012-12-10 19:10:17 +00001/*
2 * 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.
6 */
7
bsalomon@google.com45a15f52012-12-10 19:10:17 +00008#ifndef GrPathRendererChain_DEFINED
9#define GrPathRendererChain_DEFINED
10
robertphillips68737822015-10-29 12:12:21 -070011#include "GrPathRenderer.h"
12
robertphillips13391dd2015-10-30 05:15:11 -070013#include "SkTypes.h"
bsalomon@google.com45a15f52012-12-10 19:10:17 +000014#include "SkTArray.h"
15
16class GrContext;
bsalomon@google.com45a15f52012-12-10 19:10:17 +000017
18/**
19 * Keeps track of an ordered list of path renderers. When a path needs to be
20 * drawn this list is scanned to find the most preferred renderer. To add your
21 * path renderer to the list implement the GrPathRenderer::AddPathRenderers
22 * function.
23 */
robertphillips13391dd2015-10-30 05:15:11 -070024class GrPathRendererChain : public SkNoncopyable {
bsalomon@google.com45a15f52012-12-10 19:10:17 +000025public:
bsalomon6b2552f2016-09-15 13:50:26 -070026 struct Options {
27 bool fDisableDistanceFieldRenderer = false;
bsalomon39ef7fb2016-09-21 11:16:05 -070028 bool fAllowPathMaskCaching = false;
29 bool fDisableAllPathRenderers = false;
bsalomon6b2552f2016-09-15 13:50:26 -070030 };
31 GrPathRendererChain(GrContext* context, const Options&);
bsalomon@google.com45a15f52012-12-10 19:10:17 +000032
33 ~GrPathRendererChain();
34
bsalomon@google.com45a15f52012-12-10 19:10:17 +000035 /** Documents how the caller plans to use a GrPathRenderer to draw a path. It affects the PR
36 returned by getPathRenderer */
37 enum DrawType {
38 kColor_DrawType, // draw to the color buffer, no AA
39 kColorAntiAlias_DrawType, // draw to color buffer, with partial coverage AA
40 kStencilOnly_DrawType, // draw just to the stencil buffer
41 kStencilAndColor_DrawType, // draw the stencil and color buffer, no AA
42 kStencilAndColorAntiAlias_DrawType // draw the stencil and color buffer, with partial
43 // coverage AA.
44 };
robertphillips68737822015-10-29 12:12:21 -070045
bsalomon@google.com45a15f52012-12-10 19:10:17 +000046 /** Returns a GrPathRenderer compatible with the request if one is available. If the caller
47 is drawing the path to the stencil buffer then stencilSupport can be used to determine
48 whether the path can be rendered with arbitrary stencil rules or not. See comments on
skia.committer@gmail.comc7b4be72012-12-11 02:01:20 +000049 StencilSupport in GrPathRenderer.h. */
robertphillips68737822015-10-29 12:12:21 -070050 GrPathRenderer* getPathRenderer(const GrPathRenderer::CanDrawPathArgs& args,
bsalomon@google.com45a15f52012-12-10 19:10:17 +000051 DrawType drawType,
robertphillips68737822015-10-29 12:12:21 -070052 GrPathRenderer::StencilSupport* stencilSupport);
bsalomon@google.com45a15f52012-12-10 19:10:17 +000053
54private:
robertphillips68737822015-10-29 12:12:21 -070055 // takes a ref and unrefs in destructor
56 GrPathRenderer* addPathRenderer(GrPathRenderer* pr);
57
bsalomon@google.com45a15f52012-12-10 19:10:17 +000058 enum {
59 kPreAllocCount = 8,
60 };
bsalomon@google.com45a15f52012-12-10 19:10:17 +000061 SkSTArray<kPreAllocCount, GrPathRenderer*, true> fChain;
bsalomon@google.com45a15f52012-12-10 19:10:17 +000062};
63
bsalomon@google.com45a15f52012-12-10 19:10:17 +000064#endif