| 878 | } |
| 879 | |
| 880 | void DrawRectFilled(const sf::FloatRect& rect, const sf::Color& color, float rounding, int rounding_corners) |
| 881 | { |
| 882 | ImDrawList* draw_list = ImGui::GetWindowDrawList(); |
| 883 | draw_list->AddRectFilled(getTopLeftAbsolute(rect), |
| 884 | getDownRightAbsolute(rect), |
| 885 | ColorConvertFloat4ToU32(toImColor(color)), |
| 886 | rounding, |
| 887 | rounding_corners); |
| 888 | } |
| 889 | |
| 890 | } // end of namespace ImGui |
| 891 |
nothing calls this directly
no test coverage detected