NP2kai/vram/sdraw.h
2019-03-21 20:48:05 +09:00

31 lines
489 B
C
Executable File

typedef struct {
const UINT8 *src;
const UINT8 *src2;
UINT8 *dst;
int width;
int xbytes;
int y;
int xalign;
int yalign;
UINT8 dirty[SURFACE_HEIGHT];
} _SDRAW, *SDRAW;
typedef void (SCRNCALL * SDRAWFN)(SDRAW sdraw, int maxy);
#ifdef __cplusplus
extern "C" {
#endif
const SDRAWFN *sdraw_getproctbl(const SCRNSURF *surf);
#if defined(SUPPORT_PC9821)
const SDRAWFN *sdraw_getproctblex(const SCRNSURF *surf);
#endif
#ifdef __cplusplus
}
#endif