summaryrefslogtreecommitdiff
path: root/src/radeon_textured_video.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2008-08-02 02:36:21 -0700
committerAlex Deucher <alexdeucher@gmail.com>2008-08-25 06:26:25 -0400
commit48b09ca40ccb28b5584069316fd38786a78c1dd3 (patch)
treed152dd9ba28e328d917680ddf7df917a26018f2f /src/radeon_textured_video.c
parentebbb7fb634fcadf28ff99c1df2c3db89fd56932d (diff)
Switch from 32-bit floats to 16-bit half-floats.
Massive bandwidth savings, or so I'm told. Yay?
Diffstat (limited to 'src/radeon_textured_video.c')
-rw-r--r--src/radeon_textured_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c
index cc13933b..8162281e 100644
--- a/src/radeon_textured_video.c
+++ b/src/radeon_textured_video.c
@@ -283,7 +283,7 @@ RADEONPutImageTextured(ScrnInfoPtr pScrn,
/* Upload bicubic filter tex */
if (pPriv->bicubic_enabled)
- RADEONCopyData(pScrn, (uint8_t *)bicubic_tex_512, (uint8_t *)(info->FB + pPriv->bicubic_offset), 2048, 2048, 1, 512, 4);
+ RADEONCopyData(pScrn, (uint8_t *)bicubic_tex_512, (uint8_t *)(info->FB + pPriv->bicubic_offset), 1024, 1024, 1, 512, 2);
/* update cliplist */
if (!REGION_EQUAL(pScrn->pScreen, &pPriv->clip, clipBoxes)) {