| 188 | } |
| 189 | |
| 190 | void VulkanResizeWindow(HContext _context, uint32_t width, uint32_t height) |
| 191 | { |
| 192 | VulkanContext* context = (VulkanContext*) _context; |
| 193 | if (dmPlatform::GetWindowStateParam(context->m_BaseContext.m_Window, WINDOW_STATE_OPENED)) |
| 194 | { |
| 195 | VulkanSetWindowSize(_context, width, height); |
| 196 | } |
| 197 | } |
| 198 | } |
nothing calls this directly
no test coverage detected