Lines Matching refs:GFX
33 GFX::GFX (int width, int height, uint8_t * screenBuffer, const unsigned char * font) : WIDTH(width)… in GFX() function in GFX
40 GFX::~GFX () { in ~GFX()
44 GFX::setPixel (int x, int y, uint16_t color) { in setPixel()
57 GFX::fillScreen (uint16_t color) { in fillScreen()
62 GFX::fillRect (int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color) { in fillRect()
69 GFX::drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color) { in drawFastVLine()
74 GFX::drawLine (int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color) { in drawLine()
115 GFX::drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint16_t … in drawTriangle()
122 GFX::drawCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color) { in drawCircle()
157 GFX::setCursor (int16_t x, int16_t y) { in setCursor()
163 GFX::setTextColor (uint16_t textColor, uint16_t textBGColor) { in setTextColor()
169 GFX::setTextSize (uint8_t size) { in setTextSize()
174 GFX::setTextWrap (uint8_t wrap) { in setTextWrap()
179 GFX::drawChar (int16_t x, int16_t y, uint8_t data, uint16_t color, uint16_t bg, uint8_t size) { in drawChar()
213 GFX::print (std::string msg) { in print()