Searched refs:texture_h (Results 1 – 2 of 2) sorted by relevance
/lvgl-latest/src/draw/opengles/ |
D | lv_draw_opengles.c | 246 int32_t texture_h = lv_area_get_height(&task->_real_area); in draw_to_texture() local 248 …w_buf_reshape(&u->render_draw_buf, LV_COLOR_FORMAT_ARGB8888, texture_w, texture_h, LV_STRIDE_AUTO)… in draw_to_texture() 250 uint32_t data_size = LV_DRAW_BUF_SIZE(texture_w, texture_h, LV_COLOR_FORMAT_ARGB8888); in draw_to_texture() 253 …lv_result_t init_result = lv_draw_buf_init(&u->render_draw_buf, texture_w, texture_h, LV_COLOR_FOR… in draw_to_texture() 365 unsigned int texture = create_texture(texture_w, texture_h, u->render_draw_buf.data); in draw_to_texture() 372 cache_data->h = texture_h; in draw_to_texture()
|
/lvgl-latest/src/draw/sdl/ |
D | lv_draw_sdl.c | 204 int32_t texture_h = lv_area_get_height(&task->_real_area); in draw_to_texture() local 206 …if(!lv_draw_buf_reshape(&u->render_draw_buf, LV_COLOR_FORMAT_ARGB8888, texture_w, texture_h, LV_ST… in draw_to_texture() 208 uint32_t data_size = LV_DRAW_BUF_SIZE(texture_w, texture_h, LV_COLOR_FORMAT_ARGB8888); in draw_to_texture() 213 …lv_result_t init_result = lv_draw_buf_init(&u->render_draw_buf, texture_w, texture_h, LV_COLOR_FOR… in draw_to_texture() 326 SDL_TEXTUREACCESS_STATIC, texture_w, texture_h); in draw_to_texture() 335 cache_data->h = texture_h; in draw_to_texture()
|