This repository was archived by the owner on Jan 17, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ public enum SDL_GPUBufferUsageFlags : uint
2828[ Flags ]
2929public enum SDL_GPUShaderFormat : uint
3030{
31+ Invalid = 0 ,
3132 Private = 1u << 0 ,
3233 Spirv = 1u << 1 ,
3334 Dxbc = 1u << 2 ,
Original file line number Diff line number Diff line change 11# Coplt.Sdl3
22
33[ ![ Nuget] ( https://img.shields.io/nuget/v/Coplt.Sdl3 )] ( https://www.nuget.org/packages/Coplt.Sdl3/ )
4+ [ ![ Generate Bindings] ( https://github.com/coplt/Coplt.Sdl3/actions/workflows/generate-bindings.yml/badge.svg )] ( https://github.com/coplt/Coplt.Sdl3/actions/workflows/generate-bindings.yml )
5+ [ ![ Build Native] ( https://github.com/coplt/Coplt.Sdl3/actions/workflows/build-native.yml/badge.svg )] ( https://github.com/coplt/Coplt.Sdl3/actions/workflows/build-native.yml )
46
57Unsafe C# bindings for SDL3
68
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ let flags_regex =
4040 )
4141
4242let val_regex =
43- Regex( " (?<val>0x[\d a-fA-F]+u)|SDL_UINT64_C\( (?<val>0x[\d a-fA-F]+)\) |\( (?<val>\d +u << \d +)\) " )
43+ Regex( " (?<val>0x[\d a-fA-F]+u)|SDL_UINT64_C\( (?<val>0x[\d a-fA-F]+)\) |\( (?<val>\d +u << \d +)\) |(?<val>0) " )
4444
4545for path in File.ReadLines( " ./HeadersToGen.txt" ) do
4646 let flags = Dictionary< string, List< string>>()
You can’t perform that action at this time.
0 commit comments