mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
This commit is contained in:
parent
3115ae0815
commit
0514332474
3 changed files with 3 additions and 3 deletions
|
|
@ -43,7 +43,7 @@ struct ImGui_ImplDX12_InitInfo
|
|||
D3D12_GPU_DESCRIPTOR_HANDLE LegacySingleSrvGpuDescriptor;
|
||||
#endif
|
||||
|
||||
ImGui_ImplDX12_InitInfo() { memset(this, 0, sizeof(*this)); }
|
||||
ImGui_ImplDX12_InitInfo() { memset((void*)this, 0, sizeof(*this)); }
|
||||
};
|
||||
|
||||
// Follow "Getting Started" link and check examples/ folder to learn about using backends!
|
||||
|
|
|
|||
|
|
@ -225,7 +225,7 @@ struct ImGui_ImplVulkan_Texture
|
|||
VkImageView ImageView;
|
||||
VkDescriptorSet DescriptorSet;
|
||||
|
||||
ImGui_ImplVulkan_Texture() { memset(this, 0, sizeof(*this)); }
|
||||
ImGui_ImplVulkan_Texture() { memset((void*)this, 0, sizeof(*this)); }
|
||||
};
|
||||
|
||||
// Vulkan data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue