Lines Matching refs:display

56 static void flush_direct(lv_display_t * display, const lv_area_t * area, uint8_t * px_map);
57 static void flush_partial(lv_display_t * display, const lv_area_t * area, uint8_t * px_map);
58 static void flush_wait_direct(lv_display_t * display);
59 static void flush_wait_partial(lv_display_t * display);
154 lv_display_t * display = lv_display_create(DISPLAY_HSIZE_INPUT0, DISPLAY_VSIZE_INPUT0); in glcdc_create() local
157 lv_display_set_flush_cb(display, flush_direct); in glcdc_create()
158 lv_display_set_flush_wait_cb(display, flush_wait_direct); in glcdc_create()
161 lv_display_set_flush_cb(display, flush_partial); in glcdc_create()
162 lv_display_set_flush_wait_cb(display, flush_wait_partial); in glcdc_create()
168 lv_display_set_buffers(display, buf1, buf2, buf_size, render_mode); in glcdc_create()
170 return display; in glcdc_create()
241 static void flush_direct(lv_display_t * display, const lv_area_t * area, uint8_t * px_map) in flush_direct() argument
246 if(!lv_display_flush_is_last(display)) return; in flush_direct()
268 static void flush_wait_direct(lv_display_t * display) in flush_wait_direct() argument
270 if(!lv_display_flush_is_last(display)) return; in flush_wait_direct()
283 static void flush_partial(lv_display_t * display, const lv_area_t * area, uint8_t * px_map) in flush_partial() argument
288 lv_color_format_t cf = lv_display_get_color_format(display); in flush_partial()
289 lv_display_rotation_t rotation = lv_display_get_rotation(display); in flush_partial()
311 lv_display_rotate_area(display, &rotated_area); in flush_partial()
335 static void flush_wait_partial(lv_display_t * display) in flush_wait_partial() argument
337 LV_UNUSED(display); in flush_wait_partial()