fixing descriptor pools issue, adding unit tests shortcut to makefile

This commit is contained in:
2025-10-22 12:09:28 +02:00
parent 93014c1668
commit 72d8ddae64
3 changed files with 12 additions and 9 deletions

View File

@@ -50,7 +50,7 @@ namespace mlx
~DescriptorPoolManager() = default;
private:
std::vector<DescriptorPool> m_pools;
std::vector<std::unique_ptr<DescriptorPool>> m_pools;
};
class DescriptorSet : public std::enable_shared_from_this<DescriptorSet>