Home | History | Annotate | Download | only in st7735

Lines Matching refs:GFX

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