Go to the source code of this file.
Functions | |
void | DumpMemory (void *baseaddr, int bytes) |
Dump a block of memory to standard output. | |
int | Render_GetBlockSpace_Data () |
Find the space remaining in the current data buffer block. | |
int | Render_GetBlockSpace_Curr () |
Find the space remaining in the current chain buffer block. | |
void | Render_CheckNextBlock_Data () |
Check if there is a free block following the current data buffer block. | |
void | Render_CheckNextBlock_Curr () |
Check if there is a free block following the current chain buffer block. | |
void * | Render_ReadFile (char *filename, unsigned int *bytes) |
Open the given file and read it into memory. |
|
Dump a block of memory to standard output. For debug use.
|
|
Check if there is a free block following the current chain buffer block. If there are no more blocks following the current block, this function prints an error message and exits immediately with a status of -1.
|
|
Check if there is a free block following the current data buffer block. If there are no more blocks following the current block, this function prints an error message and exits immediately with a status of -1.
|
|
Find the space remaining in the current chain buffer block.
|
|
Find the space remaining in the current data buffer block.
|
|
Open the given file and read it into memory. The pointer returned by this function is aligned to a 128-bit boundary. It should be freed before the application terminates.
|