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

◆ SetCellAddress()

template<class ScreenType , int16_t Id, uint16_t On>
static void * SRL::VDP2::ScrollScreen< ScreenType, Id, On >::SetCellAddress ( void * address,
int size )
inlinestatic

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

This function manually sets an area in VRAM for a scrolls Cel 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 16bpp Cel Data in an 0x8000 byte region allocated in VRAM bank A1: *
SRL::VDP2::NBG0::SetCelAddress(SRL::VDP2::VRAM::Allocate(0x8000,32,SRL::VDP2::VramBank::A1, 3),0x8000);
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