diff options
author | Kenneth Graunke <[email protected]> | 2017-03-20 02:21:41 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-03-21 13:49:18 -0700 |
commit | 0c3fbf8028b6f44a341548d341fa660e6b120647 (patch) | |
tree | 053d51a803d054a3cb6f73d83ad5709141e18e46 /src/mesa/drivers/dri/i965/brw_state.h | |
parent | 705c38e96f1ea732dd85c72c85f988171697867c (diff) |
i965: Drop AUB_TRACE_* stuff.
This was used for aubdumping (deleted a while ago) and INTEL_DEBUG=bat
decoding (deleted recently).
While we're changing parameters, delete the wrapper macro and make the
actual function brw_state_batch instead of __brw_state_batch.
This subsumes a patch by Emil Velikov to drop this from BLORP.
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_state.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_state.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_state.h b/src/mesa/drivers/dri/i965/brw_state.h index 1eb2a0d0cb6..99e50f3a433 100644 --- a/src/mesa/drivers/dri/i965/brw_state.h +++ b/src/mesa/drivers/dri/i965/brw_state.h @@ -252,15 +252,8 @@ void brw_print_program_cache(struct brw_context *brw); #define BRW_BATCH_STRUCT(brw, s) \ intel_batchbuffer_data(brw, (s), sizeof(*(s)), RENDER_RING) -void *__brw_state_batch(struct brw_context *brw, - enum aub_state_struct_type type, - int size, - int alignment, - int index, - uint32_t *out_offset); -#define brw_state_batch(brw, type, size, alignment, out_offset) \ - __brw_state_batch(brw, type, size, alignment, 0, out_offset) - +void *brw_state_batch(struct brw_context *brw, + int size, int alignment, uint32_t *out_offset); uint32_t brw_state_batch_size(struct brw_context *brw, uint32_t offset); /* brw_wm_surface_state.c */ |