]> granicus.if.org Git - vnstat/commitdiff
drawdonut_libgd_native() is only used by tests
authorTeemu Toivola <git@humdi.net>
Mon, 16 Sep 2019 18:01:01 +0000 (21:01 +0300)
committerTeemu Toivola <git@humdi.net>
Mon, 16 Sep 2019 18:01:01 +0000 (21:01 +0300)
src/image.c
src/image.h

index f2f13740328e14440ab854fcb88e1d7fe93d704a..d8c24ac24965f053f163c6606694347ef8812fb6 100644 (file)
@@ -273,6 +273,7 @@ void drawdonut(IMAGECONTENT *ic, const int x, const int y, const float rxp, cons
        gdImageFilledArc(ic->im, x, y, DINRAD - 2, DINRAD - 2, 0, 360, ic->cbackground, 0);
 }
 
+#ifdef CHECK_VNSTAT
 void drawdonut_libgd_native(IMAGECONTENT *ic, const int x, const int y, const float rxp, const float txp)
 {
        int rxarc = 0, txarc = 0;
@@ -304,6 +305,7 @@ void drawdonut_libgd_native(IMAGECONTENT *ic, const int x, const int y, const fl
        // remove center from background filled circle, making it a donut
        gdImageFilledArc(ic->im, x, y, DINRAD - 2, DINRAD - 2, 0, 360, ic->cbackground, 0);
 }
+#endif
 
 void drawhours(IMAGECONTENT *ic, const int x, const int y, const int rate)
 {
index 1842e7cb2e954fb4ed655426e287a655a944ef3a..c31820e5ea4cdb3fe145302f9cf6dcb1a1907395 100644 (file)
@@ -39,7 +39,9 @@ void drawlegend(IMAGECONTENT *ic, const int x, const int y);
 void drawbar(IMAGECONTENT *ic, const int x, const int y, const int len, const uint64_t rx, const uint64_t tx, const uint64_t max);
 void drawpole(IMAGECONTENT *ic, const int x, const int y, const int len, const uint64_t rx, const uint64_t tx, const uint64_t max);
 void drawdonut(IMAGECONTENT *ic, const int x, const int y, const float rxp, const float txp);
+#ifdef CHECK_VNSTAT
 void drawdonut_libgd_native(IMAGECONTENT *ic, const int x, const int y, const float rxp, const float txp);
+#endif
 void drawhours(IMAGECONTENT *ic, int x, int y, int rate);
 void drawhourly(IMAGECONTENT *ic, int rate);
 void drawlist(IMAGECONTENT *ic, const char *listname);