2
0
Эх сурвалжийг харах

Examples: DirectX11: fixed ImGui_ImplDX11_NewFrame() from recreating device objects if render isn't called (g_pVB not set)

ocornut 9 жил өмнө
parent
commit
6277ffe00f

+ 1 - 1
examples/directx11_example/imgui_impl_dx11.cpp

@@ -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();