API update

pull/1/head
cosmonaut 2021-02-05 19:50:30 -08:00
parent fcb16a6121
commit a92549a913
1 changed files with 3 additions and 3 deletions

View File

@ -814,7 +814,7 @@ namespace RefreshCS
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern uint Refresh_PushVertexShaderUniforms( public static extern uint Refresh_PushVertexShaderUniforms(
IntPtr device, IntPtr device,
IntPtr commandBuffer, IntPtr graphicsPipeline,
IntPtr data, IntPtr data,
uint dataLengthInBytes uint dataLengthInBytes
); );
@ -822,7 +822,7 @@ namespace RefreshCS
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern uint Refresh_PushFragmentShaderUniforms( public static extern uint Refresh_PushFragmentShaderUniforms(
IntPtr device, IntPtr device,
IntPtr commandBuffer, IntPtr graphicsPipeline,
IntPtr data, IntPtr data,
uint dataLengthInBytes uint dataLengthInBytes
); );
@ -830,7 +830,7 @@ namespace RefreshCS
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern uint Refresh_PushComputeShaderUniforms( public static extern uint Refresh_PushComputeShaderUniforms(
IntPtr device, IntPtr device,
IntPtr commandBuffer, IntPtr computePipeline,
IntPtr data, IntPtr data,
uint dataLengthInBytes uint dataLengthInBytes
); );