From: Ben Skeggs Date: Mon, 5 Feb 2007 15:28:55 +0000 (+1100) Subject: nouveau: OUT_RINGp expects the size in dwords, not bytes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4b3679c6c5b8b47e8071a253bcea570b91e30b17;p=mesa.git nouveau: OUT_RINGp expects the size in dwords, not bytes. This fixes the *actual* bug that the previous commit was supposed to fix.. --- diff --git a/src/mesa/drivers/dri/nouveau/nv10_swtcl.c b/src/mesa/drivers/dri/nouveau/nv10_swtcl.c index 6f57b775df0..eec67bd8059 100644 --- a/src/mesa/drivers/dri/nouveau/nv10_swtcl.c +++ b/src/mesa/drivers/dri/nouveau/nv10_swtcl.c @@ -196,9 +196,9 @@ static inline void nv10_render_generic_primitive_elts(GLcontext *ctx,GLuint star GLuint j; nv10ExtendPrimitive(nmesa, size_dword); - nv10StartPrimitive(nmesa,prim+1,size_dword*count); + nv10StartPrimitive(nmesa,prim+1,size_dword); for (j=start; j