Index: include/core/SkFontStyle.h |
diff --git a/include/core/SkFontStyle.h b/include/core/SkFontStyle.h |
index f4ffbb9675f1c4ca5692b006a9664a2b0b4b302d..643b69bd038282eba5c70543468394ed791bbefb 100644 |
--- a/include/core/SkFontStyle.h |
+++ b/include/core/SkFontStyle.h |
@@ -13,15 +13,17 @@ |
class SK_API SkFontStyle { |
public: |
enum Weight { |
- kThin_Weight = 100, |
- kExtraLight_Weight = 200, |
- kLight_Weight = 300, |
- kNormal_Weight = 400, |
- kMedium_Weight = 500, |
- kSemiBold_Weight = 600, |
- kBold_Weight = 700, |
- kExtraBold_Weight = 800, |
- kBlack_Weight = 900 |
+ kInvisible_Weight = 0, |
+ kThin_Weight = 100, |
+ kExtraLight_Weight = 200, |
+ kLight_Weight = 300, |
+ kNormal_Weight = 400, |
+ kMedium_Weight = 500, |
+ kSemiBold_Weight = 600, |
+ kBold_Weight = 700, |
+ kExtraBold_Weight = 800, |
+ kBlack_Weight = 900, |
+ kExtraBlack_Weight = 1000 |
}; |
enum Width { |