diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-08-25 10:05:28 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-08-25 10:05:28 -0400 |
commit | 5b1978a4796bcc31ac2f01d303dc8f8f44323025 (patch) | |
tree | e845695dc0bd30f1f939b21ab6e7bbd69f26a40e /src/radeon_textured_video.c | |
parent | 7daba77ded1c718e93ae8c372a39a6e85228d513 (diff) |
Bicubic fixes from the last cherry-pick
Diffstat (limited to 'src/radeon_textured_video.c')
-rw-r--r-- | src/radeon_textured_video.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index d210a2d5..4005df95 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -213,9 +213,9 @@ RADEONPutImageTextured(ScrnInfoPtr pScrn, if (!IS_R500_3D) pPriv->bicubic_enabled = FALSE; if (pPriv->bicubic_memory == NULL && pPriv->bicubic_enabled) { - pPriv->bicubic_offset = RADEONAllocateMemory(pScrn, - &pPriv->bicubic_memory, - sizeof(bicubic_tex_512)); + pPriv->bicubic_offset = radeon_allocate_memory(pScrn, + &pPriv->bicubic_memory, + sizeof(bicubic_tex_512), 64); pPriv->bicubic_src_offset = pPriv->bicubic_offset + info->fbLocation + pScrn->fbOffset; if (pPriv->bicubic_offset == 0) pPriv->bicubic_enabled = FALSE; |