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

Unified Diff: include/utils/SkPathUtils.h

Issue 18552005: Animated the PathUtils Sample to show path contours (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fixed (lower)casing of local variables. Created 7 years, 5 months 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 | samplecode/SamplePathUtils.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/utils/SkPathUtils.h
diff --git a/include/utils/SkPathUtils.h b/include/utils/SkPathUtils.h
index 4ab819c6c9e386b1037b49de68a87086d3631570..a27cbb8f0f3e28157e36799a17679d641405089d 100644
--- a/include/utils/SkPathUtils.h
+++ b/include/utils/SkPathUtils.h
@@ -25,7 +25,7 @@ public:
all binary data the path is simplified using the PathOps::Simplify() method.
*/
static void BitsToPath_Path(SkPath* path, const char* bitmap,
- int h, int w, int stride);
+ int w, int h, int rowBytes);
/**
This variation utilizes the SkRegion class to generate paths, adding
@@ -33,7 +33,7 @@ public:
of the binary the SkRegion is converted to a Path via getBoundaryPath().
*/
static void BitsToPath_Region(SkPath* path, const char* bitmap,
- int h, int w, int stride);
+ int w, int h, int rowBytes);
};
« no previous file with comments | « no previous file | samplecode/SamplePathUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698