Searched refs:lv_glfw_texture_t (Results 1 – 4 of 4) sorted by relevance
/lvgl-latest/src/drivers/glfw/ |
D | lv_glfw_window.h | 58 lv_glfw_texture_t * lv_glfw_window_add_texture(lv_glfw_window_t * window, unsigned int texture_id, … 65 void lv_glfw_texture_remove(lv_glfw_texture_t * texture); 72 void lv_glfw_texture_set_x(lv_glfw_texture_t * texture, int32_t x); 79 void lv_glfw_texture_set_y(lv_glfw_texture_t * texture, int32_t y); 86 void lv_glfw_texture_set_opa(lv_glfw_texture_t * texture, lv_opa_t opa); 96 lv_indev_t * lv_glfw_texture_get_mouse_indev(lv_glfw_texture_t * texture);
|
D | lv_glfw_window.c | 94 lv_ll_init(&window->textures, sizeof(lv_glfw_texture_t)); in lv_glfw_window_create() 111 lv_glfw_texture_t * texture; in lv_glfw_window_delete() 125 lv_glfw_texture_t * lv_glfw_window_add_texture(lv_glfw_window_t * window, unsigned int texture_id, … in lv_glfw_window_add_texture() 127 lv_glfw_texture_t * texture = lv_ll_ins_tail(&window->textures); in lv_glfw_window_add_texture() 157 void lv_glfw_texture_remove(lv_glfw_texture_t * texture) in lv_glfw_texture_remove() 166 void lv_glfw_texture_set_x(lv_glfw_texture_t * texture, int32_t x) in lv_glfw_texture_set_x() 171 void lv_glfw_texture_set_y(lv_glfw_texture_t * texture, int32_t y) in lv_glfw_texture_set_y() 176 void lv_glfw_texture_set_opa(lv_glfw_texture_t * texture, lv_opa_t opa) in lv_glfw_texture_set_opa() 181 lv_indev_t * lv_glfw_texture_get_mouse_indev(lv_glfw_texture_t * texture) in lv_glfw_texture_get_mouse_indev() 295 lv_glfw_texture_t * texture; in window_update_handler() [all …]
|
/lvgl-latest/docs/details/integration/driver/ |
D | opengles.rst | 57 …lv_glfw_texture_t * window_texture = lv_glfw_window_add_texture(window, texture_id, WIDTH, HEIGHT); 115 …lv_glfw_texture_t * window_main_texture = lv_glfw_window_add_texture(window, main_texture_id, WIDT… 140 …lv_glfw_texture_t * window_sub_texture = lv_glfw_window_add_texture(window, sub_texture_id, sub_te… 183 …lv_glfw_texture_t * window_external_texture = lv_glfw_window_add_texture(window, external_texture_…
|
/lvgl-latest/src/misc/ |
D | lv_types.h | 325 typedef struct _lv_glfw_texture_t lv_glfw_texture_t; typedef
|