]> icculus.org git repositories - taylor/freespace2.git/blob - include/bitblt.h
Initial revision
[taylor/freespace2.git] / include / bitblt.h
1 /*
2  * $Logfile: /Freespace2/code/Graphics/Bitblt.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * Include file for software bitblt type stuff
8  *
9  * $Log$
10  * Revision 1.1  2002/05/03 03:28:12  root
11  * Initial revision
12  *
13  * 
14  * 2     10/07/98 10:52a Dave
15  * Initial checkin.
16  * 
17  * 1     10/07/98 10:48a Dave
18  * 
19  * 2     4/14/98 12:15p John
20  * Made 16-bpp movies work.
21  * 
22  * 1     3/25/98 8:07p John
23  * Split software renderer into Win32 and DirectX
24  *
25  * $NoKeywords: $
26  */
27
28 #ifndef _BITBLT_H
29 #define _BITBLT_H
30
31 void grx_bitmap(int x,int y);
32 void grx_bitmap_ex(int x,int y,int w,int h,int sx,int sy);
33 void grx_aabitmap(int x,int y);
34 void grx_aabitmap_ex(int x,int y,int w,int h,int sx,int sy);
35
36 #endif //_BITBLT_H
37