diff options
author | José Fonseca <[email protected]> | 2008-08-06 21:36:25 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-08-07 18:58:29 +0100 |
commit | 35355f7610b69dcd2fdba451db4554478fe0acaa (patch) | |
tree | 3aeaf3fe1ac7271c60493e823b8b6c8a2e52d378 /src/gallium/drivers/trace/SConscript | |
parent | 1ee500ac73fa657f02321c46cf5d9a4bfdea54de (diff) |
trace: New pipe driver to trace incoming calls.
Only pipe_screen calls traced, and only linux supported, for now.
Diffstat (limited to 'src/gallium/drivers/trace/SConscript')
-rw-r--r-- | src/gallium/drivers/trace/SConscript | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/SConscript b/src/gallium/drivers/trace/SConscript new file mode 100644 index 00000000000..30225b5a54c --- /dev/null +++ b/src/gallium/drivers/trace/SConscript @@ -0,0 +1,15 @@ +Import('*') + +env = env.Clone() + +trace = env.ConvenienceLibrary( + target = 'trace', + source = [ + 'tr_context.c', + 'tr_dump.c', + 'tr_screen.c', + 'tr_state.c', + 'tr_stream.c', + ]) + +Export('trace')
\ No newline at end of file |