I used glfw+dx12 to set ImGuiConfigFlags_ViewportsEnable ,but it did not work. #8875
Closed
Heqile666
started this conversation in
New Users Build/Link/Run issues ONLY!
Replies: 1 comment
-
This is the wrong section to ask. Your post doesn't provide any useful information (e.g. what happens, does it crash, where does it crash etc.). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Here is my code.
{
// Setup Dear ImGui context
IMGUI_CHECKVERSION();
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO(); (void)io;
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
//io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
io.ConfigFlags |= ImGuiConfigFlags_DockingEnable; // Enable Docking
Beta Was this translation helpful? Give feedback.
All reactions