aboutsummaryrefslogtreecommitdiffstats
path: root/include/gdisp.h
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-08-24 02:35:28 +0200
committerTectu <joel@unormal.org>2012-08-24 02:35:28 +0200
commitfcfab985179f1a336c52bdbc03ac587767124708 (patch)
treed61868908607aefe8685b6474449fc4d6936e2a5 /include/gdisp.h
parent7021da1b9e5306db27f8b7c86d75c82652dfb8c0 (diff)
downloaduGFX-fcfab985179f1a336c52bdbc03ac587767124708.tar.gz
uGFX-fcfab985179f1a336c52bdbc03ac587767124708.tar.bz2
uGFX-fcfab985179f1a336c52bdbc03ac587767124708.zip
added gdispDrawArc() and gdispFillArc() dummies
Diffstat (limited to 'include/gdisp.h')
-rw-r--r--include/gdisp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/gdisp.h b/include/gdisp.h
index 61f851cc..9e856aa9 100644
--- a/include/gdisp.h
+++ b/include/gdisp.h
@@ -227,6 +227,8 @@ extern "C" {
#endif
void gdispDrawBox(coord_t x, coord_t y, coord_t cx, coord_t cy, color_t color);
+void gdispDrawArc(coord_t x, coord_t y, coord_t radius, uint16_t start, uint16_t end, color_t color);
+void gdispFillArc(coord_t x, coord_t y, coord_t radius, uint16_t start, uint16_t end, color_t color);
/* Extra Text Functions */
#if GDISP_NEED_TEXT