]> git.cworth.org Git - apitrace/blob - TODO
Merge branch 'trace-editing'
[apitrace] / TODO
1                                   Things To Do
2                             (in no particular order)
3
4
5 Tracing:
6
7 * Allow clamping to a GL version or a number of extensions.
8
9 * Trace multiple threads
10   * GetCurrentThreadId()
11   * pthread_self()
12
13 * Put zlib (de)compression in a separate thread.
14
15 * Trace TSCs
16
17 * Trace window sizes somehow
18
19 * Allow to distinguish between the calls really done by the program, vs the
20   fakes one necessary to retrace correctly.
21
22 * Trace writes done through glMapBuffer and glMapBufferRange correctly
23
24 * Start tracing on demand (e.g., key-press, or by frame no), emitting calls
25   that recreate all current state.
26
27 * Add option to include call stack frames in the trace
28
29 * Call gzflush() only when there is a signal/exception, except of doing it on
30   every call.
31
32
33 Retracing:
34
35 * Use visuals that best match those used in the trace; specially auto
36   detect single/double buffer visuals.
37
38 * Support multiple contexts
39
40 * Support multiple threads
41
42 * Provide a readline-like interactive mode to gltrace
43   * http://github.com/antirez/linenoise
44     * https://github.com/antirez/linenoise/issues#issue/8
45   * http://hg.youterm.com/radare/file/87579f8c5087/src/dietline.c 
46
47 * Plug memory leaks.
48
49 * Allow to retrace with two libGL.so in parallel, and output differences in
50   rendered frames / draw calls.
51
52 * D3D support.
53
54
55 GUI:
56
57 * Trace editing.
58
59 * Timeline view.
60
61 * Visualize meshes in draw commands.
62
63
64 Other:
65
66 * Side-by-side trace diffing; either as a separate tool on or the GUI.
67
68 * Side-by-side state diffing.
69
70 * Ability to extract just a single frame from a trace, and all previous calls
71   that contributed to it:
72
73   * via a state tracker (i.e., knowledge of how calls affect the state);
74
75   * or by leveragine retrace, dumping the calls to emit all state at beginning
76     of the frame.
77
78 * MacOSX support.
79
80
81 See also FIXME, TODO, and XXX comments on the source code.