diff options
author | Niels Ole Salscheider <[email protected]> | 2014-03-17 18:48:06 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-03-20 17:21:16 +0100 |
commit | 71254732db12c8813c002425b5c1b7c31bf56f65 (patch) | |
tree | 2076bcc0e7d873f39094af0710dfafbd023208a0 /src/gallium/drivers/radeonsi/Makefile.sources | |
parent | acf55e73252e46fa51378ef4b23c94a89902ae1c (diff) |
radeonsi: Implement DMA blit
This code is a slightly modified version of evergreen_dma_blit (and
evergreen_dma_copy as well as evergreen_dma_copy_tile).
It would be nice to share some of the code in the long term.
I have reused some "cik"-prefixed functions that also return the right
value for SI. I am not sure if they should be renamed.
v2: Marek> removed gfx.flush in si_dma_copy_tile
Signed-off-by: Niels Ole Salscheider <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/radeonsi/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/Makefile.sources b/src/gallium/drivers/radeonsi/Makefile.sources index 11b3319ac72..6a24cde2a99 100644 --- a/src/gallium/drivers/radeonsi/Makefile.sources +++ b/src/gallium/drivers/radeonsi/Makefile.sources @@ -3,6 +3,7 @@ C_SOURCES := \ si_commands.c \ si_compute.c \ si_descriptors.c \ + si_dma.c \ si_hw_context.c \ si_pipe.c \ si_pm4.c \ |