1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/skia/trunk/src/animator/SkExtraPathEffects.xsd Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 1.5 +xmlns:Sk="urn:screenplay" 1.6 +xmlns:extra="urn:extraPathEffects" targetNamespace="urn:extraPathEffects" > 1.7 + <xs:import namespace="urn:screenplay" 1.8 + schemaLocation="SkAnimateSchema.xsd" /> 1.9 + 1.10 + <xs:element name="composePathEffect" > 1.11 + <xs:complexType> 1.12 + <xs:choice maxOccurs="1"> 1.13 + <xs:element ref="Sk:dash"/> 1.14 + <xs:element ref="extra:shape1DPathEffect"/> 1.15 + </xs:choice> 1.16 + <xs:attribute name="id" type="xs:ID"/> 1.17 + </xs:complexType> 1.18 + </xs:element> 1.19 + 1.20 + <xs:element name="shape1DPathEffect" > 1.21 + <xs:complexType> 1.22 + <xs:choice maxOccurs="1"> 1.23 + <xs:element ref="Sk:matrix"/> 1.24 + <xs:element ref="Sk:path"/> 1.25 + </xs:choice> 1.26 + <xs:attribute name="addPath" type="Sk:DynamicString" /> 1.27 + <xs:attribute name="matrix" type="Sk:DynamicString" /> 1.28 + <xs:attribute name="path" type="Sk:Path" /> 1.29 + <xs:attribute name="phase" type="Sk:DynamicString"/> 1.30 + <xs:attribute name="spacing" type="Sk:DynamicString"/> 1.31 + <xs:attribute name="id" type="xs:ID"/> 1.32 + </xs:complexType> 1.33 + </xs:element> 1.34 + 1.35 +</xs:schema> 1.36 +