Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: tools/win/DebugVisualizers/skia.natvis

Issue 2895043002: Improve Visual Studio debug visualizers (Closed)
Patch Set: Skia typo Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/win/DebugVisualizers/chrome.natvis ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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>
OLDNEW
« no previous file with comments | « tools/win/DebugVisualizers/chrome.natvis ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698