veldrid
veldrid copied to clipboard
A low-level, portable graphics library for .NET.
Hi, I'm trying to setup Veldrid within an Android .NET 6.0 application. My MainActivity class looks as follow: ``` public class MainActivity : Activity { protected override void OnCreate(Bundle? savedInstanceState)...
```cs using System; using Veldrid; using System.Threading.Tasks; using Veldrid.Sdl2; using Veldrid.StartupUtilities; namespace OhBoi { class EntryPoint { static void Main(string[] args) { Console.WriteLine("Hello World!"); GraphicsDevice graphicsDevice = null; var window...
When I'm turning on docking support via ImGui.NET, the docking layout is not correctly preserved after I restarted my app. The problem is that the location, size, etc. of the...
Update to latest Vortice.Windows which fixes various marshal issues.
There has been an issue with OpenSAGE, https://github.com/OpenSAGE/OpenSAGE/issues/389. Where the screen is black. This seems to have been the cause that the OpenGL shader program was in an invalid state...
When trying to build a create a window in a .NET 6 on a Mac Pro M1 with OS Monterey (12.4) the following exception is thrown. ``` System.TypeInitializationException: The type...
Fixed a few instances of CA2014 ("Do not use stackalloc in loops"), and also added better exception messages after trying to use an invalid structured buffer name when compiling with...
Fixes #402. OpenGL works: But with Metal there is only pink screen:
Millennium Challenge. Maybe a simple answer is known, or maybe this topic will hang for decades until it is found. It is required to render a complex interface both on...
When trying to run my application on a computer with OpenGL version 3.1. I found that it always crashes when it tries to set the viewport. Looking through the source...