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

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

Issue 176893005: Add DebugVisualizers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix more line endings. Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « tools/win/DebugVisualizers/chrome.natvis ('k') | tools/win/DebugVisualizers/webkit.natvis » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « tools/win/DebugVisualizers/chrome.natvis ('k') | tools/win/DebugVisualizers/webkit.natvis » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698