1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Backends: DirectX12: remove unused members. (#8998)

Unused in docking branch. Leftover from a merge.
This commit is contained in:
Rémy Tassoux 2025-10-13 13:10:01 +02:00 committed by GitHub
parent 8de97d14d8
commit 8d9c903919
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,9 +112,6 @@ struct ImGui_ImplDX12_Data
ID3D12CommandAllocator* pTexCmdAllocator;
ID3D12GraphicsCommandList* pTexCmdList;
ImGui_ImplDX12_RenderBuffers* pFrameResources;
UINT frameIndex;
ImGui_ImplDX12_Data() { memset((void*)this, 0, sizeof(*this)); }
};