summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/intel_batchbuffer.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-07-07 19:17:02 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-08-01 10:38:20 -0700
commitfcb4ab6db12ec4287e5520c5148adfc2df079e19 (patch)
tree73c5c763f906951c8c7ce09bfe495ac5024e818c /src/mesa/drivers/dri/i965/intel_batchbuffer.h
parentabdbd02e5928c881510da0f76b4e49fd92ddfe50 (diff)
downloadexternal_mesa3d-fcb4ab6db12ec4287e5520c5148adfc2df079e19.zip
external_mesa3d-fcb4ab6db12ec4287e5520c5148adfc2df079e19.tar.gz
external_mesa3d-fcb4ab6db12ec4287e5520c5148adfc2df079e19.tar.bz2
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 <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_batchbuffer.h')
-rw-r--r--src/mesa/drivers/dri/i965/intel_batchbuffer.h4
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 e151eb6..15a9ca1 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)