diff options
author | scuri <scuri> | 2009-12-02 20:30:55 +0000 |
---|---|---|
committer | scuri <scuri> | 2009-12-02 20:30:55 +0000 |
commit | 0a186150f085c34462b8c6cd5257849c73f80b65 (patch) | |
tree | f78781174c5f64d032efa0760a0ac06af8f8447b /test/simple/simple.c | |
parent | 3914ec6505021df1b3edac7a0b2648ace33e4ef4 (diff) |
New: driver SVG.
Diffstat (limited to 'test/simple/simple.c')
-rw-r--r-- | test/simple/simple.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/simple/simple.c b/test/simple/simple.c index 82eeb9c..586256d 100644 --- a/test/simple/simple.c +++ b/test/simple/simple.c @@ -22,6 +22,7 @@ #include "cdprint.h" #include "cdps.h" #include "cdpdf.h" +#include "cdsvg.h" #include "cdwmf.h" #include "cdiup.h" #include "cddbuf.h" @@ -303,6 +304,12 @@ int SimpleDrawPS(void) return 0; } +int SimpleDrawSVG(void) +{ + DrawCanvasDriver(CD_SVG, "simple.svg"); + return 0; +} + int SimpleDrawPDF(void) { DrawCanvasDriver(CD_PDF, "simple.pdf"); |