veldrid icon indicating copy to clipboard operation
veldrid copied to clipboard

A low-level, portable graphics library for .NET.

Results 154 veldrid issues
Sort by recently updated
recently updated
newest added

The CreateVulkanGraphicsDevice helper was passing a hardcoded false and ignoring the SwapchainSrgbFormat setting from the options argument.

When a ResourceLayout array was bound to a Pipeline and, by accident, one of its members remained `null`, the CommandList would throw a `NullReferenceException` that described very little of the...

OpenGL works fine (excluding the horrendous performance) but when switched to Metal backend, the window is black and occasionally white if you angle the camera to certain positions.

When running on macOS (2021 M1 Pro) an exception error is raised, with the details: "Unable to find entry point named "objc_msgSend_stret" in shared library '/usr/lib/libobjc.A.dylib" Tested it on my...

On windows, i try to do async texture loading(well, async as possible). i create staging texture first: ```cs var td = TextureDescription.Texture2D(width, heigth, 1, 1, PixelFormat.R8_G8_B8_A8_UNorm, TextureUsage.Staging); ``` then i...

As documented [here](https://learn.microsoft.com/en-us/windows/win32/direct3ddxgi/dxgi-flip-model), [here](https://www.youtube.com/watch?v=E3wTajGZOsA) and [here](https://github.com/MicrosoftDocs/win32/blob/docs/desktop-src/direct3ddxgi/for-best-performance--use-dxgi-flip-model.md), the flip model has performance advantages compared to the blt model.

Greetings! After a bit of testing of my project on Windows 10, I've noticed that I get increased frame latency while running in windowed mode on D3D11. I've measured it...

I don't see this crash with a debug build (net 7.0), but release builds reliably crash with the following. I'm only seeing this with veldrid-based applications, and only with release...

``ImGuiRenderer`` calls ``ImGui.NewFrame`` in the constructor, which locks the font atlas and makes it impossible to load and use a custom font. ImGui has a debug assertion that's meant to...

I'm trying to use Veldrid with ImGUI and NPlug to make a UI for a VST plugin. Veldrid works fine when I build the [ImGui.NET](https://github.com/ImGuiNET/ImGui.NET) sample projects, but when I...