diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2016-10-25 13:24:16 +0200 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-10-27 11:14:28 +0100 |
commit | 4083feb9390b786d4621e7d510d03c6e47d8ecc9 (patch) | |
tree | fd3c40299fede79425e44b906515073c2395746e | |
parent | 92a50b3d6e1d5283e01a1b1cb7edde93ce4f3f1e (diff) | |
download | external_mesa3d-4083feb9390b786d4621e7d510d03c6e47d8ecc9.zip external_mesa3d-4083feb9390b786d4621e7d510d03c6e47d8ecc9.tar.gz external_mesa3d-4083feb9390b786d4621e7d510d03c6e47d8ecc9.tar.bz2 |
nvc0: use correct bufctx when invalidating CP textures
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: "12.0 13.0" <mesa-stable@lists.freedesktop.org>
(cherry picked from commit 7b2712c367891e96384226a1fa94679a814235d0)
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_tex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c b/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c index cbc270d..e57391e 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; } |