diff options
author | Alex Deucher <alex@samba.(none)> | 2008-03-18 19:39:47 -0400 |
---|---|---|
committer | Alex Deucher <alex@samba.(none)> | 2008-03-18 19:39:47 -0400 |
commit | bc34df7a9c35cdd38c49d5c22471f3f487a33d6e (patch) | |
tree | 5f76618ca974c5659339e431e5e079d2e640202b /src/radeon_exa_render.c | |
parent | 6f03f8fe0ecf4181dcf125049cf63bece0451fb2 (diff) |
R3xx/R5xx: switch an ErrorF() to RADEONFALLBACK()
Diffstat (limited to 'src/radeon_exa_render.c')
-rw-r--r-- | src/radeon_exa_render.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c index 0c94a232..65924385 100644 --- a/src/radeon_exa_render.c +++ b/src/radeon_exa_render.c @@ -177,8 +177,8 @@ static Bool R300GetDestFormat(PicturePtr pDstPicture, CARD32 *dst_format) *dst_format = R300_COLORFORMAT_I8; break; default: - ErrorF("Unsupported dest format 0x%x\n", - (int)pDstPicture->format); + RADEON_FALLBACK(("Unsupported dest format 0x%x\n", + (int)pDstPicture->format)); return FALSE; } return TRUE; |