From d16b844ff64082b62ad481f543fcef587a1c1612 Mon Sep 17 00:00:00 2001 From: Oliver McFadden Date: Thu, 18 Oct 2007 16:01:42 +0000 Subject: pipe/draw/draw_context.c:47: error: 'false' undeclared (first use in this function) --- src/mesa/pipe/draw/draw_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/pipe/draw') diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c index e252148903..d2015bd514 100644 --- a/src/mesa/pipe/draw/draw_context.c +++ b/src/mesa/pipe/draw/draw_context.c @@ -44,7 +44,7 @@ struct draw_context *draw_create( void ) #if defined(__i386__) || defined(__386__) draw->use_sse = getenv("GALLIUM_SSE") != NULL; #else - draw->use_sse = false; + draw->use_sse = FALSE; #endif /* create pipeline stages */ -- cgit v1.2.3