aboutsummaryrefslogtreecommitdiffstats
path: root/glcd.h
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-07-10 01:15:31 +0200
committerTectu <joel@unormal.org>2012-07-10 01:15:31 +0200
commited39db99a579342ad354b00f5639258f43528e6d (patch)
tree288aec28c6391a3b0dc67e14f82153cc98004bf7 /glcd.h
parent3e6d376e1eb7f61628ab65b058511a55a9e0f22c (diff)
downloaduGFX-ed39db99a579342ad354b00f5639258f43528e6d.tar.gz
uGFX-ed39db99a579342ad354b00f5639258f43528e6d.tar.bz2
uGFX-ed39db99a579342ad354b00f5639258f43528e6d.zip
added lcdDrawEllipse() - contributed by Ben William
Diffstat (limited to 'glcd.h')
-rw-r--r--glcd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/glcd.h b/glcd.h
index 531be901..bb587253 100644
--- a/glcd.h
+++ b/glcd.h
@@ -67,6 +67,7 @@ void lcdDrawLine(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint16_t co
void lcdDrawRect(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, uint8_t filled, uint16_t color);
void lcdDrawRectString(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, const char* str, font_t font, uint16_t fontColor, uint16_t bkColor);
void lcdDrawCircle(uint16_t x, uint16_t y, uint16_t radius, uint8_t filled, uint16_t color);
+void lcdDrawEllipse(uint16_t x, uint16_t y, uint16_t a, uint16_t b, uint16_t color);
/* Text Rendering Functions */
int lcdDrawChar(uint16_t cx, uint16_t cy, char c, font_t font, uint16_t color, uint16_t bkcolor, bool_t tpText);