diff options
author | reinelt <> | 2001-03-01 11:08:16 +0000 |
---|---|---|
committer | reinelt <> | 2001-03-01 11:08:16 +0000 |
commit | 0b05ba6a90ba10d55143565c510dbf09685b22a5 (patch) | |
tree | d98100a294f64e670f06a039ea4eca6b01b59f12 /Raster.c | |
parent | cde92c2c348d067a9a1c774a0facccb06f79c533 (diff) | |
download | lcd4linux-0b05ba6a90ba10d55143565c510dbf09685b22a5.tar.gz |
[lcd4linux @ 2001-03-01 11:08:16 by reinelt]
reworked configure to allow selection of drivers
Diffstat (limited to 'Raster.c')
-rw-r--r-- | Raster.c | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: Raster.c,v 1.11 2001/02/13 09:00:13 reinelt Exp $ +/* $Id: Raster.c,v 1.12 2001/03/01 11:08:16 reinelt Exp $ * * driver for raster formats * @@ -20,6 +20,10 @@ * * * $Log: Raster.c,v $ + * Revision 1.12 2001/03/01 11:08:16 reinelt + * + * reworked configure to allow selection of drivers + * * Revision 1.11 2001/02/13 09:00:13 reinelt * * prepared framework for GPO's (general purpose outputs) @@ -289,6 +293,11 @@ int Raster_bar (int type, int row, int col, int max, int len1, int len2) LCD Raster[] = { +#ifdef WITH_PPM { "PPM",0,0,0,0,BARS,0,Raster_init,Raster_clear,Raster_put,Raster_bar,NULL,Raster_flush }, +#endif +#ifdef WITH_PNG + { "PNG",0,0,0,0,BARS,0,Raster_init,Raster_clear,Raster_put,Raster_bar,NULL,Raster_flush }, +#endif { NULL } }; |