Index: include/effects/SkModeColorFilter.h |
diff --git a/include/effects/SkModeColorFilter.h b/include/effects/SkModeColorFilter.h |
index 6d0d3ccaa0c9d176040c30fb62a42bfe29e45eea..4bb7a43db4a16ae976f9d152e634ae5aec64589b 100644 |
--- a/include/effects/SkModeColorFilter.h |
+++ b/include/effects/SkModeColorFilter.h |
@@ -28,6 +28,7 @@ |
bool asColorMode(SkColor*, SkXfermode::Mode*) const SK_OVERRIDE; |
uint32_t getFlags() const SK_OVERRIDE; |
void filterSpan(const SkPMColor shader[], int count, SkPMColor result[]) const SK_OVERRIDE; |
+ void filterSpan16(const uint16_t shader[], int count, uint16_t result[]) const SK_OVERRIDE; |
#ifndef SK_IGNORE_TO_STRING |
void toString(SkString* str) const SK_OVERRIDE { |
@@ -52,6 +53,7 @@ |
// cache |
SkPMColor fPMColor; |
SkXfermodeProc fProc; |
+ SkXfermodeProc16 fProc16; |
void updateCache(); |