aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/draw/draw_context.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-06-06 14:33:05 -0600
committerBrian Paul <[email protected]>2011-06-07 07:57:26 -0600
commit57f2f84f0e2a06313d30b3d9341229f6643683a1 (patch)
tree66223ead33c851e891f58c64d636ac0479d69789 /src/gallium/auxiliary/draw/draw_context.c
parentef59049c5242a1be7fa59a182d342191185dd62b (diff)
draw: s/1/TRUE/
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c
index d99f94edc43..f8196bb476f 100644
--- a/src/gallium/auxiliary/draw/draw_context.c
+++ b/src/gallium/auxiliary/draw/draw_context.c
@@ -128,8 +128,8 @@ boolean draw_init(struct draw_context *draw)
ASSIGN_4V( draw->plane[4], 0, 0, 1, 1 ); /* yes these are correct */
ASSIGN_4V( draw->plane[5], 0, 0, -1, 1 ); /* mesa's a bit wonky */
draw->nr_planes = 6;
- draw->clip_xy = 1;
- draw->clip_z = 1;
+ draw->clip_xy = TRUE;
+ draw->clip_z = TRUE;
draw->reduced_prim = ~0; /* != any of PIPE_PRIM_x */