Module: Mesa Branch: master Commit: 0ac6d5a7fb58c4ca1f907b3fa4ba36b8f3b7e1f7 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0ac6d5a7fb58c4ca1f907b3fa4ba36b8f3b7e1f7
Author: Kenneth Graunke <[email protected]> Date: Sat Jan 5 17:20:01 2013 -0800 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 <[email protected]> Reviewed-by: Eric Anholt <[email protected]> --- src/mesa/drivers/dri/i965/gen7_disable.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/dri/i965/gen7_disable.c b/src/mesa/drivers/dri/i965/gen7_disable.c index b37aa6c..aaf88a8 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, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
