diff options
author | Brian Paul <[email protected]> | 2011-06-08 08:05:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-06-08 08:05:40 -0600 |
commit | 5f2deba9f3f3f9230a9fdd2848e20c1e23e98b8f (patch) | |
tree | 82bd69067d4f92bf548ccdf061ec1a6e2327c7e6 /src/gallium/drivers/r600/r600_pipe.h | |
parent | f6572017b94a137a4102342ebf6cd20dedc90271 (diff) |
gallium: s/bool/boolean/
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index f40d6fd3fa2..d92b74ebc4e 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -87,7 +87,7 @@ struct r600_pipe_sampler_view { struct r600_pipe_rasterizer { struct r600_pipe_state rstate; - bool flatshade; + boolean flatshade; unsigned sprite_coord_enable; float offset_units; float offset_scale; @@ -193,17 +193,17 @@ struct r600_pipe_context { struct r600_pipe_state spi; /* shader information */ unsigned sprite_coord_enable; - bool flatshade; - bool export_16bpc; + boolean flatshade; + boolean export_16bpc; unsigned alpha_ref; - bool alpha_ref_dirty; + boolean alpha_ref_dirty; struct r600_textures_info ps_samplers; struct r600_pipe_fences fences; struct u_vbuf_mgr *vbuf_mgr; struct util_slab_mempool pool_transfers; - bool blit; + boolean blit; }; |