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

Backends: Vulkan: AddTexture alternative public API taking a descriptor pool #7249

Open
wants to merge 1 commit into
base: docking
Choose a base branch
from

Commits on Jan 22, 2024

  1. feat(Vulkan): AddTexture alternative public API

    This commit adds an optional VkDescriptorPool to the AddTexture calls.
    I've had many issues with my pool running out of descriptor sets, and
    calling VkResetDescriptorPool invalidates all of ImGui in a weird way,
    mapping my images (image descriptors) onto the fonts etc.
    
    This solution simply adds an optional descriptor pool which you can
    reset independently of ImGui in a way that's "better" (please discuss)
    for Vulkan applications where you typically already have that kind of
    management implemented.
    edvn0 committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    e5a1f98 View commit details
    Browse the repository at this point in the history