diff options
author | Emil Velikov <[email protected]> | 2014-01-16 16:55:52 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-01-18 19:17:28 +0000 |
commit | 19069803bed95e64bf43185e7f02550ebbf92dde (patch) | |
tree | 50ad241733f0045e900dbcd7e42021113c7db921 | |
parent | 1773611c526844cecee84dd8c8241f888666aa1c (diff) |
nv50: pass vtxbuf index as unsigned
The index passed to the function is already unsigned, and internally
we threat it as unsigned.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
-rw-r--r-- | src/gallium/drivers/nouveau/nv50/nv50_vbo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_vbo.c b/src/gallium/drivers/nouveau/nv50/nv50_vbo.c index 1dcccfe0806..208c116b567 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_vbo.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_vbo.c @@ -189,7 +189,7 @@ nv50_emit_vtxattr(struct nv50_context *nv50, struct pipe_vertex_buffer *vb, } static INLINE void -nv50_user_vbuf_range(struct nv50_context *nv50, int vbi, +nv50_user_vbuf_range(struct nv50_context *nv50, unsigned vbi, uint32_t *base, uint32_t *size) { assert(vbi < PIPE_MAX_ATTRIBS); |