mirror of
				https://github.com/ocornut/imgui.git
				synced 2025-10-26 12:27:30 +00:00 
			
		
		
		
	IO: WantCaptureKeyboard is never set when ImGuiConfigFlags_NoKeyboard is enabled. (#4921)
+ Retroactively add missing changelog item in 1.90 + Backends: Vulkan: use GetTexID() for consistency.
This commit is contained in:
		| @@ -589,11 +589,11 @@ void ImGui_ImplVulkan_RenderDrawData(ImDrawData* draw_data, VkCommandBuffer comm | ||||
|                 vkCmdSetScissor(command_buffer, 0, 1, &scissor); | ||||
|  | ||||
|                 // Bind DescriptorSet with font or user texture | ||||
|                 VkDescriptorSet desc_set[1] = { (VkDescriptorSet)pcmd->TextureId }; | ||||
|                 VkDescriptorSet desc_set[1] = { (VkDescriptorSet)pcmd->GetTexID() }; | ||||
|                 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); | ||||
|                     IM_ASSERT(pcmd->GetTexID() == (ImTextureID)bd->FontDescriptorSet); | ||||
|                     desc_set[0] = bd->FontDescriptorSet; | ||||
|                 } | ||||
|                 vkCmdBindDescriptorSets(command_buffer, VK_PIPELINE_BIND_POINT_GRAPHICS, bd->PipelineLayout, 0, 1, desc_set, 0, nullptr); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ocornut
					ocornut