xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Wed Jan 21 12:35:07 PST 2009


 src/radeon_exa_render.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fef1c12fbe4ceb4676258850d1fa5cac994f7c21
Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Wed Jan 21 15:34:01 2009 -0500

    Fix compilation with RADEON_TRACE_FALL set
    
    noticed by curaga on phoronix forum

diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c
index 50446ca..e33afef 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;


More information about the xorg-commit mailing list