diff options
author | José Fonseca <[email protected]> | 2008-08-14 14:34:33 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-08-15 10:35:18 +0100 |
commit | 424dea98d47e77f61efc79134b230f2046061ebe (patch) | |
tree | c1943c039dd1c256f05fcfb7ca9edd68b913c9ec /src/gallium/drivers/trace/tr_screen.h | |
parent | 196167e9d5c84f9f6dfe6f15b3e2f2c3ec6825dc (diff) |
trace: Trace surface contents.
Diffstat (limited to 'src/gallium/drivers/trace/tr_screen.h')
-rw-r--r-- | src/gallium/drivers/trace/tr_screen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/tr_screen.h b/src/gallium/drivers/trace/tr_screen.h index 446c4af6a6b..90103aa922d 100644 --- a/src/gallium/drivers/trace/tr_screen.h +++ b/src/gallium/drivers/trace/tr_screen.h @@ -34,11 +34,16 @@ #include "pipe/p_screen.h" +struct hash_table; + + struct trace_screen { struct pipe_screen base; struct pipe_screen *screen; + + struct hash_table *surface_maps; }; |