SaturnRingLibrary 0.9
SGL wrapper
 
Loading...
Searching...
No Matches

◆ SetMapAddress()

template<class ScreenType , int16_t Id, uint16_t On>
static void * SRL::VDP2::ScrollScreen< ScreenType, Id, On >::SetMapAddress ( void * Address,
int Size )
inlinestatic

Manually Sets VRAM area for Map Data (Advanced Use Cases)

This function manually sets an area in VRAM for a scroll's Map Data to be loaded to. Unless the Address is obtained from VDP2::VRAM::Allocate() the VRAM allocator will be bypassed entirely. No Checks are performed for proper data alignment or cycle conflicts. For advanced use cases only.

//Manually Set NBG0 to store Map Data in an 0x8000 byte region allocated in VRAM bank A1:
static void * SetMapAddress(void *Address, int Size)
Manually Sets VRAM area for Map Data (Advanced Use Cases)
Definition srl_vdp2.hpp:441
static void * Allocate(uint32_t size, uint32_t boundary, VDP2::VramBank bank, uint8_t cycles=0)
Linearly Allocates Vram in a bank and returns address to start of allocation. Allocation fails if the...
Definition srl_vdp2.hpp:113
Parameters
Addressthe VRAM address of the allocation
Sizethe size of the allocation
Returns
Echoes Address