From 0986f686328216fa201769c630372fd4b6f8877a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tapani=20P=C3=A4lli?= Date: Mon, 4 Sep 2017 08:02:13 +0300 Subject: [PATCH] vbo: fix build errors on android MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/mesa/vbo/vbo_minmax_index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/vbo/vbo_minmax_index.c b/src/mesa/vbo/vbo_minmax_index.c index 58a2af4..1377926 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); -- 2.7.4