Home
last modified time | relevance | path

Searched refs:drawPixel (Results 1 – 9 of 9) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/src/lcd/
Deboled.cxx204 drawPixel(x+i, y+j, color); in drawChar()
234 void EBOLED::drawPixel(int8_t x, int8_t y, uint8_t color) in drawPixel() function in EBOLED
291 drawPixel(y0, x0, color); in drawLine()
293 drawPixel(x0, y0, color); in drawLine()
437 drawPixel(x0 , y0+radius, color); in drawCircle()
438 drawPixel(x0 , y0-radius, color); in drawCircle()
439 drawPixel(x0+radius, y0 , color); in drawCircle()
440 drawPixel(x0-radius, y0 , color); in drawCircle()
455 drawPixel(x0 + x, y0 + y, color); in drawCircle()
456 drawPixel(x0 - x, y0 + y, color); in drawCircle()
[all …]
Deboled.h216 void drawPixel (int8_t x, int8_t y, uint8_t color=COLOR_WHITE);
/hardware/bsp/intel/peripheral/libupm/examples/c++/
Dst7735.cxx50 lcd->drawPixel (20, 20, ST7735_GREEN); in main()
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
Dst7735.js43 lcd.drawPixel(20, 20, st7735.ST7735_GREEN);
Deboled.js83 oled.drawPixel(Math.floor(Math.random()*63), Math.floor(Math.random()*47), 1);
/hardware/bsp/intel/peripheral/libupm/examples/java/
DST7735Sample.java58 lcd.drawPixel((short) 20, (short) 20, upm_st7735.javaupm_st7735Constants.ST7735_GREEN); in main()
/hardware/bsp/intel/peripheral/libupm/src/st7735/
Dgfx.h77 virtual void drawPixel (int16_t x, int16_t y, uint16_t color) = 0;
Dst7735.h589 void drawPixel (int16_t x, int16_t y, uint16_t color);
Dst7735.cxx146 ST7735::drawPixel(int16_t x, int16_t y, uint16_t color) { in drawPixel() function in ST7735