renamed value.

This commit is contained in:
2023-03-21 21:46:16 +08:00
parent 44620abc21
commit a7c761e1c5
7 changed files with 29 additions and 29 deletions

View File

@@ -11,7 +11,7 @@ MaterialData::~MaterialData()
delete mp_array[i];
delete shader_maps;
SAFE_CLEAR(mds);
SAFE_CLEAR(desc_manager);
delete vertex_input;
}
@@ -29,7 +29,7 @@ const VkPipelineLayout Material::GetPipelineLayout()const
const bool Material::hasSet(const DescriptorSetType &dst)const
{
return data->mds->hasSet(dst);
return data->desc_manager->hasSet(dst);
}
VIL *Material::CreateVIL(const VILConfig *format_map)