[Mesa-dev] [PATCH v2 09/29] gallium/aux/util/u_format_other.c: Fix various -Wunused-param warnings

Gert Wollny gw.fossdev at gmail.com
Thu Nov 16 15:09:42 UTC 2017


Decorate the unused params with "UNUSED".

v2: move UNUSED decoration in front of parameter declaration

Signed-off-by: Gert Wollny <gw.fossdev at gmail.com>
Reviewed-by: Brian Paul <brianp at vmware.com> (v1)
---
 src/gallium/auxiliary/util/u_format_other.c | 34 ++++++++++++++---------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_format_other.c b/src/gallium/auxiliary/util/u_format_other.c
index c53bf550a6..4dbfd4eae1 100644
--- a/src/gallium/auxiliary/util/u_format_other.c
+++ b/src/gallium/auxiliary/util/u_format_other.c
@@ -75,7 +75,7 @@ util_format_r9g9b9e5_float_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride
 
 void
 util_format_r9g9b9e5_float_fetch_rgba_float(float *dst, const uint8_t *src,
-                                       unsigned i, unsigned j)
+                                       UNUSED unsigned i, UNUSED unsigned j)
 {
    uint32_t value = util_cpu_to_le32(*(const uint32_t *)src);
    rgb9e5_to_float3(value, dst);
@@ -178,7 +178,7 @@ util_format_r11g11b10_float_pack_rgba_float(uint8_t *dst_row, unsigned dst_strid
 
 void
 util_format_r11g11b10_float_fetch_rgba_float(float *dst, const uint8_t *src,
-                                       unsigned i, unsigned j)
+                                        UNUSED unsigned i, UNUSED unsigned j)
 {
    uint32_t value = util_cpu_to_le32(*(const uint32_t *)src);
    r11g11b10f_to_float3(value, dst);
@@ -239,44 +239,44 @@ util_format_r11g11b10_float_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stri
 
 
 void
-util_format_r1_unorm_unpack_rgba_float(float *dst_row, unsigned dst_stride,
-                                  const uint8_t *src_row, unsigned src_stride,
-                                  unsigned width, unsigned height)
+util_format_r1_unorm_unpack_rgba_float(UNUSED float *dst_row, UNUSED unsigned dst_stride,
+                                  UNUSED const uint8_t *src_row, UNUSED unsigned src_stride,
+                                  UNUSED unsigned width, UNUSED unsigned height)
 {
 
 }
 
 
 void
-util_format_r1_unorm_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride,
-                                const float *src_row, unsigned src_stride,
-                                unsigned width, unsigned height)
+util_format_r1_unorm_pack_rgba_float(UNUSED uint8_t *dst_row, UNUSED unsigned dst_stride,
+                                UNUSED const float *src_row, UNUSED unsigned src_stride,
+                                UNUSED unsigned width, UNUSED unsigned height)
 {
 
 }
 
 
 void
-util_format_r1_unorm_fetch_rgba_float(float *dst, const uint8_t *src,
-                                 unsigned i, unsigned j)
+util_format_r1_unorm_fetch_rgba_float(UNUSED float *dst, UNUSED const uint8_t *src,
+                                 UNUSED unsigned i, UNUSED unsigned j)
 {
 
 }
 
 
 void
-util_format_r1_unorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride,
-                                   const uint8_t *src_row, unsigned src_stride,
-                                   unsigned width, unsigned height)
+util_format_r1_unorm_unpack_rgba_8unorm(UNUSED uint8_t *dst_row, UNUSED unsigned dst_stride,
+                                   UNUSED const uint8_t *src_row, UNUSED unsigned src_stride,
+                                   UNUSED unsigned width, UNUSED unsigned height)
 {
 
 }
 
 
 void
-util_format_r1_unorm_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride,
-                                 const uint8_t *src_row, unsigned src_stride,
-                                 unsigned width, unsigned height)
+util_format_r1_unorm_pack_rgba_8unorm(UNUSED uint8_t *dst_row, UNUSED unsigned dst_stride,
+                                 UNUSED const uint8_t *src_row, UNUSED unsigned src_stride,
+                                 UNUSED unsigned width, UNUSED unsigned height)
 {
 }
 
@@ -407,7 +407,7 @@ util_format_r8g8bx_snorm_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride,
 
 void
 util_format_r8g8bx_snorm_fetch_rgba_float(float *dst, const uint8_t *src,
-                                     unsigned i, unsigned j)
+                                     UNUSED unsigned i, UNUSED unsigned j)
 {
    uint16_t value = util_cpu_to_le16(*(const uint16_t *)src);
    int16_t r, g;
-- 
2.13.6



More information about the mesa-dev mailing list