aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codec/SkMaskSwizzler.h
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-01-11 07:23:23 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-11 07:23:23 -0800
commita4970dc973459d2607ce80623452bf8470adf6f1 (patch)
treedf503260bfaa7d0a736daa93c727a03d0802adc3 /src/codec/SkMaskSwizzler.h
parentb512aaa5c808bcb1336c147682657882ee54e652 (diff)
Delete reallyHasAlpha() from SkCodec
Diffstat (limited to 'src/codec/SkMaskSwizzler.h')
-rw-r--r--src/codec/SkMaskSwizzler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codec/SkMaskSwizzler.h b/src/codec/SkMaskSwizzler.h
index e5da723ca5..1dc1918f49 100644
--- a/src/codec/SkMaskSwizzler.h
+++ b/src/codec/SkMaskSwizzler.h
@@ -34,7 +34,7 @@ public:
/*
* Swizzle a row
*/
- SkSwizzler::ResultAlpha swizzle(void* dst, const uint8_t* SK_RESTRICT src);
+ void swizzle(void* dst, const uint8_t* SK_RESTRICT src);
/**
* Implement fill using a custom width.
@@ -50,7 +50,7 @@ private:
/*
* Row procedure used for swizzle
*/
- typedef SkSwizzler::ResultAlpha (*RowProc)(void* dstRow, const uint8_t* srcRow, int width,
+ typedef void (*RowProc)(void* dstRow, const uint8_t* srcRow, int width,
SkMasks* masks, uint32_t startX, uint32_t sampleX);
SkMaskSwizzler(SkMasks* masks, RowProc proc, int subsetWidth, int srcOffset);