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 | |
parent | c16c59f8f9b6aa7a4a6a6465582ad98f02a3606a (diff) |
Fix RADEON_FALLBACK logging
Diffstat (limited to 'src')
-rw-r--r-- | src/evergreen_exa.c | 4 | ||||
-rw-r--r-- | src/r600_exa.c | 4 | ||||
-rw-r--r-- | src/radeon_exa_render.c | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/src/evergreen_exa.c b/src/evergreen_exa.c index bd571356..86f455de 100644 --- a/src/evergreen_exa.c +++ b/src/evergreen_exa.c @@ -1134,7 +1134,7 @@ static Bool EVERGREENPrepareComposite(int op, PicturePtr pSrcPicture, if (!pSrc) { pSrc = RADEONSolidPixmap(pScreen, pSrcPicture->pSourcePict->solidFill.color); if (!pSrc) - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } dst_obj.bo = radeon_get_pixmap_bo(pDst); @@ -1165,7 +1165,7 @@ static Bool EVERGREENPrepareComposite(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")); } } mask_obj.bo = radeon_get_pixmap_bo(pMask); diff --git a/src/r600_exa.c b/src/r600_exa.c index fbb1383d..b2432346 100644 --- a/src/r600_exa.c +++ b/src/r600_exa.c @@ -1179,7 +1179,7 @@ static Bool R600PrepareComposite(int op, PicturePtr pSrcPicture, if (!pSrc) { pSrc = RADEONSolidPixmap(pScreen, pSrcPicture->pSourcePict->solidFill.color); if (!pSrc) - RADEON_FALLBACK("Failed to create solid scratch pixmap\n"); + RADEON_FALLBACK(("Failed to create solid scratch pixmap\n")); } dst_obj.bo = radeon_get_pixmap_bo(pDst); @@ -1211,7 +1211,7 @@ static Bool R600PrepareComposite(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")); } } 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")); } } |