You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be an issue with Silk.NET version 2.22 and 2.21 when trying to create GLWF window on macOS using Vulkan. For version 2.20 it works fine but for mentioned versions I'm getting error: "Silk.NET.Windowing.Glfw.dll: 'Attempted to initialize a Vulkan window using GLFW, which doesn't support Vulkan on this computer.'"
Steps to reproduce
Simple code:
publicvoidInitialize(){// Create a windowvaroptions=WindowOptions.DefaultVulkan;options.Size=newSilk.NET.Maths.Vector2D<int>(800,600);options.Title="Test Window";window=Window.Create(options);window.Initialize();// Error: Silk.NET.Windowing.Glfw.dll: 'Attempted to initialize a Vulkan window using GLFW, which doesn't support Vulkan on this computer.'window.Load+=OnLoad;window.Render+=OnRender;window.Closing+=OnClose;window.Run();}
The text was updated successfully, but these errors were encountered:
Summary
There seems to be an issue with Silk.NET version 2.22 and 2.21 when trying to create GLWF window on macOS using Vulkan. For version 2.20 it works fine but for mentioned versions I'm getting error: "Silk.NET.Windowing.Glfw.dll: 'Attempted to initialize a Vulkan window using GLFW, which doesn't support Vulkan on this computer.'"
Steps to reproduce
Simple code:
The text was updated successfully, but these errors were encountered: