From 34bf0b69aedfdb50ce4d161173a955998746dad8 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 12 Jan 2022 12:57:00 -0800 Subject: [PATCH] uniforms ABI change --- src/Refresh.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Refresh.cs b/src/Refresh.cs index 46d380f..7d5793d 100644 --- a/src/Refresh.cs +++ b/src/Refresh.cs @@ -807,7 +807,7 @@ namespace RefreshCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint Refresh_PushVertexShaderUniforms( IntPtr device, - IntPtr graphicsPipeline, + IntPtr commandBuffer, IntPtr data, uint dataLengthInBytes ); @@ -815,7 +815,7 @@ namespace RefreshCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint Refresh_PushFragmentShaderUniforms( IntPtr device, - IntPtr graphicsPipeline, + IntPtr commandBuffer, IntPtr data, uint dataLengthInBytes ); @@ -823,7 +823,7 @@ namespace RefreshCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint Refresh_PushComputeShaderUniforms( IntPtr device, - IntPtr computePipeline, + IntPtr commandBuffer, IntPtr data, uint dataLengthInBytes );