Skip to content
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

Perform a soft shutdown of resources like Vulkan Memory Allocator #11

Closed
IAmNotHanni opened this issue Feb 20, 2020 · 0 comments
Closed
Assignees
Labels
cat:enhancement enhancement/requested feature/update of existing features cat:refactor refactor/clean up/simplifications/etc. diff:beginner beginner skils required prio:high This has high priority.

Comments

@IAmNotHanni
Copy link
Member

When shutting down Vulkan resources, Vulkan Memory Allocator does the following:

if(g_hCommandPool != VK_NULL_HANDLE)
{
    vkDestroyCommandPool(g_hDevice, g_hCommandPool, g_Allocs);
    g_hCommandPool = VK_NULL_HANDLE;
}

Do the same in vulkan-renderer.

@IAmNotHanni IAmNotHanni added diff:beginner beginner skils required cat:enhancement enhancement/requested feature/update of existing features prio:high This has high priority. cat:refactor refactor/clean up/simplifications/etc. dependency: VMA labels Feb 20, 2020
@IAmNotHanni IAmNotHanni self-assigned this Feb 20, 2020
@IAmNotHanni IAmNotHanni added this to Done in Vulkan-Renderer Apr 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cat:enhancement enhancement/requested feature/update of existing features cat:refactor refactor/clean up/simplifications/etc. diff:beginner beginner skils required prio:high This has high priority.
Projects
Development

No branches or pull requests

1 participant