diff options
author | Dave Airlie <airlied@redhat.com> | 2011-03-16 10:40:42 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-03-16 10:40:42 +1000 |
commit | cdfc007eccc9b130fc08012deef304488eb6e469 (patch) | |
tree | 56870b6cabc9348108ab3be971c8b37e2898edcb /src/radeon_exa_render.c | |
parent | b93d7658f669f6dc1cfacebcfe955a1e113a537c (diff) |
radeon/exa: correct function name
this corrects the function name so it matches the contents.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/radeon_exa_render.c')
-rw-r--r-- | src/radeon_exa_render.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |