aboutsummaryrefslogtreecommitdiff
path: root/src/parsec/include/d_bmap.h
blob: 905fc76acf42598b9b3c02c7b7219abc42a5f8ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * PARSEC HEADER: d_bmap.h
 */

#ifndef _D_BMAP_H_
#define _D_BMAP_H_


// ----------------------------------------------------------------------------
// DRAWING SUBSYSTEM (D) BMAP group                                           -
// ----------------------------------------------------------------------------


void D_PutTrBitmap( char *bitmap, dword width, dword height, ugrid_t putx, ugrid_t puty );
void D_PutTrMapBitmap( char *bitmap, char *maps, dword width, dword height, ugrid_t putx, ugrid_t puty, dword color );
void D_PutClipBitmap( char *bitmap, dword width, dword height, sgrid_t putx, sgrid_t puty );
void D_PutTrClipBitmap( char *bitmap, dword width, dword height, sgrid_t putx, sgrid_t puty );
void D_PutSTCBitmap( char *bitmap, dword srcw, dword srch, dword dstw, dword dsth, sgrid_t putx, sgrid_t puty );
void D_PutSTCBitmapZ( char *bitmap, dword srcw, dword srch, dword dstw, dword dsth, sgrid_t putx, sgrid_t puty, dword zvalue );
void D_DrawTrRect( ugrid_t putx, ugrid_t puty, dword width, dword height, dword brightx );



#endif // _D_BMAP_H_