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:
C/C++ Source or Header  |  1992-03-30  |  302 b   |  18 lines

  1. #ifdef __TURBOC__
  2. #include <mem.h>
  3. #endif
  4.  
  5. #include "aatypes.h"
  6. #include "aascreen.h"
  7.  
  8. void aa_copy_screen(Vscreen *s, Vscreen *d)
  9. {
  10.     memcpy(d->pmap, s->pmap, d->psize);
  11.     memcpy(d->cmap, s->cmap, AA_COLORS*3);
  12. }
  13.  
  14. void aa_clear_screen(Vscreen *vs)
  15. {
  16.     memset(vs->pmap, 0, vs->psize);
  17. }
  18.