We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I read the imgui_demo.cpp from https://pthom.github.io/imgui_manual_online/manual/imgui_manual.html to find the usage of dockspace
ImGui::DockSpaceOverViewport(ImGui::GetMainViewport());
but in LibCImGui, it is like this
function igDockSpaceOverViewport(viewport, flags, window_class) ccall((:igDockSpaceOverViewport, libcimgui), ImGuiID, (Ptr{ImGuiViewport}, ImGuiDockNodeFlags, Ptr{ImGuiWindowClass}), viewport, flags, window_class) end
How can I get a ImGuiWindowClass object?
The text was updated successfully, but these errors were encountered:
Closing this because as of #141 DockSpaceOverViewport() is automatically wrapped with the correct default arguments:
DockSpaceOverViewport()
CImGui.jl/src/wrapper.jl
Lines 2811 to 2816 in 206783e
Sorry, something went wrong.
No branches or pull requests
I read the imgui_demo.cpp from https://pthom.github.io/imgui_manual_online/manual/imgui_manual.html to find the usage of dockspace
but in LibCImGui, it is like this
How can I get a ImGuiWindowClass object?
The text was updated successfully, but these errors were encountered: