move VK source files to up-level folder

This commit is contained in:
2020-10-21 11:43:18 +08:00
parent 114c57510c
commit 917424e784
118 changed files with 506 additions and 468 deletions

28
inc/hgl/graph/VKFence.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef HGL_VULKAN_GRAPH_FENCE_INCLUDE
#define HGL_VULKAN_GRAPH_FENCE_INCLUDE
#include<hgl/graph/VK.h>
VK_NAMESPACE_BEGIN
class Fence
{
VkDevice device;
VkFence fence;
private:
friend class Device;
Fence(VkDevice d,VkFence f)
{
device=d;
fence=f;
}
public:
~Fence();
operator VkFence(){return fence;}
};//class Fence
VK_NAMESPACE_END
#endif//HGL_VULKAN_GRAPH_FENCE_INCLUDE