diff options
author | Keith Whitwell <[email protected]> | 2010-02-03 11:52:14 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-02-03 11:52:14 +0000 |
commit | 64da2aeebc04a98c999e4dac9290999d03c1e3d5 (patch) | |
tree | 84a813d01aa9c510d548e4a28eb901d917c4b9f8 /src/mesa/vbo | |
parent | db0eb3a437fbc88429b2d73444335b61035d824f (diff) |
vbo: fix void * arithmetic warning
Diffstat (limited to 'src/mesa/vbo')
-rw-r--r-- | src/mesa/vbo/vbo_split_inplace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_split_inplace.c b/src/mesa/vbo/vbo_split_inplace.c index 2a671a5850e..2fc866c5773 100644 --- a/src/mesa/vbo/vbo_split_inplace.c +++ b/src/mesa/vbo/vbo_split_inplace.c @@ -72,7 +72,8 @@ static void flush_vertex( struct split_context *split ) ib = *split->ib; ib.count = split->max_index - split->min_index + 1; - ib.ptr += split->min_index * _mesa_sizeof_type(ib.type); + ib.ptr = (const void *)((const char *)ib.ptr + + split->min_index * _mesa_sizeof_type(ib.type)); /* Rebase the primitives to save index buffer entries. */ for (i = 0; i < split->dstprim_nr; i++) |