aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2016-04-28 09:31:31 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-04-28 09:31:31 -0700
commitd77ac7792405814fac3fdf229dea348dede650f1 (patch)
tree7d92ebe859db3a08667f22f8ad64d64b4aa5a5e9 /include
parent5e410b4a68d11a06c331139905171952ef535cf8 (diff)
remove (now unused) SkDivBits
Diffstat (limited to 'include')
-rw-r--r--include/core/SkMath.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/core/SkMath.h b/include/core/SkMath.h
index abb685f6da..799939039c 100644
--- a/include/core/SkMath.h
+++ b/include/core/SkMath.h
@@ -53,13 +53,6 @@ static inline int32_t SkMulDiv(int32_t numer1, int32_t numer2, int32_t denom) {
}
/**
- * Computes (numer1 << shift) / denom in full 64 intermediate precision.
- * It is an error for denom to be 0. There is no special handling if
- * the result overflows 32bits.
- */
-int32_t SkDivBits(int32_t numer, int32_t denom, int shift);
-
-/**
* Return the integer square root of value, with a bias of bitBias
*/
int32_t SkSqrtBits(int32_t value, int bitBias);