convert line ends
[canaan.git] / prj / tech / libsrc / dev2d / bk8lin.c
blob76eb793f5e53c40a88a653314f14b338da1c4a3e
1 /*
2 * $Source: s:/prj/tech/libsrc/dev2d/RCS/bk8lin.c $
3 * $Revision: 1.1 $
4 * $Author: KEVIN $
5 * $Date: 1996/04/10 15:48:43 $
7 * Constants for bitmap flags & type fields; prototypes for bitmap
8 * functions.
10 * This file is part of the dev2d library.
14 #include <linftype.h>
15 #include <grd.h>
16 extern void (*bank8_uhline_func[])();
17 extern void (*bank8_uvline_func[])();
19 #pragma off(unreferenced)
20 gdulin_func *bank8_uhline_expose(int x, int y, int x1)
22 return (gdulin_func *)bank8_uhline_func[grd_gc.fill_type];
25 gdulin_func *bank8_uvline_expose(int x, int y, int y1)
27 return (gdulin_func *)bank8_uvline_func[grd_gc.fill_type];
29 #pragma on(unreferenced)
31 void bank8_uhline(int x, int y, int x1)
33 (bank8_uhline_expose(x, y, x1))(x, y, x1);
36 void bank8_uvline(int x, int y, int y1)
38 (bank8_uvline_expose(x, y, y1))(x, y, y1);