convert line ends
[canaan.git] / prj / tech / libsrc / dev2d / bk8pix.c
blob32ac186413c308f2eaef07a466de801bbe1eb97e
1 /*
2 * $Source: s:/prj/tech/libsrc/dev2d/RCS/bk8pix.c $
3 * $Revision: 1.1 $
4 * $Author: KEVIN $
5 * $Date: 1996/04/10 15:48:54 $
7 * Routines for drawing pixels into a flat 8 canvas.
9 * This file is part of the dev2d library.
11 * $Log: bk8pix.c $
12 * Revision 1.1 1996/04/10 15:48:54 KEVIN
13 * Initial revision
17 #include <pixftype.h>
18 #include <grd.h>
19 extern void (*bank8_upix8_func[])();
21 #pragma off(unreferenced)
22 gdupix_func *bank8_upix8_expose(int c, int x, int y)
24 return (gdupix_func *)bank8_upix8_func[grd_gc.fill_type];
26 #pragma on(unreferenced)
28 void bank8_upix8(int c, int x, int y)
30 (bank8_upix8_expose(c, x, y))(c, x, y);