a lot of rename

This commit is contained in:
2020-10-21 12:09:15 +08:00
parent 6dae81ac93
commit a20afeba9e
70 changed files with 249 additions and 249 deletions

View File

@@ -5,7 +5,7 @@
#include<hgl/type/Sets.h>
VK_NAMESPACE_BEGIN
class PhysicalDevice
class PhysicalRenderDevice
{
VkInstance instance=nullptr;
VkPhysicalDevice physical_device=nullptr;
@@ -18,8 +18,8 @@ class PhysicalDevice
public:
PhysicalDevice(VkInstance,VkPhysicalDevice);
~PhysicalDevice()=default;
PhysicalRenderDevice(VkInstance,VkPhysicalDevice);
~PhysicalRenderDevice()=default;
operator VkPhysicalDevice(){return physical_device;}
operator const VkPhysicalDevice()const{return physical_device;}
@@ -119,5 +119,5 @@ public:
min_width =properties.limits.lineWidthRange[0];
max_width =properties.limits.lineWidthRange[1];
}
};//class PhysicalDevice
};//class PhysicalRenderDevice
VK_NAMESPACE_END