| 205 | } |
| 206 | |
| 207 | DescriptorSetLayout::~DescriptorSetLayout() |
| 208 | { |
| 209 | // Destroy descriptor set layout |
| 210 | if (handle != VK_NULL_HANDLE) |
| 211 | { |
| 212 | vkDestroyDescriptorSetLayout(device.get_handle(), handle, nullptr); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | VkDescriptorSetLayout DescriptorSetLayout::get_handle() const |
| 217 | { |
nothing calls this directly
no test coverage detected