diff options
author | Iago Toral Quiroga <[email protected]> | 2017-09-14 10:06:33 +0200 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2017-09-18 10:47:51 +0200 |
commit | 5b27816b22f98abaa22a133a264fe7356afc46fa (patch) | |
tree | 1de61e611ddb827b662de39f3c1faaa0c2b847c8 /src/mesa/drivers/dri/i965/brw_state_upload.c | |
parent | ac8ccf254315d13493c548a80a375c0baccbac1d (diff) |
i965: rename BRW_NEW_FAST_CLEAR_COLOR to BRW_NEW_AUX_STATE
We want to use this flag to signal changes to the aux surfaces,
so let's not make it about fast clearing only. Suggested by Jason.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_state_upload.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_state_upload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_state_upload.c b/src/mesa/drivers/dri/i965/brw_state_upload.c index 2834cca6392..28a31482821 100644 --- a/src/mesa/drivers/dri/i965/brw_state_upload.c +++ b/src/mesa/drivers/dri/i965/brw_state_upload.c @@ -353,7 +353,7 @@ static struct dirty_bit_map brw_bits[] = { DEFINE_BIT(BRW_NEW_VIEWPORT_COUNT), DEFINE_BIT(BRW_NEW_CONSERVATIVE_RASTERIZATION), DEFINE_BIT(BRW_NEW_DRAW_CALL), - DEFINE_BIT(BRW_NEW_FAST_CLEAR_COLOR), + DEFINE_BIT(BRW_NEW_AUX_STATE), {0, 0, 0} }; |