Setting brw->ctx.NewDriverState and brw->ctx.NewGLState affects the dirty bits for the current pipeline. But, we need to flag everything dirty on *both* pipelines, so that when we switch back, we'll realize our programs are stale and re-upload them. To accomplish this, flag the saved state for both pipelines. Only one of them should matter, but this way we don't have to check which we need to set. It's harmless to set the other. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93790 Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Tested-by: Ilia Mirkin <imirkin@alum.mit.edu>tags/11.2-branchpoint
@@ -387,8 +387,12 @@ brw_clear_cache(struct brw_context *brw, struct brw_cache *cache) | |||
/* We need to make sure that the programs get regenerated, since | |||
* any offsets leftover in brw_context will no longer be valid. | |||
*/ | |||
brw->NewGLState |= ~0; | |||
brw->ctx.NewDriverState |= ~0ull; | |||
brw->NewGLState = ~0; | |||
brw->ctx.NewDriverState = ~0ull; | |||
brw->state.pipelines[BRW_RENDER_PIPELINE].mesa = ~0; | |||
brw->state.pipelines[BRW_RENDER_PIPELINE].brw = ~0ull; | |||
brw->state.pipelines[BRW_COMPUTE_PIPELINE].mesa = ~0; | |||
brw->state.pipelines[BRW_COMPUTE_PIPELINE].brw = ~0ull; | |||
intel_batchbuffer_flush(brw); | |||
} | |||