Index: src/core/SkQuadClipper.cpp |
diff --git a/src/core/SkQuadClipper.cpp b/src/core/SkQuadClipper.cpp |
index a67a23f939947a5aa077842f77f4dbdf7b4bca4e..fcde929ea7e544685a18a776f59e9f44b919e5ca 100644 |
--- a/src/core/SkQuadClipper.cpp |
+++ b/src/core/SkQuadClipper.cpp |
@@ -1,4 +1,3 @@ |
- |
/* |
* Copyright 2009 The Android Open Source Project |
* |
@@ -6,22 +5,9 @@ |
* found in the LICENSE file. |
*/ |
- |
#include "SkQuadClipper.h" |
#include "SkGeometry.h" |
-static inline void clamp_le(SkScalar& value, SkScalar max) { |
- if (value > max) { |
- value = max; |
- } |
-} |
- |
-static inline void clamp_ge(SkScalar& value, SkScalar min) { |
- if (value < min) { |
- value = min; |
- } |
-} |
- |
SkQuadClipper::SkQuadClipper() { |
fClip.setEmpty(); |
} |