Home
last modified time | relevance | path

Searched refs:GFX (Results 1 – 4 of 4) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/src/st7735/
Dgfx.cxx33 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()
[all …]
Dgfx.h42 class GFX {
52 GFX (int width, int height, uint8_t * screenBuffer, const unsigned char * font);
57 ~GFX ();
Dst7735.h520 class ST7735 : public GFX {
Dst7735.cxx38 : GFX (160, 128, m_map, font), m_csLCDPinCtx(csLCD), m_cSDPinCtx(cSD), in ST7735()