From: Samuel Pitoiset Date: Tue, 25 Oct 2016 11:24:16 +0000 (+0200) Subject: nvc0: use correct bufctx when invalidating CP textures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b2712c367891e96384226a1fa94679a814235d0;p=mesa.git nvc0: use correct bufctx when invalidating CP textures Signed-off-by: Samuel Pitoiset Reviewed-by: Ilia Mirkin Cc: "12.0 13.0" --- diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c b/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c index cbc270d9f19..e57391e9a32 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c @@ -607,7 +607,7 @@ void nvc0_validate_textures(struct nvc0_context *nvc0) /* Invalidate all CP textures because they are aliased. */ for (int i = 0; i < nvc0->num_textures[5]; i++) - nouveau_bufctx_reset(nvc0->bufctx_3d, NVC0_BIND_CP_TEX(i)); + nouveau_bufctx_reset(nvc0->bufctx_cp, NVC0_BIND_CP_TEX(i)); nvc0->textures_dirty[5] = ~0; nvc0->dirty_cp |= NVC0_NEW_CP_TEXTURES; }