diff options
-rw-r--r-- | src/evergreen_exa.c | 2 | ||||
-rw-r--r-- | src/r600_exa.c | 2 | ||||
-rw-r--r-- | src/radeon.h | 2 | ||||
-rw-r--r-- | src/radeon_exa.c | 2 | ||||
-rw-r--r-- | src/radeon_exa_render.c | 6 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/evergreen_exa.c b/src/evergreen_exa.c index 553f05e2..ae73e385 100644 --- a/src/evergreen_exa.c +++ b/src/evergreen_exa.c @@ -731,7 +731,7 @@ static Bool EVERGREENCheckCompositeTexture(PicturePtr pPict, RADEON_FALLBACK(("REPEAT_NONE unsupported for transformed xRGB source\n")); } - if (!radeon_transform_is_affine(pPict->transform)) + if (!radeon_transform_is_affine_or_scaled(pPict->transform)) RADEON_FALLBACK(("non-affine transforms not supported\n")); return TRUE; diff --git a/src/r600_exa.c b/src/r600_exa.c index 57e5c0f9..0ed0cedb 100644 --- a/src/r600_exa.c +++ b/src/r600_exa.c @@ -910,7 +910,7 @@ static Bool R600CheckCompositeTexture(PicturePtr pPict, RADEON_FALLBACK(("REPEAT_NONE unsupported for transformed xRGB source\n")); } - if (!radeon_transform_is_affine(pPict->transform)) + if (!radeon_transform_is_affine_or_scaled(pPict->transform)) RADEON_FALLBACK(("non-affine transforms not supported\n")); return TRUE; diff --git a/src/radeon.h b/src/radeon.h index 4f5095de..a6d20d71 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -1290,7 +1290,7 @@ extern void RADEONPMFini(ScrnInfoPtr pScrn); #ifdef USE_EXA /* radeon_exa.c */ extern Bool RADEONSetupMemEXA(ScreenPtr pScreen); -extern Bool radeon_transform_is_affine(PictTransformPtr t); +extern Bool radeon_transform_is_affine_or_scaled(PictTransformPtr t); /* radeon_exa_funcs.c */ extern void RADEONCopyCP(PixmapPtr pDst, int srcX, int srcY, int dstX, diff --git a/src/radeon_exa.c b/src/radeon_exa.c index 4f31b820..1c647b94 100644 --- a/src/radeon_exa.c +++ b/src/radeon_exa.c @@ -179,7 +179,7 @@ Bool RADEONGetPixmapOffsetPitch(PixmapPtr pPix, uint32_t *pitch_offset) * * transform may be null. */ -Bool radeon_transform_is_affine(PictTransformPtr t) +Bool radeon_transform_is_affine_or_scaled(PictTransformPtr t) { if (t == NULL) return TRUE; diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c index 2e13b000..43d35558 100644 --- a/src/radeon_exa_render.c +++ b/src/radeon_exa_render.c @@ -379,7 +379,7 @@ static Bool R100CheckCompositeTexture(PicturePtr pPict, RADEON_FALLBACK(("REPEAT_NONE unsupported for transformed xRGB source\n")); } - if (!radeon_transform_is_affine(pPict->transform)) + if (!radeon_transform_is_affine_or_scaled(pPict->transform)) RADEON_FALLBACK(("non-affine transforms not supported\n")); return TRUE; @@ -781,7 +781,7 @@ static Bool R200CheckCompositeTexture(PicturePtr pPict, RADEON_FALLBACK(("REPEAT_NONE unsupported for transformed xRGB source\n")); } - if (!radeon_transform_is_affine(pPict->transform)) + if (!radeon_transform_is_affine_or_scaled(pPict->transform)) RADEON_FALLBACK(("non-affine transforms not supported\n")); return TRUE; @@ -1168,7 +1168,7 @@ static Bool R300CheckCompositeTexture(PicturePtr pPict, RADEON_FALLBACK(("REPEAT_NONE unsupported for transformed xRGB source\n")); } - if (!radeon_transform_is_affine(pPict->transform)) + if (!radeon_transform_is_affine_or_scaled(pPict->transform)) RADEON_FALLBACK(("non-affine transforms not supported\n")); return TRUE; |