2 * $Source: s:/prj/tech/libsrc/dev2d/RCS/bk8pix.c $
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.
12 * Revision 1.1 1996/04/10 15:48:54 KEVIN
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
);