blob: 73dce20372e25e5dcfd121bb65de23e6862c49f1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
 |                              TRACE PIPE DRIVER
= About =
This directory contains a Gallium3D pipe driver which traces all incoming calls.
= Build Instructions =
To build, invoke scons on the top dir as
 
 scons dri=no statetrackers=mesa drivers=softpipe,i965simple,trace winsys=xlib
= Usage =
To use do
 export LD_LIBRARY_PATH=$PWD/build/linux-x86-debug/lib
ensure the right libGL.so is being picked by doing
 ldd progs/trivial/tri 
and then try running
 export XMESA_TRACE=y
 GALLIUM_TRACE=tri.trace progs/trivial/tri
which should create a tri.trace file, which is an XML file. You can view copying 
trace.xsl to the same directory, and opening with a XSLT capable browser such as 
Firefox or Internet Explorer.
= Integrating =
You can integrate the trace pipe driver either inside the state tracker or the 
winsys. The procedure on both cases is the same. Let's assume you have a 
pipe_screen and a pipe_context pair obtained by the usual means (variable and 
function names are just for illustration purposes):
  real_screen = real_screen_create(...);
  
  real_context = real_context_create(...);
  
The trace screen and pipe_context is then created by doing
  trace_screen = trace_screen_create(real_screen);
  
  trace_context = trace_context_create(trace_screen, real_context);
  
You can then simply use trace_screen and trace_context instead of real_screen
and real_context.
Do not call trace_winsys_create. Simply pass trace_screen->winsys or 
trace_context->winsys in places you would pass winsys.
You can create as many contexts you wish. Just ensure that you don't mistake 
trace_screen with real_screen when creating them.
--
Jose Fonseca <jrfonseca@tungstengraphics.com>
 |