diff --git a/source/Sekai.Desktop/Windowing/Window.cs b/source/Sekai.Desktop/Windowing/Window.cs index b43a29d..838dee2 100644 --- a/source/Sekai.Desktop/Windowing/Window.cs +++ b/source/Sekai.Desktop/Windowing/Window.cs @@ -369,6 +369,8 @@ private Window(Glfw glfw, string className, bool owns) glfw.WindowHint(WindowHintInt.ContextVersionMajor, 3); glfw.WindowHint(WindowHintInt.ContextVersionMinor, 3); + glfw.WindowHint(WindowHintOpenGlProfile.OpenGlProfile, OpenGlProfile.Core); + glfw.WindowHint(WindowHintClientApi.ClientApi, ClientApi.OpenGL); glfw.WindowHint(WindowHintBool.Visible, false); glfw.WindowHintString((int)WindowHintString.X11ClassName, className); glfw.WindowHintString((int)WindowHintString.X11InstanceName, className);