diff options
author | Ian C <ianc@noddybox.co.uk> | 2007-03-12 00:59:51 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2007-03-12 00:59:51 +0000 |
commit | 7e2703a49de38100f9ee82042a744517fc7eb171 (patch) | |
tree | e76beb7f038e9ef51a30b5d10f5e4be7ffd73c46 /include/framebuffer.h | |
parent | eeef0966f0448d71e79ad43d53769afebd47b459 (diff) |
Altered some interfaces for the monitor.
Diffstat (limited to 'include/framebuffer.h')
-rw-r--r-- | include/framebuffer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/framebuffer.h b/include/framebuffer.h index 3055e51..afe5972 100644 --- a/include/framebuffer.h +++ b/include/framebuffer.h @@ -45,6 +45,11 @@ typedef enum */ void FB_Init(uint16 *vram, uint16 *palette); +/* Gives access to the parameters of the frame buffer. +*/ +uint16 *FB_VRAM(void); +uint16 *FB_PALETTE(void); + /* Load the internal framebuffer font as a set of ASCII tiles (starting with space) at tiles. The tiles will use colour COL_WHITE. */ |