svga: s/0/FALSE/
authorBrian Paul <brianp@vmware.com>
Fri, 11 Oct 2013 15:20:56 +0000 (09:20 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 11 Oct 2013 23:07:44 +0000 (17:07 -0600)
src/gallium/drivers/svga/svga_pipe_rasterizer.c

index a9a23966d6b0fe97c79a817c8dc260db31e673f3..61e13fae9d9e9d5f5542a0c8f6ffb0dd48e352f2 100644 (file)
@@ -138,11 +138,11 @@ svga_create_rasterizer_state(struct pipe_context *pipe,
       int fill = PIPE_POLYGON_MODE_FILL;
       boolean offset_front = util_get_offset(templ, fill_front);
       boolean offset_back = util_get_offset(templ, fill_back);
-      boolean offset  = 0;
+      boolean offset = FALSE;
 
       switch (templ->cull_face) {
       case PIPE_FACE_FRONT_AND_BACK:
-         offset = 0;
+         offset = FALSE;
          fill = PIPE_POLYGON_MODE_FILL;
          break;