[Mesa-dev] [PATCH 19/20] swrast: Silence many "warning: unused parameter ‘ctx’"
Ian Romanick
idr at freedesktop.org
Mon Aug 29 14:59:09 PDT 2011
From: Ian Romanick <ian.d.romanick at intel.com>
Not all drivers use ctx in LOCAL_VARS, so '(void) ctx;' is added to
all the function templates to make GCC happy.
---
src/mesa/swrast/s_spantemp.h | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/src/mesa/swrast/s_spantemp.h b/src/mesa/swrast/s_spantemp.h
index 8a94850..517c2eb 100644
--- a/src/mesa/swrast/s_spantemp.h
+++ b/src/mesa/swrast/s_spantemp.h
@@ -65,6 +65,7 @@ NAME(get_row)( struct gl_context *ctx, struct gl_renderbuffer *rb,
INC_PIXEL_PTR(pixel);
}
(void) rb;
+ (void) ctx;
}
@@ -82,6 +83,7 @@ NAME(get_values)( struct gl_context *ctx, struct gl_renderbuffer *rb,
FETCH_PIXEL(dest[i], pixel);
}
(void) rb;
+ (void) ctx;
}
@@ -111,6 +113,7 @@ NAME(put_row)( struct gl_context *ctx, struct gl_renderbuffer *rb,
}
}
(void) rb;
+ (void) ctx;
}
@@ -136,6 +139,7 @@ NAME(put_row_rgb)( struct gl_context *ctx, struct gl_renderbuffer *rb,
INC_PIXEL_PTR(pixel);
}
(void) rb;
+ (void) ctx;
}
@@ -165,6 +169,7 @@ NAME(put_mono_row)( struct gl_context *ctx, struct gl_renderbuffer *rb,
}
}
(void) rb;
+ (void) ctx;
}
@@ -186,6 +191,7 @@ NAME(put_values)( struct gl_context *ctx, struct gl_renderbuffer *rb,
}
}
(void) rb;
+ (void) ctx;
}
@@ -207,6 +213,7 @@ NAME(put_mono_values)( struct gl_context *ctx, struct gl_renderbuffer *rb,
}
}
(void) rb;
+ (void) ctx;
}
--
1.7.4.4
More information about the mesa-dev
mailing list