]> git.cworth.org Git - apitrace/blob - TODO.markdown
Document known issues.
[apitrace] / TODO.markdown
1 Things To Do
2 ============
3
4 (in no particular order)
5
6
7 Tracing
8 -------
9
10 * Allow clamping to a GL version or a number of extensions.
11
12 * Trace multiple threads:
13
14   * `GetCurrentThreadId()`
15
16   * `pthread_self()`
17
18 * Put zlib (de)compression in a separate thread.
19
20 * Trace TSCs
21
22 * Trace window sizes somehow
23
24 * Allow to distinguish between the calls really done by the program, vs the
25   fakes one necessary to retrace correctly.
26
27 * Start tracing on demand (e.g., key-press, or by frame no), emitting calls
28   that recreate all current state.
29
30 * Add option to include call stack frames in the trace.
31
32 * Trace the internal GL calls done by GLU on Mac OS X & Windows.
33
34
35 Retracing
36 ---------
37
38 * Use visuals that best match those used in the trace; specially auto
39   detect single/double buffer visuals.
40
41 * Respect multiple context sharing of the traces.
42
43 * Support multiple threads
44
45 * Leverage `ARB_debug_output` where available.
46
47 * D3D support.
48
49
50 GUI
51 ---
52
53 * Timeline view.
54
55 * Visualize meshes in draw commands.
56
57 * Breakpointing and step-by-step debugging.
58
59
60 Other
61 -----
62
63 * Side-by-side trace diffing; either as a separate tool on or the GUI.
64
65 * Ability to extract just a single frame from a trace, and all previous calls
66   that contributed to it:
67
68   * via a state tracker (i.e., knowledge of how calls affect the state);
69
70   * or by leveragine retrace, dumping the calls to emit all state at beginning
71     of the frame.
72
73
74 See also:
75
76 * open issues on [github](https://github.com/apitrace/apitrace/issues)
77
78 * _Known issues_ section in BUGS.markdown
79
80 * FIXME, TODO, and XXX comments on the source code.