summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/compiler/radeon_program_print.c
diff options
context:
space:
mode:
authorTom Stellard <tstellar@gmail.com>2010-09-29 23:52:49 -0700
committerTom Stellard <tstellar@gmail.com>2010-11-21 18:48:31 -0800
commitddceededf850c942c1bb8185ec7dc0c203d3bad6 (patch)
tree811e95399efc2e6ef9567e410b288ad28cb6bef9 /src/mesa/drivers/dri/r300/compiler/radeon_program_print.c
parent681f56af807ed9e2a930a595ef509ee814d130dd (diff)
r300/compiler: Convert RGB to alpha in the scheduler
Diffstat (limited to 'src/mesa/drivers/dri/r300/compiler/radeon_program_print.c')
-rw-r--r--src/mesa/drivers/dri/r300/compiler/radeon_program_print.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_program_print.c b/src/mesa/drivers/dri/r300/compiler/radeon_program_print.c
index 618ab5a099..ae13f6742f 100644
--- a/src/mesa/drivers/dri/r300/compiler/radeon_program_print.c
+++ b/src/mesa/drivers/dri/r300/compiler/radeon_program_print.c
@@ -129,6 +129,7 @@ static char rc_swizzle_char(unsigned int swz)
case RC_SWIZZLE_HALF: return 'H';
case RC_SWIZZLE_UNUSED: return '_';
}
+ fprintf(stderr, "bad swz: %u\n", swz);
return '?';
}