From: Nicolai Hähnle Date: Mon, 18 Sep 2017 15:38:41 +0000 (+0200) Subject: freedreno: compile fix X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f0233ac82da7fa14f98f340e239148950781741a;p=mesa.git freedreno: compile fix Fixes: 3f6b3d9db ("gallium: add PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE") Reported-by: Jan Vesely --- diff --git a/src/gallium/drivers/freedreno/a4xx/fd4_query.c b/src/gallium/drivers/freedreno/a4xx/fd4_query.c index 809e7570b48..0cd9ab31f6a 100644 --- a/src/gallium/drivers/freedreno/a4xx/fd4_query.c +++ b/src/gallium/drivers/freedreno/a4xx/fd4_query.c @@ -251,7 +251,7 @@ static const struct fd_hw_sample_provider occlusion_predicate = { .accumulate_result = occlusion_predicate_accumulate_result, }; -static const struct fd_hw_sample_provider occlusion_predicate = { +static const struct fd_hw_sample_provider occlusion_predicate_conservative = { .query_type = PIPE_QUERY_OCCLUSION_PREDICATE_CONSERVATIVE, .active = FD_STAGE_DRAW, .get_sample = occlusion_get_sample,