| 865 | } |
| 866 | |
| 867 | void WindowBase::EndDrawingWindow() |
| 868 | { |
| 869 | auto size = ImGui::GetWindowSize(); |
| 870 | LastSize = glm::vec2(size.x, size.y); |
| 871 | auto pos = ImGui::GetWindowPos(); |
| 872 | LastPosition = glm::vec2(pos.x, pos.y); |
| 873 | } |
| 874 | |
| 875 | void WindowBase::ProcessRenderSettings(DrawingContext& context) |
| 876 | { |
nothing calls this directly
no outgoing calls
no test coverage detected