From 381c412914619db10ad191b13f4f4d4aae8f1072 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Sun, 31 Jan 2021 19:39:01 -0800 Subject: [PATCH] rename ShaderParams to ShaderUniforms --- src/Refresh.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Refresh.cs b/src/Refresh.cs index 768247d..ca989d3 100644 --- a/src/Refresh.cs +++ b/src/Refresh.cs @@ -812,7 +812,7 @@ namespace RefreshCS ); [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint Refresh_PushVertexShaderParams( + public static extern uint Refresh_PushVertexShaderUniforms( IntPtr device, IntPtr commandBuffer, IntPtr data, @@ -820,7 +820,7 @@ namespace RefreshCS ); [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint Refresh_PushFragmentShaderParams( + public static extern uint Refresh_PushFragmentShaderUniforms( IntPtr device, IntPtr commandBuffer, IntPtr data,