blob: 0ba9364cd4f9dfac9f2b1046ff3a0faaa72d5068 [file] [log] [blame]
bsalomon@google.com30085192011-08-19 15:42:31 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9
10#include "GrPathRendererChain.h"
11
12#include "GrContext.h"
13#include "GrDefaultPathRenderer.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000014#include "GrDrawTargetCaps.h"
bsalomon@google.com30085192011-08-19 15:42:31 +000015#include "GrGpu.h"
16
bsalomon@google.com45a15f52012-12-10 19:10:17 +000017GrPathRendererChain::GrPathRendererChain(GrContext* context)
bsalomon@google.com30085192011-08-19 15:42:31 +000018 : fInit(false)
bsalomon@google.com45a15f52012-12-10 19:10:17 +000019 , fOwner(context) {
bsalomon@google.com30085192011-08-19 15:42:31 +000020}
bsalomon@google.comb27a8d52012-03-02 15:08:16 +000021
bsalomon@google.com30085192011-08-19 15:42:31 +000022GrPathRendererChain::~GrPathRendererChain() {
23 for (int i = 0; i < fChain.count(); ++i) {
24 fChain[i]->unref();
25 }
26}
27
28GrPathRenderer* GrPathRendererChain::addPathRenderer(GrPathRenderer* pr) {
29 fChain.push_back() = pr;
30 pr->ref();
31 return pr;
32}
33
joshualitt9853cce2014-11-17 14:22:48 -080034GrPathRenderer* GrPathRendererChain::getPathRenderer(const GrDrawTarget* target,
35 const GrDrawState* drawState,
joshualitt8059eb92014-12-29 15:10:07 -080036 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -080037 const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +000038 const SkStrokeRec& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +000039 DrawType drawType,
40 StencilSupport* stencilSupport) {
bsalomon@google.com30085192011-08-19 15:42:31 +000041 if (!fInit) {
42 this->init();
43 }
bsalomon@google.com45a15f52012-12-10 19:10:17 +000044 bool antiAlias = (kColorAntiAlias_DrawType == drawType ||
45 kStencilAndColorAntiAlias_DrawType == drawType);
46
47 GR_STATIC_ASSERT(GrPathRenderer::kNoSupport_StencilSupport <
48 GrPathRenderer::kStencilOnly_StencilSupport);
49 GR_STATIC_ASSERT(GrPathRenderer::kStencilOnly_StencilSupport <
50 GrPathRenderer::kNoRestriction_StencilSupport);
51 GrPathRenderer::StencilSupport minStencilSupport;
52 if (kStencilOnly_DrawType == drawType) {
53 minStencilSupport = GrPathRenderer::kStencilOnly_StencilSupport;
54 } else if (kStencilAndColor_DrawType == drawType ||
55 kStencilAndColorAntiAlias_DrawType == drawType) {
56 minStencilSupport = GrPathRenderer::kNoRestriction_StencilSupport;
57 } else {
58 minStencilSupport = GrPathRenderer::kNoSupport_StencilSupport;
59 }
60
robertphillips@google.come79f3202014-02-11 16:30:21 +000061
bsalomon@google.com30085192011-08-19 15:42:31 +000062 for (int i = 0; i < fChain.count(); ++i) {
joshualitt8059eb92014-12-29 15:10:07 -080063 if (fChain[i]->canDrawPath(target, drawState, viewMatrix, path, stroke, antiAlias)) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +000064 if (GrPathRenderer::kNoSupport_StencilSupport != minStencilSupport) {
joshualitt9853cce2014-11-17 14:22:48 -080065 GrPathRenderer::StencilSupport support = fChain[i]->getStencilSupport(target,
66 drawState,
67 path,
68 stroke);
bsalomon@google.com45a15f52012-12-10 19:10:17 +000069 if (support < minStencilSupport) {
70 continue;
bsalomon49f085d2014-09-05 13:34:00 -070071 } else if (stencilSupport) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +000072 *stencilSupport = support;
73 }
74 }
bsalomon@google.com289533a2011-10-27 12:34:25 +000075 return fChain[i];
bsalomon@google.com30085192011-08-19 15:42:31 +000076 }
77 }
bsalomon@google.com289533a2011-10-27 12:34:25 +000078 return NULL;
bsalomon@google.com30085192011-08-19 15:42:31 +000079}
80
81void GrPathRendererChain::init() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000082 SkASSERT(!fInit);
bsalomon@google.com30085192011-08-19 15:42:31 +000083 GrGpu* gpu = fOwner->getGpu();
bsalomon@google.combcce8922013-03-25 15:38:39 +000084 bool twoSided = gpu->caps()->twoSidedStencilSupport();
85 bool wrapOp = gpu->caps()->stencilWrapOpsSupport();
bsalomon@google.com45a15f52012-12-10 19:10:17 +000086 GrPathRenderer::AddPathRenderers(fOwner, this);
tomhudson@google.comc377baf2012-07-09 20:17:56 +000087 this->addPathRenderer(SkNEW_ARGS(GrDefaultPathRenderer,
88 (twoSided, wrapOp)))->unref();
bsalomon@google.com30085192011-08-19 15:42:31 +000089 fInit = true;
90}