Lines Matching full:h
10 #include "lv_draw_opengles.h"
12 #include "../lv_draw_private.h"
13 #include "../../misc/cache/lv_cache_entry_private.h"
14 #include "../../drivers/glfw/lv_opengles_debug.h"
15 #include "../../drivers/glfw/lv_opengles_texture.h"
16 #include "../../drivers/glfw/lv_opengles_driver.h"
17 #include <GL/glew.h>
18 #include <GLFW/glfw3.h>
19 #include "../../draw/lv_draw_label.h"
20 #include "../../draw/lv_draw_rect.h"
21 #include "../../draw/lv_draw_arc.h"
22 #include "../../draw/lv_draw_image.h"
23 #include "../../draw/lv_draw_triangle.h"
24 #include "../../draw/lv_draw_line.h"
25 #include "../../core/lv_obj.h"
26 #include "../../core/lv_refr_private.h"
27 #include "../../display/lv_display_private.h"
28 #include "../../stdlib/lv_string.h"
29 #include "../../misc/lv_area_private.h"
52 int32_t h; member
76 static unsigned int create_texture(int32_t w, int32_t h, const void * data);
148 if(lhs->h != rhs->h) { in opengles_texture_cache_compare_cb()
149 return lhs->h > rhs->h ? 1 : -1; in opengles_texture_cache_compare_cb()
192 int32_t h = lv_area_get_height(&layer->buf_area); in dispatch() local
194 texture = create_texture(w, h, NULL); in dispatch()
372 cache_data->h = texture_h; in draw_to_texture()
434 data_to_find.h = lv_area_get_height(&t->_real_area); in draw_from_cached_texture()
574 static unsigned int create_texture(int32_t w, int32_t h, const void * data) in create_texture() argument
589 GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, w, h, 0, GL_BGRA, GL_UNSIGNED_BYTE, data)); in create_texture()