Searched refs:lv_color_eq (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/tests/unity/ |
D | unity_support.h | 35 # 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/ |
D | lv_color.h | 278 bool lv_color_eq(lv_color_t c1, lv_color_t c2);
|
D | lv_color.c | 262 bool lv_color_eq(lv_color_t c1, lv_color_t c2) in lv_color_eq() function
|
/lvgl-latest/src/core/ |
D | lv_obj_style.c | 438 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/ |
D | lv_theme_default.c | 665 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/ |
D | lv_textarea.c | 1464 if(cur_dsc.bg_opa > LV_OPA_MIN || !lv_color_eq(cur_label_dsc.color, label_color)) { in draw_cursor()
|