Introduced base functionality with opmult

This commit is contained in:
Alejandro Saucedo 2020-08-22 07:11:26 +01:00
parent d59dc41ffc
commit eecadbe36b
2 changed files with 6 additions and 3 deletions

View file

@ -41,6 +41,7 @@ private:
bool mFreeDescriptorSetLayout = false;
std::shared_ptr<vk::DescriptorPool> mDescriptorPool;
bool mFreeDescriptorPool = false;
// TODO: Potentially change to vector pointer of objects depending on whether it will be expected to pass a pointer (or reference) to the constructor
std::vector<std::shared_ptr<vk::DescriptorSet>> mDescriptorSets;
bool mFreeDescriptorSet = false;
std::shared_ptr<vk::ShaderModule> mShaderModule;