Examples: DirectX9 example cleanup to match DirectX11 structure.

This commit is contained in:
ocornut
2015-03-09 14:55:46 +00:00
parent 66a5837ba8
commit f9c833b4a5
4 changed files with 55 additions and 57 deletions

View File

@ -180,7 +180,7 @@ LRESULT ImGui_ImplDX11_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM
return 0;
}
static void ImGui_ImplDX11_InitFontsTexture()
static void ImGui_ImplDX11_CreateFontsTexture()
{
ImGuiIO& io = ImGui::GetIO();
@ -359,7 +359,7 @@ bool ImGui_ImplDX11_CreateDeviceObjects()
return false;
}
ImGui_ImplDX11_InitFontsTexture();
ImGui_ImplDX11_CreateFontsTexture();
return true;
}