From a4781c9b58c979abf83985a527bbb5f81f5c9727 Mon Sep 17 00:00:00 2001 From: Susko3 Date: Thu, 28 Aug 2025 14:07:13 +0200 Subject: [PATCH] Fix bindings not compiling --- SDL3-CS/SDL3/SDL_gpu.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/SDL3-CS/SDL3/SDL_gpu.cs b/SDL3-CS/SDL3/SDL_gpu.cs index 7a7f689..4abdac3 100644 --- a/SDL3-CS/SDL3/SDL_gpu.cs +++ b/SDL3-CS/SDL3/SDL_gpu.cs @@ -50,11 +50,4 @@ namespace SDL SDL_GPU_COLORCOMPONENT_B = (byte)SDL3.SDL_GPU_COLORCOMPONENT_B, SDL_GPU_COLORCOMPONENT_A = (byte)SDL3.SDL_GPU_COLORCOMPONENT_A, } - -#pragma warning disable CS0618 // Type or member is obsolete - public partial struct SDL_GPURenderStateDesc : SDL3.ISDLInterface -#pragma warning restore CS0618 // Type or member is obsolete - { - uint SDL3.ISDLInterface.version { set => version = value; } - } }