Open moe93 opened 1 month ago
What happens if you pin GLFW_jll
to 3.3
?
Pining GLFW v3.3.0
doesn't resolve the issue.
I seem to have figured out the issue though; the OpenGL version. Changing it in the renderer to opengl_version=v"3.0"
fixes the problem, did not realize the default was set to v"3.2"
in the renderer.
I double checked with my C++ imgui code and I do use 3.0
there as well. However, if I specify version 3.2
in the C++ imgui program, everything runs fine with no issues. I am not so sure why that is an issue when it comes to the Julia one.
Pining
GLFW v3.3.0
doesn't resolve the issue.
I meant GLFW_jll
though :) GLFW.jl's version numbering doesn't match the version of the GLFW library that's used. I'm wondering about this because GLFW 3.4 was quite a large release.
I seem to have figured out the issue though; the OpenGL version. Changing it in the renderer to
opengl_version=v"3.0"
fixes the problem, did not realize the default was set tov"3.2"
in the renderer.I double checked with my C++ imgui code and I do use
3.0
there as well. However, if I specify version3.2
in the C++ imgui program, everything runs fine with no issues. I am not so sure why that is an issue when it comes to the Julia one.
Oh interesting, I would've thought an OpenGL version problem would manifest sooner :thinking: I believe there are some differences between the renderloop we implement and the official example with GLFW/OpenGL3 but I never looked into the differences. Perhaps that's causing it.
Hello,
I am trying to get started with CImGui.jl and seem to have trouble getting anything to work properly. I am running on a Windows 10 machine, with Julia 1.10.5.
I started a project and have the following installed
I initially attempted to run the demo and examples and had trouble running either. So I decided to attempt something simpler and easier to trace. I copied the example 'Your First Gui \o/' and tried to run it. For the sake of completeness, here is the code used.
The window opens up just fine, but about 10 seconds later, it crashes on its own giving the following error message
Any ideas?