| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8" ?> | 1 <?xml version="1.0" encoding="utf-8" ?> |
| 2 <AutoVisualizer | 2 <AutoVisualizer |
| 3 xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> | 3 xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> |
| 4 <Type Name="SkPoint"> | 4 <Type Name="SkPoint"> |
| 5 <AlternativeType Name="SkIPoint"/> | 5 <AlternativeType Name="SkIPoint"/> |
| 6 <DisplayString>({fX}, {fY})</DisplayString> | 6 <DisplayString>({fX}, {fY})</DisplayString> |
| 7 <Expand> | |
| 8 <Item Name="X">fX</Item> | |
| 9 <Item Name="Y">fY</Item> | |
| 10 </Expand> | |
| 11 </Type> | 7 </Type> |
| 12 <Type Name="SkSize"> | 8 <Type Name="SkSize"> |
| 13 <DisplayString>({fWidth}, {fHeight})</DisplayString> | 9 <DisplayString>({fWidth}, {fHeight})</DisplayString> |
| 14 <Expand> | |
| 15 <Item Name="Width">fWidth</Item> | |
| 16 <Item Name="Height">fHeight</Item> | |
| 17 </Expand> | |
| 18 </Type> | 10 </Type> |
| 19 <Type Name="SkRect"> | 11 <Type Name="SkRect"> |
| 20 <AlternativeType Name="SkIRect"/> | 12 <AlternativeType Name="SkIRect"/> |
| 21 <DisplayString>({fLeft}, {fTop}) x ({fRight - fLeft}, {fBottom - fTop})</Dis
playString> | 13 <DisplayString>({fLeft}, {fTop}), ({fRight}, {fBottom})</DisplayString> |
| 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> | 14 </Type> |
| 35 <Type Name="LogFontTypeface"> | 15 <Type Name="LogFontTypeface"> |
| 36 <DisplayString>{fLogFont.lfFaceName,su}</DisplayString> | 16 <DisplayString>{fLogFont.lfFaceName,su}</DisplayString> |
| 37 </Type> | 17 </Type> |
| 38 </AutoVisualizer> | 18 </AutoVisualizer> |
| OLD | NEW |