Index: include/core/SkShader.h |
diff --git a/include/core/SkShader.h b/include/core/SkShader.h |
index cc2cc751d8af6ca97436d5ad87ea164e91911f79..4af8f78bfbaa9ca8523b3262870081fbd10ace65 100644 |
--- a/include/core/SkShader.h |
+++ b/include/core/SkShader.h |
@@ -34,7 +34,7 @@ class SK_API SkShader : public SkFlattenable { |
public: |
SK_DECLARE_INST_COUNT(SkShader) |
- SkShader(); |
+ SkShader(const SkMatrix* localMatrix = NULL); |
virtual ~SkShader(); |
/** |
@@ -371,7 +371,8 @@ public: |
* @return Returns a new shader object. Note: this function never returns null. |
*/ |
static SkShader* CreateBitmapShader(const SkBitmap& src, |
- TileMode tmx, TileMode tmy); |
+ TileMode tmx, TileMode tmy, |
+ const SkMatrix* localMatrix = NULL); |
/** Call this to create a new shader that will draw with the specified picture. |
* |