comment sd_list_by_set_type array and GetDescriptorList function at MaterialDescriptorSets

This commit is contained in:
2023-03-19 20:18:56 +08:00
parent c4a4ec5ebc
commit 09277924f1
4 changed files with 62 additions and 13 deletions

View File

@@ -42,9 +42,9 @@ public:
bool hasFragment()const{return hasShader(VK_SHADER_STAGE_FRAGMENT_BIT);}
// bool hasCompute ()const{return hasShader(VK_SHADER_STAGE_COMPUTE_BIT);}
ShaderCreateInfoVertex * GetVS(){return vert;}
ShaderCreateInfoGeometry * GetGS(){return geom;}
ShaderCreateInfoFragment * GetFS(){return frag;}
const ShaderCreateInfoVertex * GetVS()const{return vert;}
const ShaderCreateInfoGeometry * GetGS()const{return geom;}
const ShaderCreateInfoFragment * GetFS()const{return frag;}
public: