aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkMathPriv.h
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-07 21:48:01 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-07 21:48:01 +0000
commit586b6a5e60a1e5c0e675cc42c9a01341c688efa4 (patch)
tree820920fd04068aed7daac7aa3cf03662104632c1 /src/core/SkMathPriv.h
parent686c04c653107721a7fca512bc8efd63b879ac76 (diff)
move SkSqrt32 back into SkMath.h -- was referenced in SkEmbossMask.cpp
git-svn-id: http://skia.googlecode.com/svn/trunk@5000 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkMathPriv.h')
-rw-r--r--src/core/SkMathPriv.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/SkMathPriv.h b/src/core/SkMathPriv.h
index 055acc4ebd..6fac1248a9 100644
--- a/src/core/SkMathPriv.h
+++ b/src/core/SkMathPriv.h
@@ -53,10 +53,6 @@ static inline unsigned SkClampUMax(unsigned value, unsigned max) {
*/
int32_t SkMulShift(int32_t a, int32_t b, unsigned shift);
-/** Return the integer square root of n, treated as a SkFixed (16.16)
- */
-#define SkSqrt32(n) SkSqrtBits(n, 15)
-
/** Return the integer cube root of value, with a bias of bitBias
*/
int32_t SkCubeRootBits(int32_t value, int bitBias);