diff options
author | Marek Olšák <[email protected]> | 2014-01-22 02:02:18 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-01-28 01:39:42 +0100 |
commit | a4c218f398a6176f2ecbe7e295020d348670a957 (patch) | |
tree | da191a95391994e2c698c04451ff5d76c8277c17 /src/gallium/drivers/radeon | |
parent | ba0c16f7b2283db9dbeef036cf54dd6b694e4eaa (diff) |
r600g,radeonsi: consolidate variables for CS tracing
Reviewed-by: Michel Dänzer <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h index 5496a12f2c1..d0e0c436e0b 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.h +++ b/src/gallium/drivers/radeon/r600_pipe_common.h @@ -180,6 +180,10 @@ struct r600_common_screen { * It must be locked prior to using and flushed before unlocking. */ struct pipe_context *aux_context; pipe_mutex aux_context_lock; + + struct r600_resource *trace_bo; + uint32_t *trace_ptr; + unsigned cs_count; }; /* This encapsulates a state or an operation which can emitted into the GPU |