Index: gfx/canvas.h |
diff --git a/gfx/canvas.h b/gfx/canvas.h |
index 077a8a25146cf79c635c2173f1afe3464def04d9..61cd66f7e33a9b5cf5010f229eedf9deb1f36b84 100644 |
--- a/gfx/canvas.h |
+++ b/gfx/canvas.h |
@@ -101,6 +101,10 @@ class Canvas { |
// mode of SkXfermode::kSrcOver_Mode. |
virtual void FillRectInt(const SkColor& color, |
int x, int y, int w, int h) = 0; |
+ // Fills the specified region with the specified color and mode |
brettw
2010/11/08 21:44:06
Can you put a blank line above this?
Alex Nicolaou
2010/11/12 04:05:00
Done, but that's not the way overloads are done el
|
+ virtual void FillRectInt(const SkColor& color, |
+ int x, int y, int w, int h, |
+ SkXfermode::Mode mode) = 0; |
// Fills the specified region with the specified brush. |
virtual void FillRectInt(const gfx::Brush* brush, |