Index: include/utils/SkLua.h |
diff --git a/include/utils/SkLua.h b/include/utils/SkLua.h |
index 9a1ebfdebb3842ce82ca19fe4baf00b5a9ea95d2..a7fceaaa81370ff95b63f520300d0a34d4b95185 100644 |
--- a/include/utils/SkLua.h |
+++ b/include/utils/SkLua.h |
@@ -10,6 +10,7 @@ |
#include "SkClipStack.h" |
#include "SkColor.h" |
+#include "SkPathEffect.h" |
#include "SkScalar.h" |
#include "SkString.h" |
@@ -46,11 +47,13 @@ public: |
void pushString(const SkString&, const char tableKey[] = NULL); |
void pushArrayU16(const uint16_t[], int count, const char tableKey[] = NULL); |
void pushArrayPoint(const SkPoint[], int count, const char key[] = NULL); |
+ void pushArrayScalar(const SkScalar[], int count, const char key[] = NULL); |
void pushColor(SkColor, const char tableKey[] = NULL); |
void pushU32(uint32_t, const char tableKey[] = NULL); |
void pushScalar(SkScalar, const char tableKey[] = NULL); |
void pushRect(const SkRect&, const char tableKey[] = NULL); |
void pushRRect(const SkRRect&, const char tableKey[] = NULL); |
+ void pushDash(const SkPathEffect::DashInfo&, const char tableKey[] = NULL); |
void pushMatrix(const SkMatrix&, const char tableKey[] = NULL); |
void pushPaint(const SkPaint&, const char tableKey[] = NULL); |
void pushPath(const SkPath&, const char tableKey[] = NULL); |