blob: 5c3f1c9a4f8b585bc956c7d60f6a13ab3f6eb551 [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,
36 const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +000037 const SkStrokeRec& stroke,
bsalomon@google.com45a15f52012-12-10 19:10:17 +000038 DrawType drawType,
39 StencilSupport* stencilSupport) {
bsalomon@google.com30085192011-08-19 15:42:31 +000040 if (!fInit) {
41 this->init();
42 }
bsalomon@google.com45a15f52012-12-10 19:10:17 +000043 bool antiAlias = (kColorAntiAlias_DrawType == drawType ||
44 kStencilAndColorAntiAlias_DrawType == drawType);
45
46 GR_STATIC_ASSERT(GrPathRenderer::kNoSupport_StencilSupport <
47 GrPathRenderer::kStencilOnly_StencilSupport);
48 GR_STATIC_ASSERT(GrPathRenderer::kStencilOnly_StencilSupport <
49 GrPathRenderer::kNoRestriction_StencilSupport);
50 GrPathRenderer::StencilSupport minStencilSupport;
51 if (kStencilOnly_DrawType == drawType) {
52 minStencilSupport = GrPathRenderer::kStencilOnly_StencilSupport;
53 } else if (kStencilAndColor_DrawType == drawType ||
54 kStencilAndColorAntiAlias_DrawType == drawType) {
55 minStencilSupport = GrPathRenderer::kNoRestriction_StencilSupport;
56 } else {
57 minStencilSupport = GrPathRenderer::kNoSupport_StencilSupport;
58 }
59
robertphillips@google.come79f3202014-02-11 16:30:21 +000060
bsalomon@google.com30085192011-08-19 15:42:31 +000061 for (int i = 0; i < fChain.count(); ++i) {
joshualitt9853cce2014-11-17 14:22:48 -080062 if (fChain[i]->canDrawPath(target, drawState, path, stroke, antiAlias)) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +000063 if (GrPathRenderer::kNoSupport_StencilSupport != minStencilSupport) {
joshualitt9853cce2014-11-17 14:22:48 -080064 GrPathRenderer::StencilSupport support = fChain[i]->getStencilSupport(target,
65 drawState,
66 path,
67 stroke);
bsalomon@google.com45a15f52012-12-10 19:10:17 +000068 if (support < minStencilSupport) {
69 continue;
bsalomon49f085d2014-09-05 13:34:00 -070070 } else if (stencilSupport) {
bsalomon@google.com45a15f52012-12-10 19:10:17 +000071 *stencilSupport = support;
72 }
73 }
bsalomon@google.com289533a2011-10-27 12:34:25 +000074 return fChain[i];
bsalomon@google.com30085192011-08-19 15:42:31 +000075 }
76 }
bsalomon@google.com289533a2011-10-27 12:34:25 +000077 return NULL;
bsalomon@google.com30085192011-08-19 15:42:31 +000078}
79
80void GrPathRendererChain::init() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000081 SkASSERT(!fInit);
bsalomon@google.com30085192011-08-19 15:42:31 +000082 GrGpu* gpu = fOwner->getGpu();
bsalomon@google.combcce8922013-03-25 15:38:39 +000083 bool twoSided = gpu->caps()->twoSidedStencilSupport();
84 bool wrapOp = gpu->caps()->stencilWrapOpsSupport();
bsalomon@google.com45a15f52012-12-10 19:10:17 +000085 GrPathRenderer::AddPathRenderers(fOwner, this);
tomhudson@google.comc377baf2012-07-09 20:17:56 +000086 this->addPathRenderer(SkNEW_ARGS(GrDefaultPathRenderer,
87 (twoSided, wrapOp)))->unref();
bsalomon@google.com30085192011-08-19 15:42:31 +000088 fInit = true;
89}