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

Unified Diff: include/core/SkImage.h

Issue 1404483002: post-commit fixes to applyFilter CL (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 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 | include/core/SkImageFilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkImage.h
diff --git a/include/core/SkImage.h b/include/core/SkImage.h
index 9e3810c44f180e9ef3f4c8b411b51eb11e4d6597..667cf6b9a110a03d87d789f177c81646e3fb4aeb 100644
--- a/include/core/SkImage.h
+++ b/include/core/SkImage.h
@@ -315,10 +315,10 @@ public:
*
* e.g.
* If the filter makes the result larger by a margin of 4 the output would be:
- * result->width() = this->width + 8
- * result->height() = this->height + 8
- * offset.x() == -4
- * offset.y() == -4
+ * result->width() == this->width + 8
+ * result->height() == this->height + 8
+ * offset.x() == -4
+ * offset.y() == -4
*
* If the filter fails to create a resulting image, null is returned, and the offset parameter
* (if specified) will be undefined.
« no previous file with comments | « no previous file | include/core/SkImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698