renamed to MaterialDescriptorManager from MaterialDescriptorSets

This commit is contained in:
2023-03-20 13:55:47 +08:00
parent 81e2aac321
commit 85530e6d57
12 changed files with 32 additions and 32 deletions

View File

@@ -19,7 +19,7 @@ struct MaterialData
ShaderModuleMap *shader_maps;
MaterialDescriptorSets *mds;
MaterialDescriptorManager *mds;
ShaderStageCreateInfoList shader_stage_list;
@@ -59,7 +59,7 @@ public:
const ShaderStageCreateInfoList & GetStageList ()const{return data->shader_stage_list;}
const MaterialDescriptorSets * GetDescriptorSets ()const{return data->mds;}
const MaterialDescriptorManager * GetDescriptorSets ()const{return data->mds;}
const VkPipelineLayout GetPipelineLayout ()const;
const PipelineLayoutData * GetPipelineLayoutData ()const{return data->pipeline_layout_data;}