home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
GRAPHICS
/
MISC
/
PVQUAN15.ZIP
/
FLILIB.ZIP
/
COPYSCRE.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-03-30
|
302 b
|
18 lines
#ifdef __TURBOC__
#include <mem.h>
#endif
#include "aatypes.h"
#include "aascreen.h"
void aa_copy_screen(Vscreen *s, Vscreen *d)
{
memcpy(d->pmap, s->pmap, d->psize);
memcpy(d->cmap, s->cmap, AA_COLORS*3);
}
void aa_clear_screen(Vscreen *vs)
{
memset(vs->pmap, 0, vs->psize);
}