CloneVRAMPages

Copies one page of VRAM to other contiguous pages of VRAM.

Synopsis

Err CloneVRAMPages (Item ioreq,void *dest,void *src,uint32 numpages,uint32 mask)

Description

This call is a convenience call for SPORT device transfers. It copies the specified src VRAM page to a number of VRAM pages, starting at the specified dest address and specified numPages number of pages. The mask argument controls which bits of the destination are modified by bits of the source.

This call uses the SPORT device to do the transfer. It doesn't return until the transfer is complete. That is, there is an implicit wait for the next VBlank to occur, as SPORT transfers take place only during vertical blank.

Arguments

ioreq
Item number of the I/O request.
dest
Pointer to the first byte of the first page of the destination VRAM.
src
Pointer to the first byte of the page of source VRAM.
numpages
Number of destination pages to receive the copy of the source page.
mask
Write mask, which controls which bits of the source are copied to the destination.

Return Value

The call returns a non-negative value if successful or an error code (a negative value) if an error occurs.

Notes

The use of a mask value other than all 1s (0xFFFFFFFF) is discouraged. Future systems may not support this feature in a performance-conscious manner.

Implementation

Convenience call implemented in graphics.lib V20.

Associated Files

graphics.h, graphics.lib

See Also

CopyVRAMPages(), SetVRAMPages(), SetVRAMPagesDefer(), CopyVRAMPagesDefer(), CloneVRAMPagesDefer(), GetVRAMIOReq(), GetPageSize()