You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to run the Imgui in my vulkan engine its giving me this validation error:
validation layer: Validation Error: [ VUID-vkCmdBindDescriptorSets-pDescriptorSets-06563 ] Object 0: handle = 0x2299b662f70, type = VK_OBJECT_TYPE_COMMAND_BUFFER; | MessageID = 0x747d089 | vkCmdBindDescriptorSets(): pDescriptorSets[0] (VkDescriptorSet 0x0[]) that does not exist, and the layout was not created VK_PIPELINE_LAYOUT_CREATE_INDEPENDENT_SETS_BIT_EXT. The Vulkan spec states: If graphicsPipelineLibrary is not enabled, each element of pDescriptorSets must be a valid VkDescriptorSet (https://vulkan.lunarg.com/doc/view/1.3.280.0/windows/1.3-extensions/vkspec.html#VUID-vkCmdBindDescriptorSets-pDescriptorSets-06563)
-However, this drawcall is being called from the renderdrawdata, which is using a descriptor set created in the back end. I was looking if I missing something in my initialization of Imgui but I don't find anything that is related to that descriptor set.
-This is the line int the renderdrawdata that is causing the validation error:
` VkDescriptorSet desc_set[1] = { (VkDescriptorSet)pcmd->TextureId };
if (sizeof(ImTextureID) < sizeof(ImU64))
{
// We don't support texture switches if ImTextureID hasn't been redefined to be 64-bit. Do a flaky check that other textures haven't been used.
IM_ASSERT(pcmd->TextureId == (ImTextureID)bd->FontDescriptorSet);
desc_set[0] = bd->FontDescriptorSet;
}
vkCmdBindDescriptorSets(command_buffer, VK_PIPELINE_BIND_POINT_GRAPHICS, bd->PipelineLayout, 0, 1, desc_set, 0, nullptr);
Version/Branch of Dear ImGui:
Version 1.90.3, Branch: docking
Back-ends:
imgui_impl_Vulkan.cpp + imgui_impl_glfwcpp
Compiler, OS:
Windows 11, Visual Studio
Full config/build information:
No response
Details:
When I try to run the Imgui in my vulkan engine its giving me this validation error:
validation layer: Validation Error: [ VUID-vkCmdBindDescriptorSets-pDescriptorSets-06563 ] Object 0: handle = 0x2299b662f70, type = VK_OBJECT_TYPE_COMMAND_BUFFER; | MessageID = 0x747d089 | vkCmdBindDescriptorSets(): pDescriptorSets[0] (VkDescriptorSet 0x0[]) that does not exist, and the layout was not created VK_PIPELINE_LAYOUT_CREATE_INDEPENDENT_SETS_BIT_EXT. The Vulkan spec states: If graphicsPipelineLibrary is not enabled, each element of pDescriptorSets must be a valid VkDescriptorSet (https://vulkan.lunarg.com/doc/view/1.3.280.0/windows/1.3-extensions/vkspec.html#VUID-vkCmdBindDescriptorSets-pDescriptorSets-06563)
-However, this drawcall is being called from the renderdrawdata,
which
is using a descriptor set created in the back end. I was looking if I missing something in my initialization of Imgui but I don't find anything that is related to that descriptor set.-This is the line int the renderdrawdata that is causing the validation error:
` VkDescriptorSet desc_set[1] = { (VkDescriptorSet)pcmd->TextureId };
if (sizeof(ImTextureID) < sizeof(ImU64))
{
// We don't support texture switches if ImTextureID hasn't been redefined to be 64-bit. Do a flaky check that other textures haven't been used.
IM_ASSERT(pcmd->TextureId == (ImTextureID)bd->FontDescriptorSet);
desc_set[0] = bd->FontDescriptorSet;
}
vkCmdBindDescriptorSets(command_buffer, VK_PIPELINE_BIND_POINT_GRAPHICS, bd->PipelineLayout, 0, 1, desc_set, 0, nullptr);
`
` void VulkanApp::SetUpImgui()
{
-This is my render loop
` void VulkanApp::Run()
{
while (!initWindow.ShouldClose())
{
glfwPollEvents();
int currentTime = glfwGetTime();
Screenshots/Video:
This is what it looks like (no fonts basically):

Minimal, Complete and Verifiable Example code:
No response
The text was updated successfully, but these errors were encountered: