diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 189da6f..aaa0a0e 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -386,16 +386,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType); - /// Set shader uniform value - /// value refers to a const void * - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValue(Shader shader, int uniformLoc, ref int value, ShaderUniformDataType uniformType); - - /// Set shader uniform value - /// value refers to a const void * - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValue(Shader shader, int uniformLoc, ref float value, ShaderUniformDataType uniformType); - /// Set shader uniform value vector /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]