[Mesa-dev] [PATCH 1/3] gallium/util: fix unused variable warning
Timothy Arceri
tarceri at itsqueeze.com
Thu Jul 20 00:07:02 UTC 2017
---
src/gallium/auxiliary/util/u_threaded_context.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/gallium/auxiliary/util/u_threaded_context.c b/src/gallium/auxiliary/util/u_threaded_context.c
index cb9ea3a..a9fc670 100644
--- a/src/gallium/auxiliary/util/u_threaded_context.c
+++ b/src/gallium/auxiliary/util/u_threaded_context.c
@@ -1978,9 +1978,11 @@ static void
tc_call_generate_mipmap(struct pipe_context *pipe, union tc_payload *payload)
{
struct tc_generate_mipmap *p = (struct tc_generate_mipmap *)payload;
- bool result = pipe->generate_mipmap(pipe, p->res, p->format, p->base_level,
- p->last_level, p->first_layer,
- p->last_layer);
+ bool MAYBE_UNUSED result = pipe->generate_mipmap(pipe, p->res, p->format,
+ p->base_level,
+ p->last_level,
+ p->first_layer,
+ p->last_layer);
assert(result);
pipe_resource_reference(&p->res, NULL);
}
--
2.9.4
More information about the mesa-dev
mailing list