diff options
author | Oliver McFadden <z3ro.geek@gmail.com> | 2007-10-18 16:01:42 +0000 |
---|---|---|
committer | Oliver McFadden <z3ro.geek@gmail.com> | 2007-10-18 16:01:42 +0000 |
commit | d16b844ff64082b62ad481f543fcef587a1c1612 (patch) | |
tree | 05341f60629dd0267f8dd07f507ddc37b6df3dcf /src/mesa/pipe/draw | |
parent | 7cd58433fa59fe9db38b515a48feeef23405630e (diff) |
pipe/draw/draw_context.c:47: error: 'false' undeclared (first use in this function)
Diffstat (limited to 'src/mesa/pipe/draw')
-rw-r--r-- | src/mesa/pipe/draw/draw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |