From: Brian Paul Date: Fri, 27 May 2016 00:58:16 +0000 (-0600) Subject: svga: remove unneeded casts in get_query_result_vgpu9() calls X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2318d2015a050955c2631eea7fc49af970b9abe8;p=mesa.git svga: remove unneeded casts in get_query_result_vgpu9() calls Reviewed-by: Charmaine Lee --- diff --git a/src/gallium/drivers/svga/svga_pipe_query.c b/src/gallium/drivers/svga/svga_pipe_query.c index c1bd8ec3a0d..4febf9bd510 100644 --- a/src/gallium/drivers/svga/svga_pipe_query.c +++ b/src/gallium/drivers/svga/svga_pipe_query.c @@ -1078,7 +1078,7 @@ svga_get_query_result(struct pipe_context *pipe, (void *)&occResult, sizeof(occResult)); *result = (uint64_t)occResult.samplesRendered; } else { - ret = get_query_result_vgpu9(svga, sq, wait, (uint64_t *)result); + ret = get_query_result_vgpu9(svga, sq, wait, result); } break; case PIPE_QUERY_OCCLUSION_PREDICATE: { @@ -1089,7 +1089,7 @@ svga_get_query_result(struct pipe_context *pipe, vresult->b = occResult.anySamplesRendered != 0; } else { uint64_t count; - ret = get_query_result_vgpu9(svga, sq, wait, (uint64_t *)&count); + ret = get_query_result_vgpu9(svga, sq, wait, &count); vresult->b = count != 0; } break;