diff options
author | Brian Paul <[email protected]> | 2010-05-12 12:10:55 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-12 12:43:09 -0600 |
commit | f81ec062c2d29ec682dd913a815db347e09482cb (patch) | |
tree | 343103328c79781e909946b920822325632d7382 /src | |
parent | 5b876241a0f9a549c247e602d2b19967cd7f2d6a (diff) |
gallivm: s/bool/boolean
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_format_aos.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c b/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c index f1390859fa5..4b167997455 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c @@ -62,9 +62,9 @@ lp_build_unpack_rgba_aos(LLVMBuilderRef builder, LLVMValueRef scales[4]; LLVMValueRef swizzles[4]; LLVMValueRef aux[4]; - bool normalized; + boolean normalized; int empty_channel; - bool needs_uitofp; + boolean needs_uitofp; unsigned shift; unsigned i; @@ -208,7 +208,7 @@ lp_build_pack_rgba_aos(LLVMBuilderRef builder, LLVMValueRef shifted, casted, scaled, unswizzled; LLVMValueRef shifts[4]; LLVMValueRef scales[4]; - bool normalized; + boolean normalized; unsigned shift; unsigned i, j; |