| 292 | } |
| 293 | |
| 294 | std::pair<int16_t, int16_t> OvWindowing::Window::GetPosition() const |
| 295 | { |
| 296 | int x, y; |
| 297 | glfwGetWindowPos(m_glfwWindow, &x, &y); |
| 298 | return std::make_pair(static_cast<int16_t>(x), static_cast<int16_t>(y)); |
| 299 | } |
| 300 | |
| 301 | std::pair<uint16_t, uint16_t> OvWindowing::Window::GetFramebufferSize() const |
| 302 | { |
no test coverage detected