OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8" ?> |
| 2 <AutoVisualizer |
| 3 xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> |
| 4 <Type Name="SkPoint"> |
| 5 <AlternativeType Name="SkIPoint"/> |
| 6 <DisplayString>({fX}, {fY})</DisplayString> |
| 7 <Expand> |
| 8 <Item Name="X">fX</Item> |
| 9 <Item Name="Y">fY</Item> |
| 10 </Expand> |
| 11 </Type> |
| 12 <Type Name="SkSize"> |
| 13 <DisplayString>({fWidth}, {fHeight})</DisplayString> |
| 14 <Expand> |
| 15 <Item Name="Width">fWidth</Item> |
| 16 <Item Name="Height">fHeight</Item> |
| 17 </Expand> |
| 18 </Type> |
| 19 <Type Name="SkRect"> |
| 20 <AlternativeType Name="SkIRect"/> |
| 21 <DisplayString>({fLeft}, {fTop}) x ({fRight - fLeft}, {fBottom - fTop})</Dis
playString> |
| 22 <Expand> |
| 23 <Item Name="Left">fLeft</Item> |
| 24 <Item Name="Top">fTop</Item> |
| 25 <Item Name="Right">fRight</Item> |
| 26 <Item Name="Bottom">fBottom</Item> |
| 27 <Synthetic Name="Width"> |
| 28 <DisplayString>{fRight - fLeft}</DisplayString> |
| 29 </Synthetic> |
| 30 <Synthetic Name="Height"> |
| 31 <DisplayString>{fBottom - fTop}</DisplayString> |
| 32 </Synthetic> |
| 33 </Expand> |
| 34 </Type> |
| 35 </AutoVisualizer> |
OLD | NEW |