joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
csmartdalton | 02fa32c | 2016-08-19 13:29:27 -0700 | [diff] [blame] | 11 | #include "SkRect.h" |
| 12 | #include "SkRRect.h" |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 13 | |
csmartdalton | 28341fa | 2016-08-17 10:00:21 -0700 | [diff] [blame] | 14 | class GrAppliedClip; |
csmartdalton | 02fa32c | 2016-08-19 13:29:27 -0700 | [diff] [blame] | 15 | class GrContext; |
robertphillips | 976f5f0 | 2016-06-03 10:59:20 -0700 | [diff] [blame] | 16 | class GrDrawContext; |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 17 | |
| 18 | /** |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 19 | * GrClip is an abstract base class for applying a clip. It constructs a clip mask if necessary, and |
| 20 | * fills out a GrAppliedClip instructing the caller on how to set up the draw state. |
| 21 | */ |
| 22 | class GrClip { |
| 23 | public: |
| 24 | virtual bool quickContains(const SkRect&) const = 0; |
bsalomon | 7f0d9f3 | 2016-08-15 14:49:10 -0700 | [diff] [blame] | 25 | virtual bool quickContains(const SkRRect& rrect) const { |
| 26 | return this->quickContains(rrect.getBounds()); |
| 27 | } |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 28 | virtual void getConservativeBounds(int width, int height, SkIRect* devResult, |
| 29 | bool* isIntersectionOfRects = nullptr) const = 0; |
csmartdalton | d211e78 | 2016-08-15 11:17:19 -0700 | [diff] [blame] | 30 | virtual bool apply(GrContext*, GrDrawContext*, bool useHWAA, bool hasUserStencilSettings, |
robertphillips | 59cf61a | 2016-07-13 09:18:21 -0700 | [diff] [blame] | 31 | GrAppliedClip* out) const = 0; |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 32 | |
| 33 | virtual ~GrClip() {} |
csmartdalton | 97f6cd5 | 2016-07-13 13:37:08 -0700 | [diff] [blame] | 34 | |
csmartdalton | 97f6cd5 | 2016-07-13 13:37:08 -0700 | [diff] [blame] | 35 | /** |
bsalomon | cb31e51 | 2016-08-26 10:48:19 -0700 | [diff] [blame] | 36 | * This method quickly and conservatively determines whether the entire clip is equivalent to |
| 37 | * intersection with a rrect. This will only return true if the rrect does not fully contain |
| 38 | * the render target bounds. Moreover, the returned rrect need not be contained by the render |
| 39 | * target bounds. We assume all draws will be implicitly clipped by the render target bounds. |
| 40 | * |
| 41 | * @param rtBounds The bounds of the render target that the clip will be applied to. |
| 42 | * @param rrect If return is true rrect will contain the rrect equivalent to the clip within |
| 43 | * rtBounds. |
| 44 | * @param aa If return is true aa will indicate whether the rrect clip is antialiased. |
| 45 | * @return true if the clip is equivalent to a single rrect, false otherwise. |
| 46 | * |
| 47 | */ |
| 48 | virtual bool isRRect(const SkRect& rtBounds, SkRRect* rrect, bool* aa) const = 0; |
| 49 | |
| 50 | /** |
csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 51 | * This is the maximum distance that a draw may extend beyond a clip's boundary and still count |
| 52 | * count as "on the other side". We leave some slack because floating point rounding error is |
| 53 | * likely to blame. The rationale for 1e-3 is that in the coverage case (and barring unexpected |
| 54 | * rounding), as long as coverage stays within 0.5 * 1/256 of its intended value it shouldn't |
| 55 | * have any effect on the final pixel values. |
csmartdalton | 97f6cd5 | 2016-07-13 13:37:08 -0700 | [diff] [blame] | 56 | */ |
csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 57 | constexpr static SkScalar kBoundsTolerance = 1e-3f; |
| 58 | |
| 59 | /** |
| 60 | * Returns true if the given query bounds count as entirely inside the clip. |
| 61 | * |
| 62 | * @param innerClipBounds device-space rect contained by the clip (SkRect or SkIRect). |
| 63 | * @param queryBounds device-space bounds of the query region. |
| 64 | */ |
| 65 | template<typename TRect> constexpr static bool IsInsideClip(const TRect& innerClipBounds, |
| 66 | const SkRect& queryBounds) { |
csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 67 | return innerClipBounds.fRight - innerClipBounds.fLeft > kBoundsTolerance && |
| 68 | innerClipBounds.fBottom - innerClipBounds.fTop > kBoundsTolerance && |
| 69 | innerClipBounds.fLeft < queryBounds.fLeft + kBoundsTolerance && |
| 70 | innerClipBounds.fTop < queryBounds.fTop + kBoundsTolerance && |
| 71 | innerClipBounds.fRight > queryBounds.fRight - kBoundsTolerance && |
| 72 | innerClipBounds.fBottom > queryBounds.fBottom - kBoundsTolerance; |
csmartdalton | 97f6cd5 | 2016-07-13 13:37:08 -0700 | [diff] [blame] | 73 | } |
| 74 | |
csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 75 | /** |
| 76 | * Returns true if the given query bounds count as entirely outside the clip. |
| 77 | * |
| 78 | * @param outerClipBounds device-space rect that contains the clip (SkRect or SkIRect). |
| 79 | * @param queryBounds device-space bounds of the query region. |
| 80 | */ |
| 81 | template<typename TRect> constexpr static bool IsOutsideClip(const TRect& outerClipBounds, |
| 82 | const SkRect& queryBounds) { |
csmartdalton | 77f2fae | 2016-08-08 09:55:06 -0700 | [diff] [blame] | 83 | return outerClipBounds.fRight - outerClipBounds.fLeft <= kBoundsTolerance || |
| 84 | outerClipBounds.fBottom - outerClipBounds.fTop <= kBoundsTolerance || |
| 85 | outerClipBounds.fLeft >= queryBounds.fRight - kBoundsTolerance || |
| 86 | outerClipBounds.fTop >= queryBounds.fBottom - kBoundsTolerance || |
| 87 | outerClipBounds.fRight <= queryBounds.fLeft + kBoundsTolerance || |
| 88 | outerClipBounds.fBottom <= queryBounds.fTop + kBoundsTolerance; |
csmartdalton | cbecb08 | 2016-07-22 08:59:08 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Returns the minimal integer rect that counts as containing a given set of bounds. |
| 93 | */ |
| 94 | static SkIRect GetPixelIBounds(const SkRect& bounds) { |
| 95 | return SkIRect::MakeLTRB(SkScalarFloorToInt(bounds.fLeft + kBoundsTolerance), |
| 96 | SkScalarFloorToInt(bounds.fTop + kBoundsTolerance), |
| 97 | SkScalarCeilToInt(bounds.fRight - kBoundsTolerance), |
| 98 | SkScalarCeilToInt(bounds.fBottom - kBoundsTolerance)); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Returns the minimal pixel-aligned rect that counts as containing a given set of bounds. |
| 103 | */ |
| 104 | static SkRect GetPixelBounds(const SkRect& bounds) { |
| 105 | return SkRect::MakeLTRB(SkScalarFloorToScalar(bounds.fLeft + kBoundsTolerance), |
| 106 | SkScalarFloorToScalar(bounds.fTop + kBoundsTolerance), |
| 107 | SkScalarCeilToScalar(bounds.fRight - kBoundsTolerance), |
| 108 | SkScalarCeilToScalar(bounds.fBottom - kBoundsTolerance)); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Returns true if the given rect counts as aligned with pixel boundaries. |
| 113 | */ |
| 114 | static bool IsPixelAligned(const SkRect& rect) { |
| 115 | return SkScalarAbs(SkScalarRoundToScalar(rect.fLeft) - rect.fLeft) <= kBoundsTolerance && |
| 116 | SkScalarAbs(SkScalarRoundToScalar(rect.fTop) - rect.fTop) <= kBoundsTolerance && |
| 117 | SkScalarAbs(SkScalarRoundToScalar(rect.fRight) - rect.fRight) <= kBoundsTolerance && |
| 118 | SkScalarAbs(SkScalarRoundToScalar(rect.fBottom) - rect.fBottom) <= kBoundsTolerance; |
| 119 | } |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | /** |
| 123 | * Specialized implementation for no clip. |
| 124 | */ |
| 125 | class GrNoClip final : public GrClip { |
| 126 | private: |
csmartdalton | 02fa32c | 2016-08-19 13:29:27 -0700 | [diff] [blame] | 127 | bool quickContains(const SkRect&) const final { |
| 128 | return true; |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 129 | } |
lsalzman | 9d2b0fe | 2016-10-10 15:36:24 -0700 | [diff] [blame^] | 130 | bool quickContains(const SkRRect&) const final { |
| 131 | return true; |
| 132 | } |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 133 | void getConservativeBounds(int width, int height, SkIRect* devResult, |
csmartdalton | 02fa32c | 2016-08-19 13:29:27 -0700 | [diff] [blame] | 134 | bool* isIntersectionOfRects) const final { |
| 135 | devResult->setXYWH(0, 0, width, height); |
| 136 | if (isIntersectionOfRects) { |
| 137 | *isIntersectionOfRects = true; |
| 138 | } |
| 139 | } |
| 140 | bool apply(GrContext*, GrDrawContext*, bool, bool, GrAppliedClip*) const final { |
| 141 | return true; |
| 142 | } |
Mike Klein | fc6c37b | 2016-09-27 09:34:10 -0400 | [diff] [blame] | 143 | bool isRRect(const SkRect&, SkRRect*, bool*) const override { return false; } |
cdalton | 846c051 | 2016-05-13 10:25:00 -0700 | [diff] [blame] | 144 | }; |
| 145 | |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 146 | #endif |