aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/svg/model/SkSVGAttribute.h
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2016-08-17 08:38:15 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-17 08:38:15 -0700
commitd24ee1419f17fe3ac70373ca74136a766522e399 (patch)
treeb70f2c4ad0c3afc0fd77e2df46506db2c4710782 /experimental/svg/model/SkSVGAttribute.h
parent4c56b9fa714d1bee54666adf7e5e1db5fb398dc7 (diff)
[SVGDom] Add <line> support
R=robertphillips@google.com,stephana@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2244223005 Review-Url: https://codereview.chromium.org/2244223005
Diffstat (limited to 'experimental/svg/model/SkSVGAttribute.h')
-rw-r--r--experimental/svg/model/SkSVGAttribute.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/experimental/svg/model/SkSVGAttribute.h b/experimental/svg/model/SkSVGAttribute.h
index c94a239712..196575de0b 100644
--- a/experimental/svg/model/SkSVGAttribute.h
+++ b/experimental/svg/model/SkSVGAttribute.h
@@ -34,7 +34,11 @@ enum class SkSVGAttribute {
kViewBox,
kWidth,
kX,
+ kX1, // <line>: first endpoint x
+ kX2, // <line>: second endpoint x
kY,
+ kY1, // <line>: first endpoint y
+ kY2, // <line>: second endpoint y
kUnknown,
};