From: Kenneth Graunke Date: Sun, 6 Jan 2013 01:20:01 +0000 (-0800) Subject: i965: Use BRW_NEW_CONTEXT for gen7_disable rather than BRW_NEW_BATCH. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0ac6d5a7fb58c4ca1f907b3fa4ba36b8f3b7e1f7;p=mesa.git i965: Use BRW_NEW_CONTEXT for gen7_disable rather than BRW_NEW_BATCH. These don't need to be re-disabled on every batch if we're using hardware contexts. (If we're not, this is equivalent.) Signed-off-by: Kenneth Graunke Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/gen7_disable.c b/src/mesa/drivers/dri/i965/gen7_disable.c index b37aa6cd460..aaf88a8bba8 100644 --- a/src/mesa/drivers/dri/i965/gen7_disable.c +++ b/src/mesa/drivers/dri/i965/gen7_disable.c @@ -127,7 +127,7 @@ disable_stages(struct brw_context *brw) const struct brw_tracked_state gen7_disable_stages = { .dirty = { .mesa = 0, - .brw = BRW_NEW_BATCH, + .brw = BRW_NEW_CONTEXT, .cache = 0, }, .emit = disable_stages,