José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 1 | About **apitrace** |
| 2 | ================== |
| 3 | |
| 4 | **apitrace** consists of a set of tools to: |
| 5 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 6 | * trace OpenGL, OpenGL ES, D3D9, D3D8, D3D7, and DDRAW APIs calls to a file; |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 7 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 8 | * retrace OpenGL and OpenGL ES calls from a file; |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 9 | |
José Fonseca | 892cad6 | 2011-09-23 08:24:28 +0100 | [diff] [blame] | 10 | * inspect OpenGL state at any call while retracing; |
| 11 | |
| 12 | * visualize and edit trace files. |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 13 | |
| 14 | |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 15 | Basic usage |
| 16 | =========== |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 17 | |
José Fonseca | 5104ef4 | 2012-02-29 09:15:29 +0000 | [diff] [blame^] | 18 | To obtain apitrace either [download the latest |
| 19 | binaries](https://github.com/apitrace/apitrace/downloads) for your platform if |
| 20 | available, or follow the (build instructions)[INSTALL.markdown] to build it |
| 21 | yourself. |
| 22 | |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 23 | Run the application you want to trace as |
| 24 | |
José Fonseca | 155fc78 | 2012-02-27 10:37:32 +0000 | [diff] [blame] | 25 | apitrace trace --api API /path/to/application [args...] |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 26 | |
| 27 | and it will generate a trace named `application.trace` in the current |
José Fonseca | 155fc78 | 2012-02-27 10:37:32 +0000 | [diff] [blame] | 28 | directory. You can specify the written trace filename by passing the |
| 29 | `--output` command line option. |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 30 | |
José Fonseca | c4e76a9 | 2012-02-29 09:00:05 +0000 | [diff] [blame] | 31 | Problems while tracing (e.g, if the application uses calls/parameters |
| 32 | unsupported by apitrace) will be reported via stderr output on Unices. On |
| 33 | Windows you'll need to run |
| 34 | [DebugView](http://technet.microsoft.com/en-us/sysinternals/bb896647) to view |
| 35 | these messages. |
| 36 | |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 37 | View the trace with |
| 38 | |
José Fonseca | 155fc78 | 2012-02-27 10:37:32 +0000 | [diff] [blame] | 39 | apitrace dump application.trace |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 40 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 41 | Replay an OpenGL trace with |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 42 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 43 | glretrace application.trace |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 44 | |
| 45 | Pass the `-sb` option to use a single buffered visual. Pass `--help` to |
| 46 | glretrace for more options. |
| 47 | |
| 48 | Start the GUI as |
| 49 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 50 | qapitrace application.trace |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 51 | |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 52 | |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 53 | Advanced command line usage |
| 54 | =========================== |
| 55 | |
| 56 | |
José Fonseca | 225193d | 2012-01-26 19:08:32 +0000 | [diff] [blame] | 57 | Call sets |
| 58 | --------- |
| 59 | |
| 60 | Several tools take `CALLSET` arguments, e.g: |
| 61 | |
| 62 | apitrace dump --calls CALLSET foo.trace |
| 63 | glretrace -S CALLSET foo.trace |
| 64 | |
| 65 | The call syntax is very flexible. Here are a few examples: |
| 66 | |
| 67 | * `4` one call |
| 68 | |
| 69 | * `1,2,4,5` set of calls |
| 70 | |
| 71 | * `"1 2 4 5"` set of calls (commas are optional and can be replaced with whitespace) |
| 72 | |
| 73 | * `1-100/2` calls 1, 3, 5, ..., 99 |
| 74 | |
| 75 | * `1-1000/draw` all draw calls between 1 and 1000 |
| 76 | |
| 77 | * `1-1000/fbo` all fbo changes between calls 1 and 1000 |
| 78 | |
| 79 | * `frame` all calls at end of frames |
| 80 | |
| 81 | * `@foo.txt` read call numbers from `foo.txt`, using the same syntax as above |
| 82 | |
| 83 | |
| 84 | |
José Fonseca | 7edf24a | 2011-11-03 12:30:18 +0000 | [diff] [blame] | 85 | Tracing manually |
| 86 | ---------------- |
| 87 | |
| 88 | ### Linux ### |
| 89 | |
| 90 | Run the application you want to trace as |
| 91 | |
José Fonseca | dab19cd | 2011-11-03 14:32:45 +0000 | [diff] [blame] | 92 | LD_PRELOAD=/path/to/apitrace/wrappers/glxtrace.so /path/to/application |
José Fonseca | 7edf24a | 2011-11-03 12:30:18 +0000 | [diff] [blame] | 93 | |
| 94 | and it will generate a trace named `application.trace` in the current |
| 95 | directory. You can specify the written trace filename by setting the |
| 96 | `TRACE_FILE` environment variable before running. |
| 97 | |
| 98 | The `LD_PRELOAD` mechanism should work with most applications. There are some |
| 99 | applications, e.g., Unigine Heaven, which global function pointers with the |
| 100 | same name as GL entrypoints, living in a shared object that wasn't linked with |
| 101 | `-Bsymbolic` flag, so relocations to those globals function pointers get |
| 102 | overwritten with the address to our wrapper library, and the application will |
| 103 | segfault when trying to write to them. For these applications it is possible |
| 104 | to trace by using `glxtrace.so` as an ordinary `libGL.so` and injecting into |
| 105 | `LD_LIBRARY_PATH`: |
| 106 | |
José Fonseca | dab19cd | 2011-11-03 14:32:45 +0000 | [diff] [blame] | 107 | ln -s glxtrace.so wrappers/libGL.so |
| 108 | ln -s glxtrace.so wrappers/libGL.so.1 |
| 109 | ln -s glxtrace.so wrappers/libGL.so.1.2 |
| 110 | export LD_LIBRARY_PATH=/path/to/apitrace/wrappers:$LD_LIBRARY_PATH |
José Fonseca | 7edf24a | 2011-11-03 12:30:18 +0000 | [diff] [blame] | 111 | export TRACE_LIBGL=/path/to/real/libGL.so.1 |
| 112 | /path/to/application |
| 113 | |
| 114 | See the `ld.so` man page for more information about `LD_PRELOAD` and |
| 115 | `LD_LIBRARY_PATH` environment flags. |
| 116 | |
José Fonseca | c5b4a94 | 2012-01-18 16:15:30 +0000 | [diff] [blame] | 117 | To trace the application inside gdb, invoke gdb as: |
| 118 | |
| 119 | gdb --ex 'set exec-wrapper env LD_PRELOAD=/path/to/glxtrace.so' --args /path/to/application |
| 120 | |
José Fonseca | 7edf24a | 2011-11-03 12:30:18 +0000 | [diff] [blame] | 121 | ### Mac OS X ### |
| 122 | |
| 123 | Run the application you want to trace as |
| 124 | |
| 125 | DYLD_LIBRARY_PATH=/path/to/apitrace/wrappers /path/to/application |
| 126 | |
| 127 | Note that although Mac OS X has an `LD_PRELOAD` equivalent, |
| 128 | `DYLD_INSERT_LIBRARIES`, it is mostly useless because it only works with |
| 129 | `DYLD_FORCE_FLAT_NAMESPACE=1` which breaks most applications. See the `dyld` man |
| 130 | page for more details about these environment flags. |
| 131 | |
José Fonseca | 155fc78 | 2012-02-27 10:37:32 +0000 | [diff] [blame] | 132 | ### Windows ### |
| 133 | |
| 134 | Copy `opengl32.dll`, `d3d8.dll`, or `d3d9.dll` from the wrappers directory |
| 135 | to the directory with the application you want to trace. Then run the |
| 136 | application. |
| 137 | |
| 138 | You can specify the written trace filename by setting the `TRACE_FILE` |
| 139 | environment variable before running. |
| 140 | |
José Fonseca | 7edf24a | 2011-11-03 12:30:18 +0000 | [diff] [blame] | 141 | |
José Fonseca | f028a8f | 2012-02-15 23:33:35 +0000 | [diff] [blame] | 142 | Emitting annotations to the trace |
| 143 | --------------------------------- |
José Fonseca | e62cabc | 2011-09-18 10:31:04 +0100 | [diff] [blame] | 144 | |
José Fonseca | f028a8f | 2012-02-15 23:33:35 +0000 | [diff] [blame] | 145 | From OpenGL applications you can embed annotations in the trace file through the |
José Fonseca | e62cabc | 2011-09-18 10:31:04 +0100 | [diff] [blame] | 146 | [`GL_GREMEDY_string_marker`](http://www.opengl.org/registry/specs/GREMEDY/string_marker.txt) |
| 147 | and |
| 148 | [`GL_GREMEDY_frame_terminator`](http://www.opengl.org/registry/specs/GREMEDY/frame_terminator.txt) |
| 149 | GL extensions. |
| 150 | |
José Fonseca | 892cad6 | 2011-09-23 08:24:28 +0100 | [diff] [blame] | 151 | **apitrace** will advertise and intercept these GL extensions independently of |
José Fonseca | e62cabc | 2011-09-18 10:31:04 +0100 | [diff] [blame] | 152 | the GL implementation. So all you have to do is to use these extensions when |
| 153 | available. |
| 154 | |
| 155 | For example, if you use [GLEW](http://glew.sourceforge.net/) to dynamically |
| 156 | detect and use GL extensions, you could easily accomplish this by doing: |
| 157 | |
| 158 | void foo() { |
| 159 | |
| 160 | if (GLEW_GREMEDY_string_marker) { |
| 161 | glStringMarkerGREMEDY(0, __FUNCTION__ ": enter"); |
| 162 | } |
| 163 | |
| 164 | ... |
| 165 | |
| 166 | if (GLEW_GREMEDY_string_marker) { |
| 167 | glStringMarkerGREMEDY(0, __FUNCTION__ ": leave"); |
| 168 | } |
| 169 | |
| 170 | } |
| 171 | |
| 172 | This has the added advantage of working equally well with gDEBugger. |
| 173 | |
| 174 | |
José Fonseca | f028a8f | 2012-02-15 23:33:35 +0000 | [diff] [blame] | 175 | From OpenGL ES applications you can embed annotations in the trace file through the |
| 176 | [`GL_EXT_debug_marker`](http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt) |
| 177 | extension. |
| 178 | |
| 179 | |
| 180 | For Direct3D applications you can follow the same procedure used for |
| 181 | [instrumenting an application for PIX](http://technet.microsoft.com/en-us/query/ee417250) |
| 182 | |
| 183 | |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 184 | Dump GL state at a particular call |
| 185 | ---------------------------------- |
| 186 | |
| 187 | You can get a dump of the bound GL state at call 12345 by doing: |
| 188 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 189 | glretrace -D 12345 application.trace > 12345.json |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 190 | |
| 191 | This is precisely the mechanism the GUI obtains its own state. |
| 192 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 193 | You can compare two state dumps by doing: |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 194 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 195 | apitrace diff-state 12345.json 67890.json |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 196 | |
| 197 | |
| 198 | Comparing two traces side by side |
| 199 | --------------------------------- |
| 200 | |
José Fonseca | 73694fa | 2011-11-06 09:01:12 +0000 | [diff] [blame] | 201 | apitrace diff trace1.trace trace2.trace |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 202 | |
| 203 | This works only on Unices, and it will truncate the traces due to performance |
| 204 | limitations. |
| 205 | |
| 206 | |
| 207 | Recording a video with FFmpeg |
| 208 | ----------------------------- |
| 209 | |
| 210 | You can make a video of the output by doing |
| 211 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 212 | glretrace -s - application.trace \ |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 213 | | ffmpeg -r 30 -f image2pipe -vcodec ppm -i pipe: -vcodec mpeg4 -y output.mp4 |
| 214 | |
| 215 | |
José Fonseca | 7b1b0a2 | 2012-02-15 07:18:22 +0000 | [diff] [blame] | 216 | Triming a trace |
| 217 | --------------- |
| 218 | |
| 219 | You can make a smaller trace by doing: |
| 220 | |
| 221 | apitrace trim --callset 100-1000 -o trimed.trace applicated.trace |
| 222 | |
| 223 | If you need precise control over which calls to trim you can specify the |
| 224 | individual call numbers a plaintext file, as described in the 'Call sets' |
| 225 | section above. |
| 226 | |
| 227 | |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 228 | Advanced usage for OpenGL implementors |
| 229 | ====================================== |
| 230 | |
José Fonseca | ff42758 | 2011-09-18 10:49:13 +0100 | [diff] [blame] | 231 | There are several advanced usage examples meant for OpenGL implementors. |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 232 | |
| 233 | |
| 234 | Regression testing |
| 235 | ------------------ |
| 236 | |
José Fonseca | 892cad6 | 2011-09-23 08:24:28 +0100 | [diff] [blame] | 237 | These are the steps to create a regression test-suite around **apitrace**: |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 238 | |
| 239 | * obtain a trace |
| 240 | |
José Fonseca | c582fc6 | 2012-02-29 09:06:53 +0000 | [diff] [blame] | 241 | * obtain reference snapshots, by doing on a reference system: |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 242 | |
José Fonseca | c582fc6 | 2012-02-29 09:06:53 +0000 | [diff] [blame] | 243 | mkdir /path/to/reference/snapshots/ |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 244 | glretrace -s /path/to/reference/snapshots/ application.trace |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 245 | |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 246 | * prune the snapshots which are not interesting |
| 247 | |
| 248 | * to do a regression test, do: |
| 249 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 250 | glretrace -c /path/to/reference/snapshots/ application.trace |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 251 | |
José Fonseca | c7cc272 | 2011-11-29 23:25:13 +0000 | [diff] [blame] | 252 | Alternatively, for a HTML summary, use `apitrace diff-images`: |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 253 | |
José Fonseca | c582fc6 | 2012-02-29 09:06:53 +0000 | [diff] [blame] | 254 | glretrace -s /path/to/test/snapshots/ application.trace |
| 255 | apitrace diff-images --output summary.html /path/to/reference/snapshots/ /path/to/test/snapshots/ |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 256 | |
| 257 | |
| 258 | Automated git-bisection |
| 259 | ----------------------- |
| 260 | |
| 261 | With tracecheck.py it is possible to automate git bisect and pinpoint the |
| 262 | commit responsible for a regression. |
| 263 | |
| 264 | Below is an example of using tracecheck.py to bisect a regression in the |
| 265 | Mesa-based Intel 965 driver. But the procedure could be applied to any GL |
| 266 | driver hosted on a git repository. |
| 267 | |
| 268 | First, create a build script, named build-script.sh, containing: |
| 269 | |
| 270 | #!/bin/sh |
| 271 | set -e |
| 272 | export PATH=/usr/lib/ccache:$PATH |
| 273 | export CFLAGS='-g' |
| 274 | export CXXFLAGS='-g' |
| 275 | ./autogen.sh --disable-egl --disable-gallium --disable-glut --disable-glu --disable-glw --with-dri-drivers=i965 |
| 276 | make clean |
| 277 | make "$@" |
| 278 | |
| 279 | It is important that builds are both robust, and efficient. Due to broken |
| 280 | dependency discovery in Mesa's makefile system, it was necessary invoke `make |
| 281 | clean` in every iteration step. `ccache` should be installed to avoid |
| 282 | recompiling unchanged source files. |
| 283 | |
| 284 | Then do: |
| 285 | |
| 286 | cd /path/to/mesa |
| 287 | export LIBGL_DEBUG=verbose |
| 288 | export LD_LIBRARY_PATH=$PWD/lib |
| 289 | export LIBGL_DRIVERS_DIR=$PWD/lib |
| 290 | git bisect start \ |
| 291 | 6491e9593d5cbc5644eb02593a2f562447efdcbb 71acbb54f49089b03d3498b6f88c1681d3f649ac \ |
| 292 | -- src/mesa/drivers/dri/intel src/mesa/drivers/dri/i965/ |
| 293 | git bisect run /path/to/tracecheck.py \ |
| 294 | --precision-threshold 8.0 \ |
| 295 | --build /path/to/build-script.sh \ |
| 296 | --gl-renderer '.*Mesa.*Intel.*' \ |
| 297 | --retrace=/path/to/glretrace \ |
| 298 | -c /path/to/reference/snapshots/ \ |
| 299 | topogun-1.06-orc-84k.trace |
| 300 | |
| 301 | The trace-check.py script will skip automatically when there are build |
| 302 | failures. |
| 303 | |
| 304 | The `--gl-renderer` option will also cause a commit to be skipped if the |
| 305 | `GL_RENDERER` is unexpected (e.g., when a software renderer or another GL |
José Fonseca | ff42758 | 2011-09-18 10:49:13 +0100 | [diff] [blame] | 306 | driver is unintentionally loaded due to missing symbol in the DRI driver, or |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 307 | another runtime fault). |
| 308 | |
| 309 | |
| 310 | Side by side retracing |
| 311 | ---------------------- |
| 312 | |
| 313 | In order to determine which draw call a regression first manifests one could |
José Fonseca | 05ba419 | 2011-09-17 21:18:57 +0100 | [diff] [blame] | 314 | generate snapshots for every draw call, using the `-S` option. That is, however, |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 315 | very inefficient for big traces with many draw calls. |
| 316 | |
| 317 | A faster approach is to run both the bad and a good GL driver side-by-side. |
José Fonseca | ff42758 | 2011-09-18 10:49:13 +0100 | [diff] [blame] | 318 | The latter can be either a previously known good build of the GL driver, or a |
José Fonseca | 6d61700 | 2011-09-06 01:17:48 +0100 | [diff] [blame] | 319 | reference software renderer. |
| 320 | |
| 321 | This can be achieved with retracediff.py script, which invokes glretrace with |
| 322 | different environments, allowing to choose the desired GL driver by |
| 323 | manipulating variables such as `LD_LIBRARY_PATH` or `LIBGL_DRIVERS_DIR`. |
| 324 | |
| 325 | For example: |
| 326 | |
| 327 | ./scripts/retracediff.py \ |
| 328 | --ref-env LD_LIBRARY_PATH=/path/to/reference/GL/implementation \ |
| 329 | -r ./glretrace \ |
| 330 | --diff-prefix=/path/to/output/diffs \ |
| 331 | application.trace |
| 332 | |
| 333 | |
| 334 | |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 335 | Links |
| 336 | ===== |
| 337 | |
| 338 | About **apitrace**: |
| 339 | |
Zack Rusin | d029d5f | 2011-08-22 21:50:08 -0400 | [diff] [blame] | 340 | * [Official mailing list](http://lists.freedesktop.org/mailman/listinfo/apitrace) |
| 341 | |
José Fonseca | 0b21731 | 2011-06-30 14:32:57 +0100 | [diff] [blame] | 342 | * [Zack Rusin's blog introducing the GUI](http://zrusin.blogspot.com/2011/04/apitrace.html) |
| 343 | |
| 344 | * [Jose's Fonseca blog introducing the tool](http://jrfonseca.blogspot.com/2008/07/tracing-d3d-applications.html) |
| 345 | |
| 346 | |
| 347 | Direct3D |
| 348 | -------- |
| 349 | |
| 350 | Open-source: |
| 351 | |
| 352 | * [Proxy DLL](http://www.mikoweb.eu/index.php?node=21) |
| 353 | |
| 354 | * [Intercept Calls to DirectX with a Proxy DLL](http://www.codeguru.com/cpp/g-m/directx/directx8/article.php/c11453/) |
| 355 | |
| 356 | * [Direct3D 9 API Interceptor](http://graphics.stanford.edu/~mdfisher/D3D9Interceptor.html) |
| 357 | |
| 358 | Closed-source: |
| 359 | |
| 360 | * [Microsoft PIX](http://msdn.microsoft.com/en-us/library/ee417062.aspx) |
| 361 | |
| 362 | * [D3DSpy](http://doc.51windows.net/Directx9_SDK/?url=/directx9_sdk/graphics/programmingguide/TutorialsAndSamplesAndToolsAndTips/Tools/D3DSpy.htm): the predecessor of PIX |
| 363 | |
| 364 | * [AMD GPU PerfStudio](http://developer.amd.com/gpu/PerfStudio/pages/APITraceWindow.aspx) |
| 365 | |
| 366 | |
| 367 | OpenGL |
| 368 | ------ |
| 369 | |
| 370 | Open-source: |
| 371 | |
| 372 | * [BuGLe](http://www.opengl.org/sdk/tools/BuGLe/) |
| 373 | |
| 374 | * [GLIntercept](http://code.google.com/p/glintercept/) |
| 375 | |
| 376 | * [tracy](https://gitorious.org/tracy): OpenGL ES and OpenVG trace, retrace, and state inspection |
| 377 | |
| 378 | Closed-source: |
| 379 | |
| 380 | * [gDEBugger](http://www.gremedy.com/products.php) |
| 381 | |
| 382 | * [glslDevil](http://cumbia.informatik.uni-stuttgart.de/glsldevil/index.html) |
| 383 | |
| 384 | * [AMD GPU PerfStudio](http://developer.amd.com/gpu/PerfStudio/pages/APITraceWindow.aspx) |
| 385 | |