File:  [RetroPC.NET] / np2 / vram / sdraw.h
Revision 1.2: download - view: text, annotated - select for diffs
Sun Feb 29 12:10:03 2004 JST (21 years, 8 months ago) by yui
Branches: MAIN
CVS tags: VER_0_80, VER_0_79, VER_0_78, VER_0_77, VER_0_76, VER_0_75, HEAD
support PC-9821 (T.Yui)


typedef struct {
const BYTE	*src;
const BYTE	*src2;
	BYTE	*dst;
	int		width;
	int		xbytes;
	int		y;
	int		xalign;
	int		yalign;
	BYTE	dirty[SURFACE_WIDTH];
} _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


RetroPC.NET-CVS <cvs@retropc.net>