aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBlitMask.h
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2015-12-18 08:50:08 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-12-18 08:50:08 -0800
commit1e810b3cc290b5b5d95c7789661271256288977c (patch)
tree0b8931b4bf33449e5c32006d58cd33b8d3cf034f /src/core/SkBlitMask.h
parent31d46df1b0adf230c58b59c918d2d2ba64adf1ad (diff)
Revert of Fix UB function problems for shaders and mask. (patchset #3 id:40001 of https://codereview.chromium.org/1530743002/ )
Reason for revert: Breaks man gold tests. Original issue's description: > Fix UB function problems for shaders and mask. > > BUG=skia:4634 > GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1530743002 > > Committed: https://skia.googlesource.com/skia/+/dafd044e4aea529f88d899247678d4549f776388 TBR=mtklein@google.com,reed@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia:4634 Review URL: https://codereview.chromium.org/1534243002
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 b53ff7dfd8..f36f9f3d82 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)(SkPMColor* dst, const void* mask,
+ typedef void (*RowProc)(void* dst, const void* mask,
const SkPMColor* src, int width);
/**