D | lv_wayland.c | 253 static void color_fill(void * pixels, lv_color_t color, uint32_t width, uint32_t height); 254 static void color_fill_XRGB8888(void * pixels, lv_color_t color, uint32_t width, uint32_t height); 255 static void color_fill_RGB565(void * pixels, lv_color_t color, uint32_t width, uint32_t height); 1739 static void color_fill(void * pixels, lv_color_t color, uint32_t width, uint32_t height) in color_fill() argument 1744 color_fill_XRGB8888(pixels, color, width, height); in color_fill() 1747 color_fill_RGB565(pixels, color, width, height); in color_fill() 1755 static void color_fill_XRGB8888(void * pixels, lv_color_t color, uint32_t width, uint32_t height) in color_fill_XRGB8888() argument 1757 unsigned char * buf = pixels; in color_fill_XRGB8888() 1771 static void color_fill_RGB565(void * pixels, lv_color_t color, uint32_t width, uint32_t height) in color_fill_RGB565() argument 1773 uint16_t * buf = pixels; in color_fill_RGB565()
|