diff options
author | Christoph Bumiller <e0425955@student.tuwien.ac.at> | 2009-07-28 17:21:31 +0200 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2009-07-29 09:40:34 +1000 |
commit | 72813ba5b6ac60519957a96afbefb62e3be91c19 (patch) | |
tree | 090e1108cd269d7844b54214c71e7f5f0c1b6bbf /src | |
parent | df189c9efc0fbcdce816af483f0147ab635280d1 (diff) |
nv50: should use uint32_t ptr in draw_elements_inline_u32
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_vbo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_vbo.c b/src/gallium/drivers/nv50/nv50_vbo.c index f81929f238..cbd9d6ab8d 100644 --- a/src/gallium/drivers/nv50/nv50_vbo.c +++ b/src/gallium/drivers/nv50/nv50_vbo.c @@ -139,7 +139,7 @@ nv50_draw_elements_inline_u16(struct nv50_context *nv50, uint16_t *map, } static INLINE void -nv50_draw_elements_inline_u32(struct nv50_context *nv50, uint8_t *map, +nv50_draw_elements_inline_u32(struct nv50_context *nv50, uint32_t *map, unsigned start, unsigned count) { struct nouveau_channel *chan = nv50->screen->tesla->channel; |