From a535f993384650f871fe725dd6f8412d596ef088 Mon Sep 17 00:00:00 2001 From: Gregor Anich Date: Fri, 16 Jul 2004 23:21:04 +0000 Subject: [PATCH] Fix some warnings. svn path=/trunk/; revision=10159 --- reactos/lib/mesa32/src/drivers/windows/gdi/wmesa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/lib/mesa32/src/drivers/windows/gdi/wmesa.c b/reactos/lib/mesa32/src/drivers/windows/gdi/wmesa.c index 74c6caab697..0e6bd796fe4 100644 --- a/reactos/lib/mesa32/src/drivers/windows/gdi/wmesa.c +++ b/reactos/lib/mesa32/src/drivers/windows/gdi/wmesa.c @@ -399,7 +399,7 @@ static void clear_color( GLcontext* ctx, const GLfloat color[4] ) * Otherwise, we let swrast do it. */ -static clear(GLcontext* ctx, GLbitfield mask, +static void clear(GLcontext* ctx, GLbitfield mask, GLboolean all, GLint x, GLint y, GLint width, GLint height) { const GLuint *colorMask = (GLuint *) &ctx->Color.ColorMask; @@ -665,6 +665,7 @@ static void fast_flat_rgb_line( GLcontext* ctx, GLuint v0, static line_func choose_line_function( GLcontext* ctx ) { + return NULL; }