Linux makefiles
[canaan.git] / prj / tech / libsrc / dev2d / f16bm.c
blob01742f57409dcc4d0548a76728860d7e7a00f542
1 /*
2 * $Source: s:/prj/tech/libsrc/dev2d/RCS/f16bm.c $
3 * $Revision: 1.2 $
4 * $Author: KEVIN $
5 * $Date: 1996/04/11 14:31:40 $
7 * Constants for bitmap flags & type fields; prototypes for bitmap
8 * functions.
10 * This file is part of the dev2d library.
14 #include <bmftype.h>
15 #include <indexmac.h>
16 extern void (*flat16_ubitmap_func[])();
18 #pragma off(unreferenced)
19 gdubm_func *flat16_ubitmap_expose(grs_bitmap *bm, int x, int y)
21 int i = make_index_bmt_fill_bmf(bm);
22 return (gdubm_func *)flat16_ubitmap_func[i];
24 #pragma on(unreferenced)
26 void flat16_ubitmap(grs_bitmap *bm, int x, int y)
28 (flat16_ubitmap_expose(bm, x, y))(bm, x, y);