feat(CI): Windows MSVC and GCC build (#6015)

This commit is contained in:
Liam
2024-04-18 09:12:50 -04:00
committed by GitHub
parent d0436fbb59
commit e72f52d0bd
20 changed files with 269 additions and 92 deletions

View File

@@ -218,10 +218,10 @@ bool lv_vg_lite_path_update_bonding_box(lv_vg_lite_path_t * path)
lv_vg_lite_path_bounds_t bounds;
/* init bounds */
bounds.min_x = __FLT_MAX__;
bounds.min_y = __FLT_MAX__;
bounds.max_x = __FLT_MIN__;
bounds.max_y = __FLT_MIN__;
bounds.min_x = FLT_MAX;
bounds.min_y = FLT_MAX;
bounds.max_x = FLT_MIN;
bounds.max_y = FLT_MIN;
/* calc bounds */
lv_vg_lite_path_for_each_data(lv_vg_lite_path_get_path(path), path_bounds_iter_cb, &bounds);