diff options
author | Chia-I Wu <[email protected]> | 2010-07-29 15:54:10 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-07-29 15:55:14 +0800 |
commit | 92f9b05499de9f0e8eda11d1a75ba7955c9cc602 (patch) | |
tree | eadac03fd0c5f379a0b1997b8e5bf48e1e5ed9a2 /src/gallium/drivers/i915/i915_context.c | |
parent | 2bff1a08d911e8a39661bb65a8ffd684b8782f5b (diff) |
gallium: Avoid void pointer arithmetic.
This fixes fdo bug #29286.
Diffstat (limited to 'src/gallium/drivers/i915/i915_context.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i915/i915_context.c b/src/gallium/drivers/i915/i915_context.c index 496efc99da4..2beb9e3091f 100644 --- a/src/gallium/drivers/i915/i915_context.c +++ b/src/gallium/drivers/i915/i915_context.c @@ -67,8 +67,8 @@ i915_draw_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info) * Map index buffer, if present */ if (info->indexed && i915->index_buffer.buffer) { - mapped_indices = i915_buffer(i915->index_buffer.buffer)->data; - mapped_indices += i915->index_buffer.offset; + char *indices = (char *) i915_buffer(i915->index_buffer.buffer)->data; + mapped_indices = (void *) (indices + i915->index_buffer.offset); } draw_set_mapped_element_buffer_range(draw, (mapped_indices) ? |