Home
last modified time | relevance | path

Searched defs:cf (Results 1 – 25 of 41) sorted by relevance

12

/lvgl-latest/src/draw/nxp/pxp/
Dlv_pxp_utils.c41 pxp_output_pixel_format_t pxp_get_out_px_format(lv_color_format_t cf) in pxp_get_out_px_format()
67 pxp_as_pixel_format_t pxp_get_as_px_format(lv_color_format_t cf) in pxp_get_as_px_format()
94 pxp_ps_pixel_format_t pxp_get_ps_px_format(lv_color_format_t cf) in pxp_get_ps_px_format()
Dlv_draw_pxp.c110 lv_color_format_t cf) in lv_draw_pxp_rotate()
167 static inline bool _pxp_src_cf_supported(lv_color_format_t cf) in _pxp_src_cf_supported()
184 static inline bool _pxp_dest_cf_supported(lv_color_format_t cf) in _pxp_dest_cf_supported()
Dlv_draw_buf_pxp.c71 lv_color_format_t cf = header->cf; in _invalidate_cache() local
/lvgl-latest/src/others/snapshot/
Dlv_snapshot.c47 lv_draw_buf_t * lv_snapshot_create_draw_buf(lv_obj_t * obj, lv_color_format_t cf) in lv_snapshot_create_draw_buf()
74 lv_result_t lv_snapshot_take_to_draw_buf(lv_obj_t * obj, lv_color_format_t cf, lv_draw_buf_t * draw… in lv_snapshot_take_to_draw_buf()
142 lv_draw_buf_t * lv_snapshot_take(lv_obj_t * obj, lv_color_format_t cf) in lv_snapshot_take()
162 lv_result_t lv_snapshot_take_to_buf(lv_obj_t * obj, lv_color_format_t cf, lv_image_dsc_t * dsc, in lv_snapshot_take_to_buf()
/lvgl-latest/src/draw/nxp/vglite/
Dlv_vglite_utils.c181 vg_lite_buffer_format_t vglite_get_buf_format(lv_color_format_t cf) in vglite_get_buf_format()
228 uint8_t vglite_get_stride_alignment(lv_color_format_t cf) in vglite_get_stride_alignment()
263 bool vglite_src_buf_aligned(const void * buf, uint32_t stride, lv_color_format_t cf) in vglite_src_buf_aligned()
Dlv_vglite_buf.c73 lv_color_format_t cf) in vglite_set_dest_buf()
79 lv_color_format_t cf) in vglite_set_src_buf()
86 lv_color_format_t cf) in vglite_set_buf()
Dlv_draw_buf_vglite.c76 lv_color_format_t cf = header->cf; in _invalidate_cache() local
121 static uint32_t _width_to_stride(uint32_t w, lv_color_format_t cf) in _width_to_stride()
Dlv_draw_vglite.c134 static inline bool _vglite_src_cf_supported(lv_color_format_t cf) in _vglite_src_cf_supported()
164 static inline bool _vglite_dest_cf_supported(lv_color_format_t cf) in _vglite_dest_cf_supported()
/lvgl-latest/src/draw/nema_gfx/
Dlv_draw_nema_gfx_utils.c43 uint32_t lv_nemagfx_cf_to_nema(lv_color_format_t cf) in lv_nemagfx_cf_to_nema()
130 bool lv_nemagfx_is_cf_supported(lv_color_format_t cf) in lv_nemagfx_is_cf_supported()
/lvgl-latest/src/drivers/display/st_ltdc/
Dlv_st_ltdc.c110 lv_color_format_t cf = get_lv_cf_from_layer_cf(layer_cf); in create() local
157 lv_color_format_t cf = lv_display_get_color_format(disp); in flush_cb() local
214 static lv_color_format_t get_lv_cf_from_layer_cf(uint32_t cf) in get_lv_cf_from_layer_cf()
255 static uint32_t get_dma2d_output_cf_from_layer_cf(uint32_t cf) in get_dma2d_output_cf_from_layer_cf()
269 static uint32_t get_dma2d_input_cf_from_lv_cf(uint32_t cf) in get_dma2d_input_cf_from_lv_cf()
/lvgl-latest/src/draw/dma2d/
Dlv_draw_dma2d_fill.c40 lv_color_format_t cf = dsc->base.layer->color_format; in lv_draw_dma2d_opaque_fill() local
74 lv_color_format_t cf = dsc->base.layer->color_format; in lv_draw_dma2d_fill() local
Dlv_draw_dma2d.c125 lv_draw_dma2d_output_cf_t lv_draw_dma2d_cf_to_dma2d_output_cf(lv_color_format_t cf) in lv_draw_dma2d_cf_to_dma2d_output_cf()
143 uint32_t lv_draw_dma2d_color_to_dma2d_color(lv_draw_dma2d_output_cf_t cf, lv_color_t color) in lv_draw_dma2d_color_to_dma2d_color()
/lvgl-latest/src/draw/
Dlv_draw_buf.h36 #define LV_DRAW_BUF_STRIDE(w, cf) \ argument
40 #define LV_DRAW_BUF_SIZE(w, h, cf) \ argument
Dlv_draw_buf.c271 lv_result_t lv_draw_buf_init(lv_draw_buf_t * draw_buf, uint32_t w, uint32_t h, lv_color_format_t cf in lv_draw_buf_init()
303 lv_draw_buf_t * lv_draw_buf_create(uint32_t w, uint32_t h, lv_color_format_t cf, uint32_t stride) in lv_draw_buf_create()
309 lv_color_format_t cf, uint32_t stride) in lv_draw_buf_create_ex()
373 lv_draw_buf_t * lv_draw_buf_reshape(lv_draw_buf_t * draw_buf, lv_color_format_t cf, uint32_t w, uin… in lv_draw_buf_reshape()
519 lv_color_format_t cf = draw_buf->header.cf; in lv_draw_buf_premultiply() local
698 static uint32_t _calculate_draw_buf_size(uint32_t w, uint32_t h, lv_color_format_t cf, uint32_t str… in _calculate_draw_buf_size()
Dlv_image_dsc.h84 uint32_t cf : 8; /**< Color format: See `lv_color_format_t`*/ member
90 uint32_t cf : 8; /**< Color format: See `lv_color_format_t`*/ member
/lvgl-latest/src/misc/
Dlv_color.h65 #define LV_COLOR_FORMAT_GET_BPP(cf) ( \ argument
95 #define LV_COLOR_FORMAT_GET_SIZE(cf) ((LV_COLOR_FORMAT_GET_BPP(cf) + 7) >> 3) argument
213 #define LV_COLOR_FORMAT_IS_ALPHA_ONLY(cf) ((cf) >= LV_COLOR_FORMAT_A1 && (cf) <= LV_COLOR_FORMAT_A8) argument
214 #define LV_COLOR_FORMAT_IS_INDEXED(cf) ((cf) >= LV_COLOR_FORMAT_I1 && (cf) <= LV_COLOR_FORMAT_I8) argument
215 #define LV_COLOR_FORMAT_IS_YUV(cf) ((cf) >= LV_COLOR_FORMAT_YUV_START && (cf) <= LV_COLOR_FORMAT_Y… argument
216 #define LV_COLOR_INDEXED_PALETTE_SIZE(cf) ((cf) == LV_COLOR_FORMAT_I1 ? 2 :\ argument
Dlv_color.c43 uint8_t lv_color_format_get_bpp(lv_color_format_t cf) in lv_color_format_get_bpp()
82 bool lv_color_format_has_alpha(lv_color_format_t cf) in lv_color_format_has_alpha()
251 uint8_t lv_color_format_get_size(lv_color_format_t cf) in lv_color_format_get_size()
/lvgl-latest/src/draw/sw/
Dlv_draw_sw_img.c219 lv_color_format_t cf = decoded->header.cf; in img_draw_core() local
303 lv_color_format_t cf = decoded->header.cf; in radius_only() local
383 lv_color_format_t cf = decoded->header.cf; in recolor_only() local
445 lv_color_format_t cf = decoded->header.cf; in transform_and_recolor() local
546 lv_color_format_t cf, const lv_draw_image_dsc_t * draw_dsc) in recolor()
Dlv_draw_sw.c158 lv_color_format_t cf = draw_dsc->header.cf; in evaluate() local
/lvgl-latest/src/draw/renesas/dave2d/
Dlv_draw_dave2d_utils.c155 bool lv_draw_dave2d_is_dest_cf_supported(lv_color_format_t cf) in lv_draw_dave2d_is_dest_cf_supported()
/lvgl-latest/src/libs/bin_decoder/
Dlv_bin_decoder.c216 lv_color_format_t cf = dsc->header.cf; in lv_bin_decoder_open() local
257 lv_color_format_t cf = image->header.cf; in lv_bin_decoder_open() local
394 lv_color_format_t cf = dsc->header.cf; in lv_bin_decoder_get_area() local
572 lv_color_format_t cf = dsc->header.cf; in decode_indexed() local
787 lv_color_format_t cf = dsc->header.cf; in decode_rgb() local
995 lv_color_format_t cf = dsc->header.cf; in decode_compressed() local
/lvgl-latest/tests/src/
Dlv_test_init.c51 lv_color_format_t cf = lv_display_get_color_format(disp); in color_format_changled_event_cb() local
/lvgl-latest/src/drivers/glfw/
Dlv_opengles_texture.c142 lv_color_format_t cf = lv_display_get_color_format(disp); in flush_cb() local
/lvgl-latest/src/widgets/image/
Dlv_image_private.h45 uint32_t cf : 5; /**< Color format from `lv_color_format_t`*/ member
/lvgl-latest/src/drivers/sdl/
Dlv_sdl_window.c213 lv_color_format_t cf = lv_display_get_color_format(disp); in flush_cb() local
378 lv_color_format_t cf = lv_display_get_color_format(disp); in window_update() local
396 lv_color_format_t cf = lv_display_get_color_format(disp); in texture_resize() local

12