Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/
H A Dvatti.hpp31 local_minimum_ptr_list<T> minima_sorted; in execute_vatti() local
32 minima_sorted.reserve(minima_list.size()); in execute_vatti()
34 minima_sorted.push_back(&lm); in execute_vatti()
36 std::stable_sort(minima_sorted.begin(), minima_sorted.end(), local_minimum_sorter<T>()); in execute_vatti()
37 local_minimum_ptr_list_itr<T> current_lm = minima_sorted.begin(); in execute_vatti()
43 while (pop_from_scanbeam(scanline_y, scanbeam) || current_lm != minima_sorted.end()) { in execute_vatti()
53 process_edges_at_top_of_scanbeam(scanline_y, active_bounds, scanbeam, minima_sorted, in execute_vatti()
60 insert_local_minima_into_ABL(scanline_y, minima_sorted, current_lm, active_bounds, manager, in execute_vatti()
H A Dsnap_rounding.hpp130 local_minimum_ptr_list<T>& minima_sorted, in insert_local_minima_into_ABL_hot_pixel() argument
135 while (lm != minima_sorted.end() && (*lm)->y == top_y) { in insert_local_minima_into_ABL_hot_pixel()
163 local_minimum_ptr_list<T> minima_sorted; in build_hot_pixels() local
164 minima_sorted.reserve(minima_list.size()); in build_hot_pixels()
166 minima_sorted.push_back(&lm); in build_hot_pixels()
168 std::stable_sort(minima_sorted.begin(), minima_sorted.end(), local_minimum_sorter<T>()); in build_hot_pixels()
169 local_minimum_ptr_list_itr<T> current_lm = minima_sorted.begin(); in build_hot_pixels()
181 while (pop_from_scanbeam(scanline_y, scanbeam) || current_lm != minima_sorted.end()) { in build_hot_pixels()
185 insert_local_minima_into_ABL_hot_pixel(scanline_y, minima_sorted, current_lm, active_bounds, in build_hot_pixels()
H A Dactive_bound_list.hpp366 local_minimum_ptr_list<T> const& minima_sorted, in insert_local_minima_into_ABL() argument
374 while (current_lm != minima_sorted.end() && bot_y == (*current_lm)->y) { in insert_local_minima_into_ABL()
386 local_minimum_ptr_list<T> const& minima_sorted, in insert_horizontal_local_minima_into_ABL() argument
394 while (current_lm != minima_sorted.end() && top_y == (*current_lm)->y && in insert_horizontal_local_minima_into_ABL()
H A Dprocess_maxima.hpp61 local_minimum_ptr_list<T> const& minima_sorted, in process_edges_at_top_of_scanbeam() argument
107 insert_horizontal_local_minima_into_ABL(top_y, minima_sorted, current_lm, active_bounds, in process_edges_at_top_of_scanbeam()