Home
last modified time | relevance | path

Searched refs:lv_color_eq (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/tests/unity/
Dunity_support.h35 # define TEST_ASSERT_EQUAL_COLOR(c1, c2) TEST_ASSERT_TRUE(lv_color_eq(c1, c2))
36 # define TEST_ASSERT_EQUAL_COLOR_MESSAGE(c1, c2, msg) TEST_ASSERT_TRUE(lv_color_eq(c1, c2), m…
/lvgl-latest/src/misc/
Dlv_color.h278 bool lv_color_eq(lv_color_t c1, lv_color_t c2);
Dlv_color.c262 bool lv_color_eq(lv_color_t c1, lv_color_t c2) in lv_color_eq() function
/lvgl-latest/src/core/
Dlv_obj_style.c438 if(v1.ptr == v2.ptr && v1.num == v2.num && lv_color_eq(v1.color, v2.color)) return; in lv_obj_style_create_transition()
908 … if(value_final.ptr == old_value.ptr && lv_color_eq(value_final.color, old_value.color) && in trans_anim_cb()
/lvgl-latest/src/themes/default/
Dlv_theme_default.c665 lv_color_eq(theme->base.color_primary, color_primary) && in lv_theme_default_init()
666 lv_color_eq(theme->base.color_secondary, color_secondary) && in lv_theme_default_init()
/lvgl-latest/src/widgets/textarea/
Dlv_textarea.c1464 if(cur_dsc.bg_opa > LV_OPA_MIN || !lv_color_eq(cur_label_dsc.color, label_color)) { in draw_cursor()