aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkAAClip.cpp
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2014-11-13 14:39:58 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-11-13 14:39:58 -0800
commitd54d3fc82456f8789b3e4dff40faeb7b670bcf4b (patch)
tree274b6297429de7473cfbd12bf6732bea76de29db /src/core/SkAAClip.cpp
parent112e7e277702e104357f2d44742253ee1b0109ac (diff)
remove unused kLCD_MaskFormat
Diffstat (limited to 'src/core/SkAAClip.cpp')
-rw-r--r--src/core/SkAAClip.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/core/SkAAClip.cpp b/src/core/SkAAClip.cpp
index 58a16f3aff..e2c1b12d07 100644
--- a/src/core/SkAAClip.cpp
+++ b/src/core/SkAAClip.cpp
@@ -2046,6 +2046,7 @@ static void small_bzero(void* dst, size_t n) {
static inline uint8_t mergeOne(uint8_t value, unsigned alpha) {
return SkMulDiv255Round(value, alpha);
}
+
static inline uint16_t mergeOne(uint16_t value, unsigned alpha) {
unsigned r = SkGetPackedR16(value);
unsigned g = SkGetPackedG16(value);
@@ -2054,16 +2055,6 @@ static inline uint16_t mergeOne(uint16_t value, unsigned alpha) {
SkMulDiv255Round(g, alpha),
SkMulDiv255Round(b, alpha));
}
-static inline SkPMColor mergeOne(SkPMColor value, unsigned alpha) {
- unsigned a = SkGetPackedA32(value);
- unsigned r = SkGetPackedR32(value);
- unsigned g = SkGetPackedG32(value);
- unsigned b = SkGetPackedB32(value);
- return SkPackARGB32(SkMulDiv255Round(a, alpha),
- SkMulDiv255Round(r, alpha),
- SkMulDiv255Round(g, alpha),
- SkMulDiv255Round(b, alpha));
-}
template <typename T> void mergeT(const T* SK_RESTRICT src, int srcN,
const uint8_t* SK_RESTRICT row, int rowN,
@@ -2111,10 +2102,6 @@ static MergeAAProc find_merge_aa_proc(SkMask::Format format) {
void (*proc16)(const uint16_t*, int, const uint8_t*, int, uint16_t*) = mergeT;
return (MergeAAProc)proc16;
}
- case SkMask::kLCD32_Format: {
- void (*proc32)(const SkPMColor*, int, const uint8_t*, int, SkPMColor*) = mergeT;
- return (MergeAAProc)proc32;
- }
default:
SkDEBUGFAIL("unsupported");
return NULL;