| /bsp/efm32/graphics/dmd/ssd2119/ |
| A D | dmdif_ssd2119_ebi16.c | 189 uint16_t pixel; in DMDIF_writeDataConverted() local 191 pixel = b >> 1; in DMDIF_writeDataConverted() 192 pixel |= (a << 8) & 0xFF00; in DMDIF_writeDataConverted() 194 *data_register = pixel; in DMDIF_writeDataConverted()
|
| /bsp/raspberry-pi/raspi3-32/driver/ |
| A D | drv_fb.c | 324 static void hdmi_draw_rect(const char* pixel, int x1, int y1, int x2, int y2) in hdmi_draw_rect() argument 334 *((unsigned int*) (_hdmi_info.framebuffer + line)) = *(unsigned int*) pixel; in hdmi_draw_rect() 341 static void hdmi_set_pixel(const char* pixel, int x, int y) in hdmi_set_pixel() argument 343 *(uint32_t*) (_hdmi.fb.addr + (y * _hdmi.fb.pitch + x * 4)) = *(uint32_t *) pixel; in hdmi_set_pixel() 346 static void hdmi_get_pixel(char* pixel, int x, int y) in hdmi_get_pixel() argument 350 *pixel = ret; in hdmi_get_pixel() 353 static void hdmi_draw_hline(const char* pixel, int x1, int x2, int y) in hdmi_draw_hline() argument 355 hdmi_draw_rect(pixel, x1, y, x2, y); in hdmi_draw_hline() 358 static void hdmi_draw_vline(const char* pixel, int x, int y1, int y2) in hdmi_draw_vline() argument 360 hdmi_draw_rect(pixel, x, y1, x, y2); in hdmi_draw_vline()
|
| /bsp/stm32/stm32f407-rt-spark/board/ports/lcd/ |
| A D | drv_lcd.c | 135 void LCD_ReadPoint(char *pixel, int x, int y) in LCD_ReadPoint() argument 137 uint16_t *color = (uint16_t *)pixel; in LCD_ReadPoint() 324 uint16_t color = *((uint16_t *)pixel); in LCD_Fast_DrawPoint() 1109 rt_uint16_t *pixel = RT_NULL; in lcd_fill_array() local 1112 pixel = (rt_uint16_t *)pcolor; in lcd_fill_array() 1119 LCD->_u8_RAM = (*pixel)>>8; in lcd_fill_array() 1120 LCD->_u8_RAM = *pixel++; in lcd_fill_array() 1164 LCD_Fast_DrawPoint(pixel, uRow, uCol); in LCD_DrawLine() 1183 LCD_DrawLine(pixel, x1, y, x2, y); in LCD_HLine() 1188 LCD_DrawLine(pixel, x, y1, x, y2); in LCD_VLine() [all …]
|
| /bsp/nxp/lpc/lpc178x/drivers/ |
| A D | lpc17xx_lcd.c | 90 void lcd_fill(uint8_t * start, uint8_t * end, uint8_t pixel) in lcd_fill() argument 94 *start++ = pixel; in lcd_fill()
|
| /bsp/efm32/Libraries/emlib/inc/ |
| A D | em_ebi.h | 606 __STATIC_INLINE void EBI_TFTPixelSet(int pixel, uint32_t color) in EBI_TFTPixelSet() argument 608 EFM_ASSERT(pixel == 0 || pixel == 1); in EBI_TFTPixelSet() 610 if (pixel == 0) in EBI_TFTPixelSet() 614 if (pixel == 1) in EBI_TFTPixelSet()
|
| /bsp/stm32/stm32f407-atk-explorer/board/ports/ |
| A D | drv_lcd.c | 155 void LCD_ReadPoint(char *pixel, int x, int y) in LCD_ReadPoint() argument 157 uint16_t *color = (uint16_t *)pixel; in LCD_ReadPoint() 338 uint16_t color = *((uint16_t *)pixel); in LCD_Fast_DrawPoint() 515 LCD_Fast_DrawPoint(pixel, uRow, uCol); in LCD_DrawLine() 532 void LCD_HLine(const char *pixel, int x1, int x2, int y) in LCD_HLine() argument 534 LCD_DrawLine(pixel, x1, y, x2, y); in LCD_HLine() 539 LCD_DrawLine(pixel, x, y1, x, y2); in LCD_VLine() 546 uint16_t *p = (uint16_t *)pixel; in LCD_BlitLine() 553 rt_uint16_t *pixel = RT_NULL; in lcd_fill_array() local 556 pixel = (rt_uint16_t *)pcolor; in lcd_fill_array() [all …]
|
| /bsp/nuvoton/libraries/nu_packages/FSA506/ |
| A D | lcd_fsa506.c | 190 static void fsa506_lcd_draw_hline(const char *pixel, int x1, int x2, int y) in fsa506_lcd_draw_hline() argument 197 fsa506_send_pixel_data(*(uint16_t *)pixel); in fsa506_lcd_draw_hline() 201 static void fsa506_lcd_draw_vline(const char *pixel, int x, int y1, int y2) in fsa506_lcd_draw_vline() argument 208 fsa506_send_pixel_data(*(uint16_t *)pixel); in fsa506_lcd_draw_vline()
|
| /bsp/nuvoton/libraries/nu_packages/ILI9341/ |
| A D | lcd_ili9341.c | 231 static void ili9341_lcd_draw_hline(const char *pixel, int x1, int x2, int y) in ili9341_lcd_draw_hline() argument 238 ili9341_send_pixel_data(*(uint16_t *)pixel); in ili9341_lcd_draw_hline() 241 static void ili9341_lcd_draw_vline(const char *pixel, int x, int y1, int y2) in ili9341_lcd_draw_vline() argument 248 ili9341_send_pixel_data(*(uint16_t *)pixel); in ili9341_lcd_draw_vline()
|
| A D | ili9341_spi.c | 61 void ili9341_send_pixel_data(rt_uint16_t pixel) in ili9341_send_pixel_data() argument 63 ili9341_write_data_16bit(pixel); in ili9341_send_pixel_data()
|
| /bsp/nuvoton/libraries/nu_packages/SSD1963/ |
| A D | lcd_ssd1963.c | 192 static void ssd1963_lcd_draw_hline(const char *pixel, int x1, int x2, int y) in ssd1963_lcd_draw_hline() argument 199 ssd1963_send_pixel_data(*(uint16_t *)pixel); in ssd1963_lcd_draw_hline() 202 static void ssd1963_lcd_draw_vline(const char *pixel, int x, int y1, int y2) in ssd1963_lcd_draw_vline() argument 209 ssd1963_send_pixel_data(*(uint16_t *)pixel); in ssd1963_lcd_draw_vline()
|
| /bsp/stm32/stm32h750-fk750m1-vbt6/board/port/lcd/ |
| A D | drv_lcd_spi.c | 443 static void set_pixel(const char *pixel, int x, int y) in set_pixel() argument 445 lcd_drawpoint(x, y, *pixel); in set_pixel() 448 void draw_hline(const char *pixel, int x1, int x2, int y) in draw_hline() argument 450 lcd_drawline_h(x1, y, ABS(x2 - x1), *((uint16_t*)pixel)); in draw_hline() 453 void draw_vline(const char *pixel, int x, int y1, int y2) in draw_vline() argument 455 lcd_drawline_v(x, y1, ABS(y2 - y1), *((uint16_t*)pixel)); in draw_vline()
|
| /bsp/renesas/libraries/HAL_Drivers/ |
| A D | drv_lcd.c | 126 uint16_t *pixel = RT_NULL; in lcd_fill_array() local 129 pixel = (uint16_t *)pcolor; in lcd_fill_array() 135 lcd_draw_pixel(x_start + x_offset, cycle_y, *pixel++); in lcd_fill_array()
|
| /bsp/simulator/SDL2/include/ |
| A D | SDL_pixels.h | 631 extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel, 660 extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel,
|
| /bsp/stm32/stm32f469-st-disco/ |
| A D | README.md | 29 - LCD:4 inches 800x480 pixel TFT
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/disp2/disp/de/lowlevel_v2x/ |
| A D | de_lcd_type.h | 662 u32 pixel:24; member
|
| A D | de_lcd.c | 1941 lcd_dev[sel]->tcon_gamma_tlb[i].bits.pixel = *gamma_tbl; in tcon_gamma()
|
| A D | de_lcd_sun50iw10.c | 1947 lcd_dev[sel]->tcon_gamma_tlb[i].bits.pixel = *gamma_tbl; in tcon_gamma()
|
| /bsp/hpmicro/libraries/hpm_sdk/ |
| A D | CHANGELOG.md | 634 - drivers: jpeg: fix pixel format index for out buffer. 1012 - drivers: add raw8 pixel format support 1165 - samples: lcdc: boundary pixel is incorrenct
|