diff options
author | José Fonseca <[email protected]> | 2008-08-10 16:24:43 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-08-12 11:34:40 +0100 |
commit | 94cf4f15c3a94311ffeb670459e285d2c70a5d7e (patch) | |
tree | 481d8b67f4ca841b268dd0969ff404b97c8b4405 /src/gallium/drivers/trace/tr_context.h | |
parent | 91f6032919f8e5718004bb7ac0ee2b015fb403d7 (diff) |
trace: Trace winsys/screen/context creation.
Diffstat (limited to 'src/gallium/drivers/trace/tr_context.h')
-rw-r--r-- | src/gallium/drivers/trace/tr_context.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/tr_context.h b/src/gallium/drivers/trace/tr_context.h index 80fb5980d6a..2c0b0c72e45 100644 --- a/src/gallium/drivers/trace/tr_context.h +++ b/src/gallium/drivers/trace/tr_context.h @@ -34,11 +34,16 @@ #include "pipe/p_context.h" +struct trace_stream; + + struct trace_context { struct pipe_context base; struct pipe_context *pipe; + + struct trace_stream *stream; }; |