aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBlitMask.h
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2015-12-18 09:52:15 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-12-18 09:52:15 -0800
commitc7a784cc8cb1c1dfcd39a32b2170ffe547904e9f (patch)
treea4ae39c648dc78dd2562730828e2996d2b03de99 /src/core/SkBlitMask.h
parent3e6be16e6d4dda6a27f0e1dbfe7c87fecfbf5577 (diff)
Fix UB function problems for shaders and mask.
Diffstat (limited to 'src/core/SkBlitMask.h')
-rw-r--r--src/core/SkBlitMask.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkBlitMask.h b/src/core/SkBlitMask.h
index f36f9f3d82..b53ff7dfd8 100644
--- a/src/core/SkBlitMask.h
+++ b/src/core/SkBlitMask.h
@@ -44,7 +44,7 @@ public:
* onto a row of dst colors. The RowFactory that returns this function ptr
* will have been told the formats for the mask and the dst.
*/
- typedef void (*RowProc)(void* dst, const void* mask,
+ typedef void (*RowProc)(SkPMColor* dst, const void* mask,
const SkPMColor* src, int width);
/**