summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/r600_pipe.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2013-09-22 02:55:47 +0200
committerMarek Olšák <[email protected]>2013-09-29 15:18:09 +0200
commit2814202ef4d6a429602c3524c2a1001e34d2068f (patch)
tree766e4b6d8ed65e0dc15a069dd775b13d160ed49b /src/gallium/drivers/r600/r600_pipe.c
parente9162672850548310bd29fa6f0f924e4e8767af1 (diff)
r600g,radeonsi: share the async dma interface
r600_texture.c is one step closer to r600g.
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c
index dfe78b93a71..d9f2ed2dc01 100644
--- a/src/gallium/drivers/r600/r600_pipe.c
+++ b/src/gallium/drivers/r600/r600_pipe.c
@@ -1290,10 +1290,8 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws)
if (rscreen->b.chip_class >= EVERGREEN) {
rscreen->b.b.is_format_supported = evergreen_is_format_supported;
- rscreen->dma_blit = &evergreen_dma_blit;
} else {
rscreen->b.b.is_format_supported = r600_is_format_supported;
- rscreen->dma_blit = &r600_dma_blit;
}
rscreen->b.b.context_create = r600_create_context;
rscreen->b.b.fence_reference = r600_fence_reference;