renamed to DescriptorSetType instead of DescriptorSetsType

This commit is contained in:
2023-02-22 21:53:51 +08:00
parent b35ef27610
commit af4b9cd6d4
33 changed files with 90 additions and 90 deletions

View File

@@ -70,7 +70,7 @@ class DeviceRenderPassManage;
class Fence;
class Semaphore;
enum class DescriptorSetsType
enum class DescriptorSetType
{
//设计使其对应shader中的set
@@ -90,7 +90,7 @@ constexpr char *DescriptSetsTypeName[]=
"Global","PerFrame","PerMaterial","PerObject","Instance","Skeleton"
};
inline const char *GetDescriptorSetsTypeName(const enum class DescriptorSetsType &type)
inline const char *GetDescriptorSetTypeName(const enum class DescriptorSetType &type)
{
RANGE_CHECK_RETURN_NULLPTR(type);