blob: 9bf2da205e315efca4ca5e08bc2b76a49226c306 [file] [log] [blame]
joshualitt44701df2015-02-23 14:44:57 -08001/*
2 * Copyright 2010 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
8#ifndef GrClip_DEFINED
9#define GrClip_DEFINED
10
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050011#include "GrTypes.h"
csmartdalton02fa32c2016-08-19 13:29:27 -070012#include "SkRect.h"
13#include "SkRRect.h"
joshualitt44701df2015-02-23 14:44:57 -080014
csmartdalton28341fa2016-08-17 10:00:21 -070015class GrAppliedClip;
csmartdalton02fa32c2016-08-19 13:29:27 -070016class GrContext;
Brian Osman11052242016-10-27 14:47:55 -040017class GrRenderTargetContext;
joshualitt44701df2015-02-23 14:44:57 -080018
19/**
cdalton846c0512016-05-13 10:25:00 -070020 * GrClip is an abstract base class for applying a clip. It constructs a clip mask if necessary, and
21 * fills out a GrAppliedClip instructing the caller on how to set up the draw state.
22 */
23class GrClip {
24public:
25 virtual bool quickContains(const SkRect&) const = 0;
bsalomon7f0d9f32016-08-15 14:49:10 -070026 virtual bool quickContains(const SkRRect& rrect) const {
27 return this->quickContains(rrect.getBounds());
28 }
cdalton846c0512016-05-13 10:25:00 -070029 virtual void getConservativeBounds(int width, int height, SkIRect* devResult,
30 bool* isIntersectionOfRects = nullptr) const = 0;
Brian Osman11052242016-10-27 14:47:55 -040031 virtual bool apply(GrContext*, GrRenderTargetContext*, bool useHWAA,
32 bool hasUserStencilSettings, GrAppliedClip* out) const = 0;
cdalton846c0512016-05-13 10:25:00 -070033
34 virtual ~GrClip() {}
csmartdalton97f6cd52016-07-13 13:37:08 -070035
csmartdalton97f6cd52016-07-13 13:37:08 -070036 /**
bsalomoncb31e512016-08-26 10:48:19 -070037 * This method quickly and conservatively determines whether the entire clip is equivalent to
38 * intersection with a rrect. This will only return true if the rrect does not fully contain
39 * the render target bounds. Moreover, the returned rrect need not be contained by the render
40 * target bounds. We assume all draws will be implicitly clipped by the render target bounds.
41 *
42 * @param rtBounds The bounds of the render target that the clip will be applied to.
43 * @param rrect If return is true rrect will contain the rrect equivalent to the clip within
44 * rtBounds.
45 * @param aa If return is true aa will indicate whether the rrect clip is antialiased.
46 * @return true if the clip is equivalent to a single rrect, false otherwise.
47 *
48 */
Brian Salomon0e8fc8b2016-12-09 15:10:07 -050049 virtual bool isRRect(const SkRect& rtBounds, SkRRect* rrect, GrAA* aa) const = 0;
bsalomoncb31e512016-08-26 10:48:19 -070050
51 /**
csmartdaltoncbecb082016-07-22 08:59:08 -070052 * This is the maximum distance that a draw may extend beyond a clip's boundary and still count
53 * count as "on the other side". We leave some slack because floating point rounding error is
54 * likely to blame. The rationale for 1e-3 is that in the coverage case (and barring unexpected
55 * rounding), as long as coverage stays within 0.5 * 1/256 of its intended value it shouldn't
56 * have any effect on the final pixel values.
csmartdalton97f6cd52016-07-13 13:37:08 -070057 */
csmartdaltoncbecb082016-07-22 08:59:08 -070058 constexpr static SkScalar kBoundsTolerance = 1e-3f;
59
60 /**
61 * Returns true if the given query bounds count as entirely inside the clip.
62 *
63 * @param innerClipBounds device-space rect contained by the clip (SkRect or SkIRect).
64 * @param queryBounds device-space bounds of the query region.
65 */
66 template<typename TRect> constexpr static bool IsInsideClip(const TRect& innerClipBounds,
67 const SkRect& queryBounds) {
csmartdalton77f2fae2016-08-08 09:55:06 -070068 return innerClipBounds.fRight - innerClipBounds.fLeft > kBoundsTolerance &&
69 innerClipBounds.fBottom - innerClipBounds.fTop > kBoundsTolerance &&
70 innerClipBounds.fLeft < queryBounds.fLeft + kBoundsTolerance &&
71 innerClipBounds.fTop < queryBounds.fTop + kBoundsTolerance &&
72 innerClipBounds.fRight > queryBounds.fRight - kBoundsTolerance &&
73 innerClipBounds.fBottom > queryBounds.fBottom - kBoundsTolerance;
csmartdalton97f6cd52016-07-13 13:37:08 -070074 }
75
csmartdaltoncbecb082016-07-22 08:59:08 -070076 /**
77 * Returns true if the given query bounds count as entirely outside the clip.
78 *
79 * @param outerClipBounds device-space rect that contains the clip (SkRect or SkIRect).
80 * @param queryBounds device-space bounds of the query region.
81 */
82 template<typename TRect> constexpr static bool IsOutsideClip(const TRect& outerClipBounds,
83 const SkRect& queryBounds) {
csmartdalton77f2fae2016-08-08 09:55:06 -070084 return outerClipBounds.fRight - outerClipBounds.fLeft <= kBoundsTolerance ||
85 outerClipBounds.fBottom - outerClipBounds.fTop <= kBoundsTolerance ||
86 outerClipBounds.fLeft >= queryBounds.fRight - kBoundsTolerance ||
87 outerClipBounds.fTop >= queryBounds.fBottom - kBoundsTolerance ||
88 outerClipBounds.fRight <= queryBounds.fLeft + kBoundsTolerance ||
89 outerClipBounds.fBottom <= queryBounds.fTop + kBoundsTolerance;
csmartdaltoncbecb082016-07-22 08:59:08 -070090 }
91
92 /**
93 * Returns the minimal integer rect that counts as containing a given set of bounds.
94 */
95 static SkIRect GetPixelIBounds(const SkRect& bounds) {
96 return SkIRect::MakeLTRB(SkScalarFloorToInt(bounds.fLeft + kBoundsTolerance),
97 SkScalarFloorToInt(bounds.fTop + kBoundsTolerance),
98 SkScalarCeilToInt(bounds.fRight - kBoundsTolerance),
99 SkScalarCeilToInt(bounds.fBottom - kBoundsTolerance));
100 }
101
102 /**
103 * Returns the minimal pixel-aligned rect that counts as containing a given set of bounds.
104 */
105 static SkRect GetPixelBounds(const SkRect& bounds) {
106 return SkRect::MakeLTRB(SkScalarFloorToScalar(bounds.fLeft + kBoundsTolerance),
107 SkScalarFloorToScalar(bounds.fTop + kBoundsTolerance),
108 SkScalarCeilToScalar(bounds.fRight - kBoundsTolerance),
109 SkScalarCeilToScalar(bounds.fBottom - kBoundsTolerance));
110 }
111
112 /**
113 * Returns true if the given rect counts as aligned with pixel boundaries.
114 */
115 static bool IsPixelAligned(const SkRect& rect) {
116 return SkScalarAbs(SkScalarRoundToScalar(rect.fLeft) - rect.fLeft) <= kBoundsTolerance &&
117 SkScalarAbs(SkScalarRoundToScalar(rect.fTop) - rect.fTop) <= kBoundsTolerance &&
118 SkScalarAbs(SkScalarRoundToScalar(rect.fRight) - rect.fRight) <= kBoundsTolerance &&
119 SkScalarAbs(SkScalarRoundToScalar(rect.fBottom) - rect.fBottom) <= kBoundsTolerance;
120 }
cdalton846c0512016-05-13 10:25:00 -0700121};
122
123/**
124 * Specialized implementation for no clip.
125 */
126class GrNoClip final : public GrClip {
127private:
csmartdalton02fa32c2016-08-19 13:29:27 -0700128 bool quickContains(const SkRect&) const final {
129 return true;
cdalton846c0512016-05-13 10:25:00 -0700130 }
lsalzman9d2b0fe2016-10-10 15:36:24 -0700131 bool quickContains(const SkRRect&) const final {
132 return true;
133 }
cdalton846c0512016-05-13 10:25:00 -0700134 void getConservativeBounds(int width, int height, SkIRect* devResult,
csmartdalton02fa32c2016-08-19 13:29:27 -0700135 bool* isIntersectionOfRects) const final {
136 devResult->setXYWH(0, 0, width, height);
137 if (isIntersectionOfRects) {
138 *isIntersectionOfRects = true;
139 }
140 }
Brian Osman11052242016-10-27 14:47:55 -0400141 bool apply(GrContext*, GrRenderTargetContext*, bool, bool, GrAppliedClip*) const final {
csmartdalton02fa32c2016-08-19 13:29:27 -0700142 return true;
143 }
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500144 bool isRRect(const SkRect&, SkRRect*, GrAA*) const override { return false; }
cdalton846c0512016-05-13 10:25:00 -0700145};
146
joshualitt44701df2015-02-23 14:44:57 -0800147#endif