From: Eric Engestrom Date: Sat, 22 Jun 2019 17:05:14 +0000 (+0100) Subject: mesa: replace MAYBE_UNUSED with UNUSED X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=513e67d2e4844a6a31fab3e3f84eb7aaa142a11f;p=mesa.git mesa: replace MAYBE_UNUSED with UNUSED MAYBE_UNUSED is going away, so let's replace legitimate uses of it with UNUSED, which the former aliased to so far anyway. Signed-off-by: Eric Engestrom Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/texstore.h b/src/mesa/main/texstore.h index 2fef7ba7d7d..9d735d16c70 100644 --- a/src/mesa/main/texstore.h +++ b/src/mesa/main/texstore.h @@ -60,8 +60,8 @@ struct gl_texture_image; */ #define TEXSTORE_PARAMS \ struct gl_context *ctx, GLuint dims, \ - MAYBE_UNUSED GLenum baseInternalFormat, \ - MAYBE_UNUSED mesa_format dstFormat, \ + UNUSED GLenum baseInternalFormat, \ + UNUSED mesa_format dstFormat, \ GLint dstRowStride, \ GLubyte **dstSlices, \ GLint srcWidth, GLint srcHeight, GLint srcDepth, \