diff options
author | Michel Dänzer <daenzer@vmware.com> | 2009-08-27 09:52:11 +0200 |
---|---|---|
committer | Michel Dänzer <daenzer@vmware.com> | 2009-08-27 09:52:11 +0200 |
commit | 7d36f13afa5da742aa6c989a2652e92c96e5f80e (patch) | |
tree | d9a6207b1683cc934a9854659d998d2a44d52e8a /src/radeon_textured_video.c | |
parent | 066c90e8f5b93c80195dc43486ad3efa083a1f3a (diff) |
KMS: Remove explicit radeon_bo_wait calls before radeon_bo_map.
libdrm_radeon always takes care of this implicitly now.
Diffstat (limited to 'src/radeon_textured_video.c')
-rw-r--r-- | src/radeon_textured_video.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index a9d6fc3c..932759bb 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -367,7 +367,6 @@ RADEONPutImageTextured(ScrnInfoPtr pScrn, pPriv->src_offset = pPriv->video_offset; if (info->cs) { int ret; - radeon_bo_wait(pPriv->src_bo); ret = radeon_bo_map(pPriv->src_bo, 1); if (ret) return BadAlloc; @@ -690,7 +689,6 @@ Bool radeon_load_bicubic_texture(ScrnInfoPtr pScrn) uint8_t *bicubic_addr; int ret; if (info->cs) { - radeon_bo_wait(info->bicubic_bo); ret = radeon_bo_map(info->bicubic_bo, 1); if (ret) return FALSE; |