summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-01-21 15:34:01 -0500
committerAlex Deucher <alexdeucher@gmail.com>2009-01-21 15:34:01 -0500
commitfef1c12fbe4ceb4676258850d1fa5cac994f7c21 (patch)
tree7b5c5eaf21113dc775d9d4a4df982beed43ffeaa
parent549ae63aecc2624a69b41ce4db75883d03d59c23 (diff)
Fix compilation with RADEON_TRACE_FALL set
noticed by curaga on phoronix forum
-rw-r--r--src/radeon_exa_render.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c
index 50446ca2..e33afef3 100644
--- a/src/radeon_exa_render.c
+++ b/src/radeon_exa_render.c
@@ -539,7 +539,7 @@ static Bool FUNC_NAME(R100PrepareComposite)(int op,
return FALSE;
if (pDstPicture->format == PICT_a8 && RadeonBlendOp[op].dst_alpha)
- RADEON_FALLBACK("Can't dst alpha blend A8\n");
+ RADEON_FALLBACK(("Can't dst alpha blend A8\n"));
if (pMask)
info->accel_state->has_mask = TRUE;
@@ -847,7 +847,7 @@ static Bool FUNC_NAME(R200PrepareComposite)(int op, PicturePtr pSrcPicture,
return FALSE;
if (pDstPicture->format == PICT_a8 && RadeonBlendOp[op].dst_alpha)
- RADEON_FALLBACK("Can't dst alpha blend A8\n");
+ RADEON_FALLBACK(("Can't dst alpha blend A8\n"));
if (pMask)
info->accel_state->has_mask = TRUE;