diff options
author | Grigori Goronzy <greg@chown.ath.cx> | 2013-05-18 13:46:03 +0200 |
---|---|---|
committer | Grigori Goronzy <greg@chown.ath.cx> | 2013-07-22 05:05:34 +0200 |
commit | c08e09b7bec441c4bf93b4cae4de1260754bf940 (patch) | |
tree | 176e177c0701a228340df0b1599f5465696de77d /src/radeon_exa_render.c | |
parent | c16c59f8f9b6aa7a4a6a6465582ad98f02a3606a (diff) |
Fix RADEON_FALLBACK logging
Diffstat (limited to 'src/radeon_exa_render.c')
-rw-r--r-- | src/radeon_exa_render.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c index 1f6b86df..9510f7f4 100644 --- a/src/radeon_exa_render.c +++ b/src/radeon_exa_render.c @@ -602,7 +602,7 @@ static Bool R100PrepareComposite(int op, if (!pSrc) { pSrc = RADEONSolidPixmap(pScreen, cpu_to_le32(pSrcPicture->pSourcePict->solidFill.color)); if (!pSrc) - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } if (((dst_pitch >> pixel_shift) & 0x7) != 0) @@ -616,7 +616,7 @@ static Bool R100PrepareComposite(int op, if (!pMask) { if (!pSrcPicture->pDrawable) pScreen->DestroyPixmap(pSrc); - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } } @@ -967,7 +967,7 @@ static Bool R200PrepareComposite(int op, PicturePtr pSrcPicture, if (!pSrc) { pSrc = RADEONSolidPixmap(pScreen, cpu_to_le32(pSrcPicture->pSourcePict->solidFill.color)); if (!pSrc) - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } if (!RADEONSetupSourceTile(pSrcPicture, pSrc, FALSE, TRUE)) @@ -978,7 +978,7 @@ static Bool R200PrepareComposite(int op, PicturePtr pSrcPicture, if (!pMask) { if (!pSrcPicture->pDrawable) pScreen->DestroyPixmap(pSrc); - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } } @@ -1459,7 +1459,7 @@ static Bool R300PrepareComposite(int op, PicturePtr pSrcPicture, if (!pSrc) { pSrc = RADEONSolidPixmap(pScreen, cpu_to_le32(pSrcPicture->pSourcePict->solidFill.color)); if (!pSrc) - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } if (!RADEONSetupSourceTile(pSrcPicture, pSrc, TRUE, FALSE)) @@ -1470,7 +1470,7 @@ static Bool R300PrepareComposite(int op, PicturePtr pSrcPicture, if (!pMask) { if (!pSrcPicture->pDrawable) pScreen->DestroyPixmap(pSrc); - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } } |