| 40 | } |
| 41 | |
| 42 | DisplaySize VirtualDisplay::getSize() const |
| 43 | { |
| 44 | DisplaySize result = {}; |
| 45 | glfwGetFramebufferSize(m_window, (int*)&result.width, (int*)&result.height); |
| 46 | return result; |
| 47 | } |
| 48 | |
| 49 | VkSurfaceKHR VirtualDisplay::getWindowSurface(VkInstance instance) |
| 50 | { |
no test coverage detected