diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /src/parsec/include/d_bmap.h | |
| download | openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.tar.xz openparsec-c068f22329d5cc722622a2183bbb22eef2093df7.zip | |
Diffstat (limited to 'src/parsec/include/d_bmap.h')
| -rw-r--r-- | src/parsec/include/d_bmap.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/parsec/include/d_bmap.h b/src/parsec/include/d_bmap.h new file mode 100644 index 0000000..905fc76 --- /dev/null +++ b/src/parsec/include/d_bmap.h @@ -0,0 +1,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_ + + |
