fabyr

Results 3 comments of fabyr

Can confirm this is still happening. OpenGL 3.3.0 (NVIDIA 580.65.06) .net8/.net6 Silk.NET 2.22.0 SkiaSharp 3.119.0 SkiaSharp.NativeAssets.Linux ships with libglfw.so.3 and libSkiaSharp.so.119.0.0 gdb gives me the same stack trace with segfault...

If I log what procedures are passed to the GRGlGetProcedureAddressDelegate, ```cs window.Initialize(); GRGlInterface.Create(name => { bool ok = window.GLContext!.TryGetProcAddress(name, out nint addr); Console.WriteLine($"name: {name} - ok: {ok} - addr: 0x{addr:x8}");...

I am following the very small example in [Lab/ExperimentsSilkBackedSkiaRendering](https://github.com/dotnet/Silk.NET/blob/0dc3175e7b3c037c645022030150af022f8be8d9/src/Lab/Experiments/SilkBackedSkiaRendering/Program.cs) It had been mentioned that code inside `Lab` is no longer maintained, but I have found a very similar usage in...