| 1539 | template <vkb::BindingType bindingType> |
| 1540 | inline void Gui<bindingType>::StatsView::reset_max_value(const StatIndex index) |
| 1541 | { |
| 1542 | auto pr = graph_map.find(index); |
| 1543 | if (pr != graph_map.end()) |
| 1544 | { |
| 1545 | reset_graph_max_value(pr->second); |
| 1546 | } |
| 1547 | } |
| 1548 | |
| 1549 | template <vkb::BindingType bindingType> |
| 1550 | inline void Gui<bindingType>::StatsView::reset_max_values() |
| 1551 | { |
no test coverage detected