8000 vkDestroyDescriptorPool added to Descriptor pool and sets by Onyrew · Pull Request #273 · Overv/VulkanTutorial · GitHub
[go: up one dir, main page]

Skip to content

vkDestroyDescriptorPool added to Descriptor pool and sets #273

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 1, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
dots
  • Loading branch information
Onyrew authored Feb 28, 2022
commit 87d4dc082843d1259f44a04cd1285dff82975818
2 changes: 2 additions & 0 deletions en/05_Uniform_buffers/01_Descriptor_pool_and_sets.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,11 @@ buffer descriptor.

```c++
void cleanup() {
...
vkDestroyDescriptorPool(device, descriptorPool, nullptr);

vkDestroyDescriptorSetLayout(device, descriptorSetLayout, nullptr);
...
}
```

Expand Down
0