| 134 | } |
| 135 | |
| 136 | PipelineLayout::~PipelineLayout() |
| 137 | { |
| 138 | // Destroy pipeline layout |
| 139 | if (handle != VK_NULL_HANDLE) |
| 140 | { |
| 141 | vkDestroyPipelineLayout(device.get_handle(), handle, nullptr); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | VkPipelineLayout PipelineLayout::get_handle() const |
| 146 | { |
nothing calls this directly
no test coverage detected