Merge pull request #378 from Gargaj/patch-1

Examples: DirectX9: NULL out font texture on Invalidate so NewFrame() can be called directly without ImGui_ImplDX9_CreateDeviceObjects()
This commit is contained in:
omar 2015-10-18 18:11:54 +01:00
commit 42529f1270

View File

@ -285,6 +285,7 @@ void ImGui_ImplDX9_InvalidateDeviceObjects()
tex->Release();
ImGui::GetIO().Fonts->TexID = 0;
}
g_FontTexture = NULL;
}
void ImGui_ImplDX9_NewFrame()