From a92549a91395900f30fe9010dfe86e19fedd4e85 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Fri, 5 Feb 2021 19:50:30 -0800 Subject: [PATCH] API update --- src/Refresh.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Refresh.cs b/src/Refresh.cs index d35d2c2..c3f9a45 100644 --- a/src/Refresh.cs +++ b/src/Refresh.cs @@ -814,7 +814,7 @@ namespace RefreshCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint Refresh_PushVertexShaderUniforms( IntPtr device, - IntPtr commandBuffer, + IntPtr graphicsPipeline, IntPtr data, uint dataLengthInBytes ); @@ -822,7 +822,7 @@ namespace RefreshCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint Refresh_PushFragmentShaderUniforms( IntPtr device, - IntPtr commandBuffer, + IntPtr graphicsPipeline, IntPtr data, uint dataLengthInBytes ); @@ -830,7 +830,7 @@ namespace RefreshCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint Refresh_PushComputeShaderUniforms( IntPtr device, - IntPtr commandBuffer, + IntPtr computePipeline, IntPtr data, uint dataLengthInBytes );