mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-24 15:50:25 +01:00
Null the released resources
This commit is contained in:
parent
43e6c46c8d
commit
44250caf50
@ -798,31 +798,45 @@ void ImGui_ImplGlfwVulkan_InvalidateDeviceObjects()
|
|||||||
ImGui_ImplGlfwVulkan_InvalidateFontUploadObjects();
|
ImGui_ImplGlfwVulkan_InvalidateFontUploadObjects();
|
||||||
for (int i=0; i<IMGUI_VK_QUEUED_FRAMES; i++)
|
for (int i=0; i<IMGUI_VK_QUEUED_FRAMES; i++)
|
||||||
{
|
{
|
||||||
if (g_VertexBuffer[i])
|
if (g_VertexBuffer[i]) {
|
||||||
vkDestroyBuffer(g_Device, g_VertexBuffer[i], g_Allocator);
|
vkDestroyBuffer(g_Device, g_VertexBuffer[i], g_Allocator);
|
||||||
if (g_VertexBufferMemory[i])
|
g_VertexBuffer[i] = VK_NULL_HANDLE;
|
||||||
|
}
|
||||||
|
if (g_VertexBufferMemory[i]) {
|
||||||
vkFreeMemory(g_Device, g_VertexBufferMemory[i], g_Allocator);
|
vkFreeMemory(g_Device, g_VertexBufferMemory[i], g_Allocator);
|
||||||
if (g_IndexBuffer[i])
|
g_VertexBufferMemory[i] = VK_NULL_HANDLE;
|
||||||
|
}
|
||||||
|
if (g_IndexBuffer[i]) {
|
||||||
vkDestroyBuffer(g_Device, g_IndexBuffer[i], g_Allocator);
|
vkDestroyBuffer(g_Device, g_IndexBuffer[i], g_Allocator);
|
||||||
if (g_IndexBufferMemory[i])
|
g_IndexBuffer[i] = VK_NULL_HANDLE;
|
||||||
|
}
|
||||||
|
if (g_IndexBufferMemory[i]) {
|
||||||
vkFreeMemory(g_Device, g_IndexBufferMemory[i], g_Allocator);
|
vkFreeMemory(g_Device, g_IndexBufferMemory[i], g_Allocator);
|
||||||
|
g_IndexBufferMemory[i] = VK_NULL_HANDLE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_FontView)
|
if (g_FontView)
|
||||||
vkDestroyImageView(g_Device, g_FontView, g_Allocator);
|
vkDestroyImageView(g_Device, g_FontView, g_Allocator);
|
||||||
|
g_FontView = VK_NULL_HANDLE;
|
||||||
if (g_FontImage)
|
if (g_FontImage)
|
||||||
vkDestroyImage(g_Device, g_FontImage, g_Allocator);
|
vkDestroyImage(g_Device, g_FontImage, g_Allocator);
|
||||||
|
g_FontImage = VK_NULL_HANDLE;
|
||||||
if (g_FontMemory)
|
if (g_FontMemory)
|
||||||
vkFreeMemory(g_Device, g_FontMemory, g_Allocator);
|
vkFreeMemory(g_Device, g_FontMemory, g_Allocator);
|
||||||
|
g_FontMemory = VK_NULL_HANDLE;
|
||||||
if (g_FontSampler)
|
if (g_FontSampler)
|
||||||
vkDestroySampler(g_Device, g_FontSampler, g_Allocator);
|
vkDestroySampler(g_Device, g_FontSampler, g_Allocator);
|
||||||
|
g_FontSampler = VK_NULL_HANDLE;
|
||||||
if (g_DescriptorSetLayout)
|
if (g_DescriptorSetLayout)
|
||||||
vkDestroyDescriptorSetLayout(g_Device, g_DescriptorSetLayout, g_Allocator);
|
vkDestroyDescriptorSetLayout(g_Device, g_DescriptorSetLayout, g_Allocator);
|
||||||
|
g_DescriptorSetLayout = VK_NULL_HANDLE;
|
||||||
if (g_PipelineLayout)
|
if (g_PipelineLayout)
|
||||||
vkDestroyPipelineLayout(g_Device, g_PipelineLayout, g_Allocator);
|
vkDestroyPipelineLayout(g_Device, g_PipelineLayout, g_Allocator);
|
||||||
|
g_PipelineLayout = VK_NULL_HANDLE;
|
||||||
if (g_Pipeline)
|
if (g_Pipeline)
|
||||||
vkDestroyPipeline(g_Device, g_Pipeline, g_Allocator);
|
vkDestroyPipeline(g_Device, g_Pipeline, g_Allocator);
|
||||||
|
g_Pipeline = VK_NULL_HANDLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ImGui_ImplGlfwVulkan_Init(GLFWwindow* window, bool install_callbacks, ImGui_ImplGlfwVulkan_Init_Data *init_data)
|
bool ImGui_ImplGlfwVulkan_Init(GLFWwindow* window, bool install_callbacks, ImGui_ImplGlfwVulkan_Init_Data *init_data)
|
||||||
|
Loading…
Reference in New Issue
Block a user