Joe Gregorio | 02f7202 | 2021-03-27 10:12:45 -0400 | [diff] [blame] | 1 | |
| 2 | --- |
| 3 | title: "Debug Visualization" |
| 4 | linkTitle: "Debug Visualization" |
| 5 | |
| 6 | --- |
| 7 | |
| 8 | |
| 9 | Skia uses custom container types, such as `SkString` and `SkTArray<>`, which can |
| 10 | be inconvenient to view in a debugger. |
| 11 | |
| 12 | If you frequently debug code that uses Skia types, consider installing a debug |
| 13 | visualizer. Skia offers debugger visualization support for the following |
| 14 | platforms: |
| 15 | |
Eric Boren | 04fe267 | 2021-09-27 10:15:39 -0400 | [diff] [blame] | 16 | - [Visual Studio and VS Code](https://skia.googlesource.com/skia/+/refs/heads/main/platform_tools/debugging/vs/Skia.natvis) |
| 17 | - [LLDB and Xcode](https://skia.googlesource.com/skia/+/refs/heads/main/platform_tools/debugging/lldb/skia.py) |
Joe Gregorio | 02f7202 | 2021-03-27 10:12:45 -0400 | [diff] [blame] | 18 | |