OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GFX
(Results
1 - 4
of
4
) sorted by null
/hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.cxx
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)
[
all
...]
gfx.h
38
* @brief
GFX
helper class
42
class
GFX
{
45
* Instantiates a
GFX
object
52
GFX
(int width, int height, uint8_t * screenBuffer, const unsigned char * font);
55
*
GFX
object destructor
57
~
GFX
();
st7735.cxx
38
:
GFX
(160, 128, m_map, font), m_csLCDPinCtx(csLCD), m_cSDPinCtx(cSD),
st7735.h
36
#include <
gfx
.h>
520
class ST7735 : public
GFX
{
Completed in 261 milliseconds