]> git.cworth.org Git - apitrace/blob - BUGS.markdown
Document known issues.
[apitrace] / BUGS.markdown
1 Reporting bugs
2 ==============
3
4 Before reporting, please skim through the known issues below.
5
6 Report any issues on [github](https://github.com/apitrace/apitrace/issues),
7 always including the following information:
8
9 * operating system name and version
10
11 * OpenGL/D3D driver name and version
12
13
14 Known issues
15 ============
16
17 These are issues that the developers are already aware of, but for which there
18 is no immediate plan to address them, because either:
19
20 * they stem from architectural limitations that are difficult to overcome
21   and/or time-consuming;
22
23 * they are corners cases that are thought to be of very little practical use;
24
25 * merely lack of time/opportunity.
26
27 That said, feel free to file an issue and/or send an email to the mailing list
28 if:
29
30 * send an email to the mailing list if you want discuss the rationale, propose
31   your ideas on how to address it, or volunteer to work on it;
32
33 * file the issue in the issue tracker (or comment to it if it already exists)
34   if it is important for you and you would like to see it addressed sooner
35   rather than later.
36
37
38 Tracing
39 -------
40
41 * Fake calls may be emitted in the trace, in order to provide complete
42   information for retracing.  The typical case is OpenGL vertex arrays in user
43   memory (as opposed to VBOs): where glXxxPointer calls will be deferred,
44   glInterleavedArrays will be decomposed, etc.
45
46   This should not affect the rendered output, but it may use different paths in
47   the OpenGL driver, exercising different paths and with different performance
48   characteristics.
49
50   There is no way to distinguish the fake calls from those actually
51   made by the application yet.
52
53 * On MacOSX, the internal OpenGL calls done by GLU are not traced yet.
54
55
56 Retracing
57 ---------
58
59 * glretrace needs to infer window sizes from glViewport calls, because calls
60   that create/resize windows happen outside of OpenGL and are not traced.
61   Therefore window will be missing if the application relies on the default
62   viewport instead of explicitly invoking glViewport; or it will to too big if
63   the window is shrunk.  Most apps call glViewport before rendering.
64
65 * OS specific OpenGL APIs (WGL, GLX, CGL, etc), are not retraced literally, but
66   instead partially emulated.  This is by design, to allow traces to be
67   retraced on any OS, as the focus is on the OS-independent parts of OpenGL API.
68
69 * There is no guarantee that the same visual that was used on tracing will be
70   used for retracing OpenGL.  Actually currently, glretrace will always choose
71   a standard 32bit RGBA, 24bit depth, 8bit alpha, double buffer visual.  Unless
72   overridden on command line.
73
74 * Multi-threaded OpenGL is not yet supported.
75
76 * OpenGL context sharing is not fully respected -- all contexts are expected to
77   share state, and most likely there
78
79
80 GUI
81 ---
82
83 * Not all types of arguments can be edited.
84
85
86
87 Proprietary/confidential applications
88 =====================================
89
90 Issues should be preferably filed on github to facilitate collaborative
91 development and for future reference.
92
93 Access to applications source code is not required -- binaries are sufficient.
94
95 If the bug happens with a proprietary application, and you don't want to
96 publicly release the application and/or any data collected from it, then
97 alternatively you can provide the necessary application and/or data via e-mail,
98 to *jose dot r dot fonseca at gmail dot com*.
99
100 If it is not technically/legally feasible for you to provide application and/or
101 data at all, then you must be either:
102
103 * develop and provide a test application, stripped-down of all
104   proprietary/confidential data, but that can reproduce the issue;
105
106 * be willing/able to do the investigation of the issue, namely to identify the
107   root cause of the issue (e.g., which OpenGL call is not properly handled and
108   why), using all necessary tools (such as debuggers).
109
110 Failure to do so will render the apitrace authors powerless to address the
111 issue.
112
113
114 Attachments
115 ===========
116
117 github issue tracker doesn't support attachments.
118
119 Please attach long logs to https://gist.github.com/ and paste the URL into the
120 issue description.
121
122 For big attachments, such as traces, please upload it temporarily to a web
123 server you control, or use a file upload service such as
124 http://www.megaupload.com/ or http://dropbox.com/ and paste the URL into the
125 issue description.
126
127 Trace files are only slightly compressed (for performance reasons).  You can
128 further reduce their size when attaching/uploading by compressing with
129 [XZ](http://tukaani.org/xz/) or [7-Zip](http://www.7-zip.org/).
130
131
132 Bugs on tracing
133 ===============
134
135 For bugs that happen while tracing (e.g., crashes while tracing the
136 application, or incorrect traces) please:
137
138 * provide information on how to obtain the application;
139
140 * describe how you were using it when the issue happened.
141
142
143 Bugs on retracing/GUI
144 =====================
145
146 For bugs on retracing (e.g. crashes when retracing the application,
147 incorrect inconsistent rendering, or viewing with the GUI) please:
148
149 * provide the trace file;
150
151 * describe the results you got, and what results you were expecting.
152
153
154 Obtaining stack back-traces
155 ===========================
156
157
158 Linux/MacOSX
159 ------------
160
161 Please rebuild apitrace with debugging information, by passing
162 `-DCMAKE_BUILD_TYPE=Debug` to cmake.
163
164 To obtain a stack back-trace, run the application with gdb from a terminal:
165
166     $ gdb --args application arg1 arg2 ...
167     (gdb) run
168     ...
169     (gdb) bt
170
171
172 See also more detailed and Distro specific instructions:
173
174 * http://wiki.debian.org/HowToGetABacktrace
175
176 * https://wiki.ubuntu.com/Backtrace
177
178 * http://fedoraproject.org/wiki/StackTraces
179
180 * http://live.gnome.org/GettingTraces
181
182
183 Windows
184 -------
185
186 See:
187
188 * https://developer.mozilla.org/en/how_to_get_a_stacktrace_with_windbg