aboutsummaryrefslogtreecommitdiffstats
path: root/Raster.c
diff options
context:
space:
mode:
authorreinelt <>2001-03-01 11:08:16 +0000
committerreinelt <>2001-03-01 11:08:16 +0000
commit0b05ba6a90ba10d55143565c510dbf09685b22a5 (patch)
treed98100a294f64e670f06a039ea4eca6b01b59f12 /Raster.c
parentcde92c2c348d067a9a1c774a0facccb06f79c533 (diff)
downloadlcd4linux-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.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/Raster.c b/Raster.c
index 1561069..1e6d4d6 100644
--- a/Raster.c
+++ b/Raster.c
@@ -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 }
};