| 4157 | |
| 4158 | template <WsiPlatform WSI_PLATFORM> |
| 4159 | void Demo::execute() { |
| 4160 | create_window<WSI_PLATFORM>(); |
| 4161 | |
| 4162 | create_surface(); |
| 4163 | |
| 4164 | select_physical_device(); |
| 4165 | |
| 4166 | init_vk_swapchain(); |
| 4167 | |
| 4168 | prepare(); |
| 4169 | |
| 4170 | run<WSI_PLATFORM>(); |
| 4171 | } |
| 4172 | |
| 4173 | #if defined(VK_USE_PLATFORM_DISPLAY_KHR) |
| 4174 | template <> |
nothing calls this directly
no test coverage detected