From: Matthieu Castet Date: Sun, 28 Jan 2007 22:26:21 +0000 (+0100) Subject: nouveau : nv10 mixing cached stuff with not cached stuff is bad. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7c0a6ddcddc8d91fde0a7cb5a2bce85c708d438;p=mesa.git nouveau : nv10 mixing cached stuff with not cached stuff is bad. --- diff --git a/src/mesa/drivers/dri/nouveau/nv10_state.c b/src/mesa/drivers/dri/nouveau/nv10_state.c index 0e912e73ffe..4e9bccb2430 100644 --- a/src/mesa/drivers/dri/nouveau/nv10_state.c +++ b/src/mesa/drivers/dri/nouveau/nv10_state.c @@ -688,10 +688,10 @@ static GLboolean nv10BindBuffers(nouveauContextPtr nmesa, int num_color, if (color[0]->mesa._ActualFormat != GL_RGBA8) { format = 0x103; /* R5G6B5 color buffer */ } - OUT_RING(format); - OUT_RING(pitch); - OUT_RING(color[0]->offset); - OUT_RING(depth ? depth->offset : color[0]->offset); + OUT_RING_CACHE(format); + OUT_RING_CACHE(pitch); + OUT_RING_CACHE(color[0]->offset); + OUT_RING_CACHE(depth ? depth->offset : color[0]->offset); return GL_TRUE; }