Searched refs:drawPixel (Results 1 – 9 of 9) sorted by relevance
/hardware/bsp/intel/peripheral/libupm/src/lcd/ |
D | eboled.cxx | 204 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 …]
|
D | eboled.h | 216 void drawPixel (int8_t x, int8_t y, uint8_t color=COLOR_WHITE);
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
D | st7735.cxx | 50 lcd->drawPixel (20, 20, ST7735_GREEN); in main()
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
D | st7735.js | 43 lcd.drawPixel(20, 20, st7735.ST7735_GREEN);
|
D | eboled.js | 83 oled.drawPixel(Math.floor(Math.random()*63), Math.floor(Math.random()*47), 1);
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
D | ST7735Sample.java | 58 lcd.drawPixel((short) 20, (short) 20, upm_st7735.javaupm_st7735Constants.ST7735_GREEN); in main()
|
/hardware/bsp/intel/peripheral/libupm/src/st7735/ |
D | gfx.h | 77 virtual void drawPixel (int16_t x, int16_t y, uint16_t color) = 0;
|
D | st7735.h | 589 void drawPixel (int16_t x, int16_t y, uint16_t color);
|
D | st7735.cxx | 146 ST7735::drawPixel(int16_t x, int16_t y, uint16_t color) { in drawPixel() function in ST7735
|