Revert "Viewports: Renamed UpdatePlatformWindows > PlatformWindowsUpdate, RenderPlatformWindowsDefault -> PlatformWindowsRender, DestroyPlatformWindows > PlatformWindowsDestroy (#1542)"

This reverts commit f2c7f3b200.
This commit is contained in:
ocornut
2020-03-06 17:53:09 +01:00
parent f2c7f3b200
commit fbaf65b8f6
24 changed files with 71 additions and 71 deletions

View File

@ -207,8 +207,8 @@ int main(int, char**)
{
SDL_Window* backup_current_window = SDL_GL_GetCurrentWindow();
SDL_GLContext backup_current_context = SDL_GL_GetCurrentContext();
ImGui::PlatformWindowsUpdate();
ImGui::PlatformWindowsRender();
ImGui::UpdatePlatformWindows();
ImGui::RenderPlatformWindowsDefault();
SDL_GL_MakeCurrent(backup_current_window, backup_current_context);
}