| 288 | } |
| 289 | |
| 290 | std::pair<uint16_t, uint16_t> OvWindowing::Window::GetSize() const |
| 291 | { |
| 292 | int width, height; |
| 293 | glfwGetWindowSize(m_glfwWindow, &width, &height); |
| 294 | return std::make_pair(static_cast<uint16_t>(width), static_cast<uint16_t>(height)); |
| 295 | } |
| 296 | |
| 297 | std::pair<int16_t, int16_t> OvWindowing::Window::GetMinimumSize() const |
| 298 | { |
no test coverage detected