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_gs_state.c | |
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_gs_state.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_gs_state.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_gs_state.c b/src/mesa/drivers/dri/i965/brw_gs_state.c index 8e3bf1ef651..acd0f5f877d 100644 --- a/src/mesa/drivers/dri/i965/brw_gs_state.c +++ b/src/mesa/drivers/dri/i965/brw_gs_state.c @@ -40,8 +40,7 @@ brw_upload_gs_unit(struct brw_context *brw) { struct brw_gs_unit_state *gs; - gs = brw_state_batch(brw, AUB_TRACE_GS_STATE, - sizeof(*gs), 32, &brw->ff_gs.state_offset); + gs = brw_state_batch(brw, sizeof(*gs), 32, &brw->ff_gs.state_offset); memset(gs, 0, sizeof(*gs)); |