From: Tapani Pälli Date: Mon, 4 Sep 2017 05:02:13 +0000 (+0300) Subject: vbo: fix build errors on android X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0986f686328216fa201769c630372fd4b6f8877a;p=mesa.git vbo: fix build errors on android incompatible pointer to integer conversion assigning to 'GLintptr' (aka 'int') from 'const char *' [-Werror,-Wint-conversion] offset = indices; ^ ~~~~~~~ Fixes: 2d93b462b4d ("vbo: fix offset in minmax cache key") Signed-off-by: Tapani Pälli Reviewed-by: Charmaine Lee Reviewed-by: Emil Velikov --- diff --git a/src/mesa/vbo/vbo_minmax_index.c b/src/mesa/vbo/vbo_minmax_index.c index 58a2af49aca..1377926bbab 100644 --- a/src/mesa/vbo/vbo_minmax_index.c +++ b/src/mesa/vbo/vbo_minmax_index.c @@ -255,7 +255,7 @@ vbo_get_minmax_index(struct gl_context *ctx, count, min_index, max_index)) return; - offset = indices; + offset = (GLintptr) indices; indices = ctx->Driver.MapBufferRange(ctx, offset, size, GL_MAP_READ_BIT, ib->obj, MAP_INTERNAL);