-
-
Notifications
You must be signed in to change notification settings - Fork 448
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Summary
Can't create window with OpenGL on Raspberry PI 5.
Steps to reproduce
- Platform: Desktop - Raspberry PI 5
- Framework Version: .NET 9
- API: OpenGL
- API Version: OpenGL version string: 3.1 Mesa 24.2.8-1~bpo12+rpt4
Simple code from tutorial:
using Silk.NET.Maths;
using Silk.NET.Windowing;
var windowOptions = WindowOptions.Default with
{
Size = new Vector2D<int>(800, 600),
Title = "some title"
};
IWindow window = Window.Create(windowOptions);
window.Run();
Console.ReadKey();But once window.Run() gets executed, application immediately closes with Segmentation Fault.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Status
Todo