Code Review: a) revert TinyGLTF #defines, b) call vkDeviceWaitIdle() in macOS/iOS termination handlers, c) remove OpenMP target_compile_options() in CMakeLists

This commit is contained in:
Stephen Saunders 2022-07-27 01:11:20 -04:00
parent 46b2027dd1
commit c89d4eb776
7 changed files with 10 additions and 18 deletions

View file

@ -125,5 +125,6 @@ MVKExample::MVKExample(void* view, double scaleUI) {
}
MVKExample::~MVKExample() {
delete _vulkanExample;
vkDeviceWaitIdle(_vulkanExample->vulkanDevice->logicalDevice);
delete(_vulkanExample);
}