|
|
| version 1.4, 2004/03/25 08:51:24 | version 1.6, 2004/04/05 09:45:06 |
|---|---|
| Line 33 typedef struct { | Line 33 typedef struct { |
| int bpp; | int bpp; |
| } CMNVRAM; | } CMNVRAM; |
| typedef void (*CMNPALCNV)(CMNPAL *dst, RGB32 *src, UINT pals, UINT bpp); | typedef void (*CMNPALCNV)(CMNPAL *dst, const RGB32 *src, UINT pals, UINT bpp); |
| #ifdef __cplusplus | #ifdef __cplusplus |
| extern "C" { | extern "C" { |
| Line 82 void cmndraw32_setpat(const CMNVRAM *vra | Line 82 void cmndraw32_setpat(const CMNVRAM *vra |
| // ---- | // ---- |
| void cmddraw_fill(CMNVRAM *vram, int x, int y, int cx, int cy, CMNPALS *pal); | void cmddraw_fill(CMNVRAM *vram, int x, int y, int cx, int cy, CMNPALS *pal); |
| void cmddraw_text8(CMNVRAM *vram, int x, int y, const char *str, CMNPALS *pal); | |
| void cmddraw_bmp16(CMNVRAM *vram, const void *bmp, CMNPALCNV cnv); | void cmndraw_fill2(const CMNVRAM *vram, int x, int y, |
| int cx, int cy, CMNPAL fg); | |
| void cmndraw_setfg2(const CMNVRAM *vram, const BYTE *src, | |
| int x, int y, CMNPAL fg); | |
| void cmndraw_setpat2(const CMNVRAM *vram, const BYTE *src, | |
| int x, int y, CMNPAL bg, CMNPAL fg); | |
| void cmddraw_text8(CMNVRAM *vram, int x, int y, const char *str, CMNPAL fg); | |
| // ---- | |
| enum { | |
| CMNBMP_LEFT = 0x00, | |
| CMNBMP_CENTER = 0x01, | |
| CMNBMP_RIGHT = 0x02, | |
| CMNBMP_TOP = 0x00, | |
| CMNBMP_MIDDLE = 0x04, | |
| CMNBMP_BOTTOM = 0x08 | |
| }; | |
| typedef struct { | |
| BYTE *ptr; | |
| int width; | |
| int height; | |
| int align; | |
| UINT pals; | |
| RGB32 paltbl[16]; | |
| } CMNBMP; | |
| BOOL cmndraw_bmp4inf(CMNBMP *bmp, const void *ptr); | |
| void cmndraw_bmp16(CMNVRAM *vram, const void *ptr, CMNPALCNV cnv, UINT flag); | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| } | } |