From: Ilia Mirkin Date: Sat, 16 Aug 2014 05:00:39 +0000 (-0400) Subject: nouveau: make sure to invalidate any vbo state as well X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8867ffbf95808dfa82029ad89d1571799a242d4d;p=mesa.git nouveau: make sure to invalidate any vbo state as well Reviewed-by: Francisco Jerez Signed-off-by: Ilia Mirkin Cc: --- diff --git a/src/mesa/drivers/dri/nouveau/nouveau_state.c b/src/mesa/drivers/dri/nouveau/nouveau_state.c index 596b3c4b212..db4915fc753 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_state.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_state.c @@ -492,6 +492,7 @@ nouveau_update_state(struct gl_context *ctx, GLbitfield new_state) _swrast_InvalidateState(ctx, new_state); _tnl_InvalidateState(ctx, new_state); + _vbo_InvalidateState(ctx, new_state); nouveau_state_emit(ctx); }