cogl: Avoid pointer arithmetic on void* pointers

Some code was doing pointer arithmetic on the return value from
cogl_buffer_map which is void* pointer. This is a GCC extension so we
should try to avoid it. This patch adds casts to guint8* where
appropriate.

Based on a patch by Fan, Chun-wei.

http://bugzilla.clutter-project.org/show_bug.cgi?id=2561
This commit is contained in:
Neil Roberts
2011-02-15 12:43:26 +00:00
parent c4cfdd59d3
commit dd7b1326eb
2 changed files with 4 additions and 4 deletions

View File

@ -600,7 +600,7 @@ enable_gl_state (CoglDrawFlags flags,
CoglAttribute *attribute = attributes[i];
CoglVertexArray *vertex_array;
CoglBuffer *buffer;
void *base;
guint8 *base;
#ifdef HAVE_COGL_GLES2
int attrib_location;
#endif
@ -1186,7 +1186,7 @@ _cogl_draw_indexed_attributes_array (CoglVerticesMode mode,
ValidateLayerState state;
CoglPipeline *source;
CoglBuffer *buffer;
void *base;
guint8 *base;
size_t array_offset;
size_t index_size;
GLenum indices_gl_type = 0;