ULRE/example/Vulkan/VKSemaphore.cpp

8 lines
132 B
C++
Raw Normal View History

#include"VKSemaphore.h"
VK_NAMESPACE_BEGIN
2019-04-19 20:04:08 +08:00
Semaphore::~Semaphore()
{
vkDestroySemaphore(device,sem,nullptr);
}
VK_NAMESPACE_END