summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_test_blend.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-05-27 14:54:21 -0600
committerBrian Paul <brianp@vmware.com>2010-05-27 14:54:21 -0600
commitbd024ce2b18c8086c6c557cfe9362eb7c954a724 (patch)
treed60ea0d7f6ae7669b329babbf7819725b54c83e1 /src/gallium/drivers/llvmpipe/lp_test_blend.c
parent0faefb194e58ebd6a58c9ce2d00be286b8746613 (diff)
llvmpipe: s/bool/boolean
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_test_blend.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_test_blend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_blend.c b/src/gallium/drivers/llvmpipe/lp_test_blend.c
index 072d699666..557eb8e3e6 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_blend.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_blend.c
@@ -805,7 +805,7 @@ test_all(unsigned verbose, FILE *fp)
struct pipe_blend_state blend;
enum vector_mode mode;
const struct lp_type *type;
- bool success = TRUE;
+ boolean success = TRUE;
for(rgb_func = blend_funcs; rgb_func < &blend_funcs[num_funcs]; ++rgb_func) {
for(alpha_func = blend_funcs; alpha_func < &blend_funcs[num_funcs]; ++alpha_func) {
@@ -859,7 +859,7 @@ test_some(unsigned verbose, FILE *fp, unsigned long n)
enum vector_mode mode;
const struct lp_type *type;
unsigned long i;
- bool success = TRUE;
+ boolean success = TRUE;
for(i = 0; i < n; ++i) {
rgb_func = &blend_funcs[rand() % num_funcs];