diff options
author | Corbin Simpson <[email protected]> | 2009-11-07 10:26:57 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-11-07 11:53:14 -0800 |
commit | b6c3954138ef70ea7d2cbd3ba9519f404ef616d7 (patch) | |
tree | 9c404c964502416f4a75137bce935336e8871687 /src/gallium/drivers/r300/r300_render.c | |
parent | 7da3cc4241b8550ccc1ec5ba3c93334094f5fb11 (diff) |
r300g: s/false/FALSE/
Also s/true/TRUE/
Diffstat (limited to 'src/gallium/drivers/r300/r300_render.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_render.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index b4351d541d7..1532de367f6 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -173,7 +173,7 @@ boolean r300_draw_range_elements(struct pipe_context* pipe, struct r300_context* r300 = r300_context(pipe); if (!u_trim_pipe_prim(mode, &count)) - return false; + return FALSE; r300_update_derived_state(r300); @@ -211,7 +211,7 @@ boolean r300_draw_arrays(struct pipe_context* pipe, unsigned mode, struct r300_context* r300 = r300_context(pipe); if (!u_trim_pipe_prim(mode, &count)) - return false; + return FALSE; r300_update_derived_state(r300); |