Home
last modified time | relevance | path

Searched refs:setPixel (Results 1 – 7 of 7) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/src/st7735/
Dgfx.cxx44 GFX::setPixel (int x, int y, uint16_t color) { in setPixel() function in GFX
102 setPixel(y0, x0, color); in drawLine()
104 setPixel(x0, y0, color); in drawLine()
129 setPixel(x0 , y0+r, color); in drawCircle()
130 setPixel(x0 , y0-r, color); in drawCircle()
131 setPixel(x0+r, y0 , color); in drawCircle()
132 setPixel(x0-r, y0 , color); in drawCircle()
145 setPixel(x0 + x, y0 + y, color); in drawCircle()
146 setPixel(x0 - x, y0 + y, color); in drawCircle()
147 setPixel(x0 + x, y0 - y, color); in drawCircle()
[all …]
Dgfx.h110 mraa::Result setPixel (int x, int y, uint16_t color);
Dst7735.cxx147 if (mraa::SUCCESS != setPixel (x, y, color)) { in drawPixel()
/hardware/bsp/intel/peripheral/libupm/src/lol/
Dlol.h91 unsigned char setPixel(int x, int y, unsigned char pixel);
Dlol.cxx171 unsigned char LoL::setPixel(int x, int y, unsigned char pixel) in setPixel() function in LoL
/hardware/bsp/intel/peripheral/libupm/examples/java/
DLoL_exampleSample.java46 sensor.setPixel(x, y, pixel); in main()
/hardware/bsp/intel/peripheral/libupm/examples/c++/
Dlol-example.cxx55 sensor->setPixel(x, y, !(sensor->getPixel(x, y))); in main()