From: Ilia Mirkin Date: Sat, 26 Nov 2016 02:08:16 +0000 (-0500) Subject: swr: don't clear all dirty bits when changing so targets X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a5e1b02cf6103037b488db5daa3097fbcfcf670;p=mesa.git swr: don't clear all dirty bits when changing so targets Among other things, blits would clear existing SO targets which would cause a bunch of updates from u_blitter to be missed. Fixes fbo-scissor-blit fbo, probably among many others. Signed-off-by: Ilia Mirkin Reviewed-by: Bruce Cherniak --- diff --git a/src/gallium/drivers/swr/swr_state.cpp b/src/gallium/drivers/swr/swr_state.cpp index 41193795ce1..a67cb6050d9 100644 --- a/src/gallium/drivers/swr/swr_state.cpp +++ b/src/gallium/drivers/swr/swr_state.cpp @@ -1570,7 +1570,7 @@ swr_set_so_targets(struct pipe_context *pipe, swr->num_so_targets = num_targets; - swr->dirty = SWR_NEW_SO; + swr->dirty |= SWR_NEW_SO; }