From 5d1af60edb1dbdf69fbf08b93fe0781f33f075dd Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 12 Feb 2008 15:13:37 +1100 Subject: [PATCH] nv40: fix inline u08/u16 indices --- src/mesa/pipe/nv40/nv40_vbo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesa/pipe/nv40/nv40_vbo.c b/src/mesa/pipe/nv40/nv40_vbo.c index 552058b3ae7..4e9cdb4585a 100644 --- a/src/mesa/pipe/nv40/nv40_vbo.c +++ b/src/mesa/pipe/nv40/nv40_vbo.c @@ -235,9 +235,9 @@ nv40_draw_elements_u08(struct nv40_context *nv40, void *ib, } while (count) { - push = MIN2(count, 2046); + push = MIN2(count, 2047 * 2); - BEGIN_RING_NI(curie, NV40TCL_VB_ELEMENT_U16, push); + BEGIN_RING_NI(curie, NV40TCL_VB_ELEMENT_U16, push >> 1); for (i = 0; i < push; i+=2) OUT_RING((elts[i+1] << 16) | elts[i]); @@ -260,9 +260,9 @@ nv40_draw_elements_u16(struct nv40_context *nv40, void *ib, } while (count) { - push = MIN2(count, 2046); + push = MIN2(count, 2047 * 2); - BEGIN_RING_NI(curie, NV40TCL_VB_ELEMENT_U16, push); + BEGIN_RING_NI(curie, NV40TCL_VB_ELEMENT_U16, push >> 1); for (i = 0; i < push; i+=2) OUT_RING((elts[i+1] << 16) | elts[i]); -- 2.30.2