1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

lv_hal_disp: remove the unused hor_res and ver_res

This commit is contained in:
Gabor Kiss-Vamosi 2017-11-20 13:20:53 +01:00
parent 79e3951ac8
commit 68133801d8

View File

@ -32,8 +32,6 @@ extern "C" {
* Display Driver structure to be registered by HAL
*/
typedef struct _disp_drv_t {
int32_t hor_res;
int32_t ver_res;
void (*fill)(int32_t x1, int32_t y1, int32_t x2, int32_t y2, color_t color);
void (*map)(int32_t x1, int32_t y1, int32_t x2, int32_t y2, const color_t * color_p);
void (*copy)(color_t * dest, const color_t * src, uint32_t length, opa_t opa);