Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

Unified Diff: include/core/SkShader.h

Issue 1530743002: Fix UB function problems for shaders and mask. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix externals Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/core/SkBitmapProcShader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkShader.h
diff --git a/include/core/SkShader.h b/include/core/SkShader.h
index 34cb648022ca25593943ba054f7d196ad2c26bc2..e81bccfbf37186242db49460db38876c15fd42d1 100644
--- a/include/core/SkShader.h
+++ b/include/core/SkShader.h
@@ -149,7 +149,7 @@ public:
*/
virtual void shadeSpan(int x, int y, SkPMColor[], int count) = 0;
- typedef void (*ShadeProc)(void* ctx, int x, int y, SkPMColor[], int count);
+ typedef void (*ShadeProc)(const void* ctx, int x, int y, SkPMColor[], int count);
reed1 2015/12/17 18:12:14 Its seems odd to me that this is declared const, s
herb_g 2015/12/17 19:59:22 Added comment as per our discussion.
virtual ShadeProc asAShadeProc(void** ctx);
/**
« no previous file with comments | « no previous file | src/core/SkBitmapProcShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698