Internals: Add a way to request window to not process any interactions for specified number of frames.

This commit is contained in:
Rokas Kupstys
2021-02-25 14:04:07 +02:00
committed by ocornut
parent a1a39c632a
commit 0c5b0c8b97
3 changed files with 10 additions and 2 deletions

View File

@ -134,7 +134,7 @@ bool ImGui_ImplWin32_Init(void* hwnd)
break;
}
#endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
return true;
}
@ -148,7 +148,7 @@ void ImGui_ImplWin32_Shutdown()
g_XInputGetCapabilities = NULL;
g_XInputGetState = NULL;
#endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
g_hWnd = NULL;
g_Time = 0;
g_TicksPerSecond = 0;