diff options
author | Dennis Kasprzyk <onestone@compiz-fusion.org> | 2008-07-27 10:43:01 -0700 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-08-25 06:20:57 -0400 |
commit | a87647e0c27e0950f4d0d8203a1242a994ad3419 (patch) | |
tree | 66ad5e91c8bfe40f73972c749de9b280730dd480 /src/radeon_video.c | |
parent | 232aa3e943fef4c4037b255c3b64a0aaff90ab5c (diff) |
Fix texture size, texture filter, vertex offsets, etc.
Diffstat (limited to 'src/radeon_video.c')
-rw-r--r-- | src/radeon_video.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/radeon_video.c b/src/radeon_video.c index d22e00a5..4f71e28a 100644 --- a/src/radeon_video.c +++ b/src/radeon_video.c @@ -3261,6 +3261,10 @@ RADEONVideoTimerCallback(ScrnInfoPtr pScrn, Time now) RADEONFreeMemory(pScrn, pPriv->video_memory); pPriv->video_memory = NULL; } + if (pPriv->bicubic_memory != NULL) { + RADEONFreeMemory(pScrn, pPriv->bicubic_memory); + pPriv->bicubic_memory = NULL; + } pPriv->videoStatus = 0; info->VideoTimerCallback = NULL; } |