diff options
author | Kenneth Graunke <[email protected]> | 2011-10-07 12:26:50 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-10-18 11:38:39 -0700 |
commit | 2e5a1a254ed81b1d3efa6064f48183eefac784d0 (patch) | |
tree | 0aba873855392f49ad3123c91f97ac2b3789a8eb /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | 1b45d68c117d716adb488dcaac16e0834e2471ba (diff) |
intel: Convert from GLboolean to 'bool' from stdbool.h.
I initially produced the patch using this bash command:
for file in {intel,i915,i965}/*.{c,cpp,h}; do [ ! -h $file ] && sed -i
's/GLboolean/bool/g' $file && sed -i 's/GL_TRUE/true/g' $file && sed -i
's/GL_FALSE/false/g' $file; done
Then I manually added #include <stdbool.h> to fix compilation errors,
and converted a few functions back to GLboolean that were used in core
Mesa's function pointer table to avoid "incompatible pointer" warnings.
Finally, I cleaned up some whitespace issues introduced by the change.
Signed-off-by: Kenneth Graunke <[email protected]>
Acked-by: Chad Versace <[email protected]>
Acked-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index adc09f81630..18c2c2b5edc 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -116,7 +116,7 @@ struct brw_compile { struct brw_instruction *current; GLuint flag_value; - GLboolean single_program_flow; + bool single_program_flow; bool compressed; struct brw_context *brw; @@ -775,7 +775,7 @@ static INLINE struct brw_indirect brw_indirect( GLuint addr_subnr, GLint offset } /** Do two brw_regs refer to the same register? */ -static INLINE GLboolean +static INLINE bool brw_same_reg(struct brw_reg r1, struct brw_reg r2) { return r1.file == r2.file && r1.nr == r2.nr; @@ -880,7 +880,7 @@ void brw_set_dp_write_message(struct brw_compile *p, GLuint msg_control, GLuint msg_type, GLuint msg_length, - GLboolean header_present, + bool header_present, GLuint pixel_scoreboard_clear, GLuint response_length, GLuint end_of_thread, @@ -890,12 +890,12 @@ void brw_urb_WRITE(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, - GLboolean allocate, - GLboolean used, + bool allocate, + bool used, GLuint msg_length, GLuint response_length, - GLboolean eot, - GLboolean writes_complete, + bool eot, + bool writes_complete, GLuint offset, GLuint swizzle); @@ -903,9 +903,9 @@ void brw_ff_sync(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, - GLboolean allocate, + bool allocate, GLuint response_length, - GLboolean eot); + bool eot); void brw_fb_WRITE(struct brw_compile *p, int dispatch_width, @@ -914,8 +914,8 @@ void brw_fb_WRITE(struct brw_compile *p, GLuint binding_table_index, GLuint msg_length, GLuint response_length, - GLboolean eot, - GLboolean header_present); + bool eot, + bool header_present); void brw_SAMPLE(struct brw_compile *p, struct brw_reg dest, @@ -927,7 +927,7 @@ void brw_SAMPLE(struct brw_compile *p, GLuint msg_type, GLuint response_length, GLuint msg_length, - GLboolean eot, + bool eot, GLuint header_present, GLuint simd_mode); |