
need help allocating and copying sprite tiles efficiently
Re: need help allocating and copying sprite tiles efficientl
I was lead to believe that you can use all four channels at one time since the DMA controller is separate from the CPU entirely. Even if you can perform only one copy operation though, it's still independent from the CPU and more time-efficient. 

Re: need help allocating and copying sprite tiles efficientl
not sure if this has already been mentioned, but DMA copies are best for main ram to vram copies. main ram to main ram copies do not perform as well with DMA copies.
Re: need help allocating and copying sprite tiles efficientl
I see... so, to conclude:
When copying between RAM <---> VRAM, use DMA Copying
When copying within RAM, use SWI Copying
When all else fails, use the Standard memcpy Copying
...sounds about right? Of course one also has to take into account the size of chunks and all that junk... But sounds alright for a general rule.
When copying between RAM <---> VRAM, use DMA Copying
When copying within RAM, use SWI Copying
When all else fails, use the Standard memcpy Copying
...sounds about right? Of course one also has to take into account the size of chunks and all that junk... But sounds alright for a general rule.
Re: need help allocating and copying sprite tiles efficientl
Don't forget to flush data cache before dma. You should be able to find an optimized asm memcpy if you search this forum. It seam to remember that it may be best at main to main copies. It may require aligned buffers but so does dma.
Re: need help allocating and copying sprite tiles efficientl
On http://libnds.devkitpro.org/a00112.html ... 22fe84245d,
static void dmaCopy ( const void * source,
void * dest,
uint32 size
) [inline]
copies from source to destination using channel 3 of DMA available channels in half words
Parameters:
source the source to copy from
dest the destination to copy to
size the size in bytes of the data to copy. Will be truncated to the nearest half word (2 bytes)
On http://libnds.devkitpro.org/a00102.html ... f9f334ec27,
void swiCopy ( const void * source,
void * dest,
int flags
)
copies or fills some memory.
Parameters:
source pointer to transfer source or pointer to value to fill the memory with.
dest pointer to transfer destination.
flags bits(0-20): size of data to copy/fill in words, or'd with the copy mode size (word or halfword) and type (copy or fill).
static void dmaCopy ( const void * source,
void * dest,
uint32 size
) [inline]
copies from source to destination using channel 3 of DMA available channels in half words
Parameters:
source the source to copy from
dest the destination to copy to
size the size in bytes of the data to copy. Will be truncated to the nearest half word (2 bytes)
On http://libnds.devkitpro.org/a00102.html ... f9f334ec27,
void swiCopy ( const void * source,
void * dest,
int flags
)
copies or fills some memory.
Parameters:
source pointer to transfer source or pointer to value to fill the memory with.
dest pointer to transfer destination.
flags bits(0-20): size of data to copy/fill in words, or'd with the copy mode size (word or halfword) and type (copy or fill).
Who is online
Users browsing this forum: Ahrefs [Bot] and 4 guests