summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-07-15 11:16:41 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-07-15 11:16:41 -0400
commitefe7ad233ca8fa1b7e1aabf706c433955c5c51e8 (patch)
tree8c23392776768ccd3f1da750d9b8445d8ead5188 /src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
parent10b3e64bcada2e68144cc6ed40f7d760aff873e2 (diff)
Use memcpy directly in the common code
This alleviates the need for an additional symbol.
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_bo_legacy.c')
-rw-r--r--src/mesa/drivers/dri/radeon/radeon_bo_legacy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c b/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
index ae5f0c4cfe..94c2d97825 100644
--- a/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
+++ b/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
@@ -618,7 +618,7 @@ static int bo_vram_validate(struct radeon_bo *bo,
(bo_legacy->offset - boml->fb_location);
/* FIXME: alignment, pitch, etc. */
- r600_sw_blit(src, 0, dst, 0, 0, 0, 1, 1, bo->size);
+ memcpy(dst, src, bo->size);
} else {
/* Copy to VRAM using a blit.
* All memory is 4K aligned. We're using 1024 pixels wide blits.