Home
last modified time | relevance | path

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

/lvgl-2.7.6/tests/lv_test_core/
Dlv_test_font_loader.c32 static int compare_fonts(lv_font_t * f1, lv_font_t * f2);
71 static int compare_fonts(lv_font_t * f1, lv_font_t * f2) in compare_fonts() argument
73 lv_test_assert_true(f1 != NULL && f2 != NULL, "font not null"); in compare_fonts()
75 lv_test_assert_ptr_eq(f1->get_glyph_dsc, f2->get_glyph_dsc, "glyph_dsc"); in compare_fonts()
76 lv_test_assert_ptr_eq(f1->get_glyph_bitmap, f2->get_glyph_bitmap, "glyph_bitmap"); in compare_fonts()
77 lv_test_assert_int_eq(f1->line_height, f2->line_height, "line_height"); in compare_fonts()
78 lv_test_assert_int_eq(f1->base_line, f2->base_line, "base_line"); in compare_fonts()
80 lv_test_assert_int_eq(f1->subpx, f2->subpx, "subpx"); in compare_fonts()
82 lv_font_fmt_txt_dsc_t * dsc1 = (lv_font_fmt_txt_dsc_t *) f1->dsc; in compare_fonts()