| 3704 | |
| 3705 | template <> |
| 3706 | void Demo::run<WsiPlatform::display>() { |
| 3707 | while (!quit) { |
| 3708 | draw(); |
| 3709 | curFrame++; |
| 3710 | |
| 3711 | if (frameCount != UINT32_MAX && curFrame == frameCount) { |
| 3712 | quit = true; |
| 3713 | } |
| 3714 | } |
| 3715 | } |
| 3716 | |
| 3717 | #endif |
| 3718 | #if defined(VK_USE_PLATFORM_SCREEN_QNX) |
nothing calls this directly
no test coverage detected