diff options
author | Kenneth Graunke <[email protected]> | 2013-07-07 19:17:02 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-08-01 10:38:20 -0700 |
commit | fcb4ab6db12ec4287e5520c5148adfc2df079e19 (patch) | |
tree | 73c5c763f906951c8c7ce09bfe495ac5024e818c /src/mesa/drivers/dri/i965/intel_batchbuffer.h | |
parent | abdbd02e5928c881510da0f76b4e49fd92ddfe50 (diff) |
i965: Delete the BATCH_LOCALS macro.
This hasn't done anything in a long time, and it's only used in a couple
places...which means we couldn't use it without doing a bunch of work
anyway.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_batchbuffer.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_batchbuffer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.h b/src/mesa/drivers/dri/i965/intel_batchbuffer.h index e151eb6d281..15a9ca1e24d 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.h +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.h @@ -144,10 +144,6 @@ intel_batchbuffer_advance(struct brw_context *brw) void intel_batchbuffer_cached_advance(struct brw_context *brw); -/* Here are the crusty old macros, to be removed: - */ -#define BATCH_LOCALS - #define BEGIN_BATCH(n) intel_batchbuffer_begin(brw, n, false) #define BEGIN_BATCH_BLT(n) intel_batchbuffer_begin(brw, n, true) #define OUT_BATCH(d) intel_batchbuffer_emit_dword(brw, d) |