From: ellson Date: Sat, 20 Oct 2007 12:09:22 +0000 (+0000) Subject: add GVDEVICE_BINARY_FORMAT X-Git-Tag: LAST_LIBGRAPH~32^2~5194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b946a2e3b38efded9064e78ee00ef4b52bcfc37;p=graphviz add GVDEVICE_BINARY_FORMAT --- diff --git a/plugin/gd/gvrender_gd.c b/plugin/gd/gvrender_gd.c index 03b747890..66f48e300 100644 --- a/plugin/gd/gvrender_gd.c +++ b/plugin/gd/gvrender_gd.c @@ -599,21 +599,23 @@ static gvrender_features_t render_features_gd = { }; static gvdevice_features_t device_features_gd = { - 0, /* flags */ + GVDEVICE_BINARY_FORMAT, /* flags */ {0.,0.}, /* default margin - points */ {0.,0.}, /* default page width, height - points */ {96.,96.}, /* default dpi */ }; static gvdevice_features_t device_features_gd_tc = { - GVDEVICE_DOES_TRUECOLOR, /* flags */ + GVDEVICE_BINARY_FORMAT + | GVDEVICE_DOES_TRUECOLOR,/* flags */ {0.,0.}, /* default margin - points */ {0.,0.}, /* default page width, height - points */ {96.,96.}, /* default dpi */ }; static gvdevice_features_t device_features_gd_tc_no_writer = { - GVDEVICE_DOES_TRUECOLOR + GVDEVICE_BINARY_FORMAT + | GVDEVICE_DOES_TRUECOLOR | GVDEVICE_NO_WRITER, /* flags */ {0.,0.}, /* default margin - points */ {0.,0.}, /* default page width, height - points */