home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser-CD 2000 January / LCD_01_2000.iso / games / doom / pmdoom / include / i_zoom.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-17  |  460 b   |  21 lines

  1. /*
  2.  *    Zoom function
  3.  *
  4.  *    Patrice Mandin
  5.  */
  6.  
  7. #ifndef _I_ZOOM_H_
  8. #define _I_ZOOM_H_
  9.  
  10. #include "doomtype.h"
  11.  
  12. void I_ZoomInit(int dstwidth,int dstheight);
  13. void (*I_Zoom)(void *srcscreen,void *dstscreen);
  14.  
  15. void I_Zoom8(byte *srcscreen,byte *dstscreen);
  16. void I_Zoom16(unsigned short *srcscreen,unsigned short *dstscreen);
  17. void I_Zoom24(byte *srcscreen,byte *dstscreen);
  18. void I_Zoom32(unsigned long *srcscreen,unsigned long *dstscreen);
  19.  
  20. #endif
  21.