Index: include/core/SkFontStyle.h |
diff --git a/include/core/SkFontStyle.h b/include/core/SkFontStyle.h |
index f42d7dd4701824b6f15666bf875c839b41216092..526d983c87538f880e5729c62fb324a5232a966c 100644 |
--- a/include/core/SkFontStyle.h |
+++ b/include/core/SkFontStyle.h |
@@ -9,9 +9,16 @@ |
#define SkFontStyle_DEFINED |
#include "SkTypes.h" |
+#include "SkFixed.h" |
class SK_API SkFontStyle { |
public: |
+ struct Axis { |
+ Axis() : tag(SkSetFourByteTag('\0','\0','\0','\0')), value(0) { } |
+ SkFourByteTag tag; |
+ SkFixed value; |
+ }; |
+ |
enum Weight { |
kThin_Weight = 100, |
kExtraLight_Weight = 200, |