mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-06 14:05:08 +00:00
Examples: DirectX11: fixed ImGui_ImplDX11_NewFrame() from recreating device objects if render isn't called (g_pVB not set)
This commit is contained in:
parent
85725ff9c6
commit
6277ffe00f
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ void ImGui_ImplDX11_Shutdown()
|
|||
|
||||
void ImGui_ImplDX11_NewFrame()
|
||||
{
|
||||
if (!g_pVB)
|
||||
if (!g_pFontSampler)
|
||||
ImGui_ImplDX11_CreateDeviceObjects();
|
||||
|
||||
ImGuiIO& io = ImGui::GetIO();
|
||||
|
|
Loading…
Add table
Reference in a new issue