1 /* 2 * Copyright (c) 2006-2025, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2024-02-28 Rbb666 first commit 9 */ 10 #ifndef __DRV_LCD_H_ 11 #define __DRV_LCD_H_ 12 13 void lcd_draw_pixel(uint32_t x, uint32_t y, uint16_t color); 14 void lcd_draw_jpg(int32_t x, int32_t y, const void *p, int32_t xSize, int32_t ySize); 15 void lcd_gpu_fill_array(size_t x1, size_t y1, size_t x2, size_t y2, uint16_t *color_data); 16 17 #endif 18