]> icculus.org git repositories - taylor/freespace2.git/blob - include/bitblt.h
added copyright header
[taylor/freespace2.git] / include / bitblt.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/Graphics/Bitblt.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Include file for software bitblt type stuff
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:12  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:12  root
22  * Initial import.
23  *
24  * 
25  * 2     10/07/98 10:52a Dave
26  * Initial checkin.
27  * 
28  * 1     10/07/98 10:48a Dave
29  * 
30  * 2     4/14/98 12:15p John
31  * Made 16-bpp movies work.
32  * 
33  * 1     3/25/98 8:07p John
34  * Split software renderer into Win32 and DirectX
35  *
36  * $NoKeywords: $
37  */
38
39 #ifndef _BITBLT_H
40 #define _BITBLT_H
41
42 void grx_bitmap(int x,int y);
43 void grx_bitmap_ex(int x,int y,int w,int h,int sx,int sy);
44 void grx_aabitmap(int x,int y);
45 void grx_aabitmap_ex(int x,int y,int w,int h,int sx,int sy);
46
47 #endif //_BITBLT_H
48