diff options
author | Jakob Bornecrantz <[email protected]> | 2009-06-09 19:24:06 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-06-09 19:24:06 +0100 |
commit | 41482a6461fadc0113f39f0e81f9fb91248faa8a (patch) | |
tree | 0966ee002d0312302464acde82301ec7ea2890e9 /src/gallium/drivers/trace/tr_context.h | |
parent | f3cf3d2fc2c0cb09cb1c18c08a135009904166b7 (diff) |
trace/rbug: Add support for draw block rule
Diffstat (limited to 'src/gallium/drivers/trace/tr_context.h')
-rw-r--r-- | src/gallium/drivers/trace/tr_context.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/tr_context.h b/src/gallium/drivers/trace/tr_context.h index ff86b6d1055..6febe4b4114 100644 --- a/src/gallium/drivers/trace/tr_context.h +++ b/src/gallium/drivers/trace/tr_context.h @@ -59,6 +59,16 @@ struct trace_context struct trace_texture *zsbuf; } curr; + struct { + struct trace_shader *fs; + struct trace_shader *vs; + + struct trace_texture *tex; + struct trace_texture *surf; + + int blocker; + } draw_rule; + unsigned draw_num_rules; pipe_condvar draw_cond; pipe_mutex draw_mutex; int draw_blocker; |