forked from MoonsideGames/RefreshCS
1.15.0
parent
60a7523fac
commit
b5325e6d03
|
@ -36,7 +36,7 @@ namespace RefreshCS
|
||||||
/* Version */
|
/* Version */
|
||||||
|
|
||||||
public const uint REFRESH_MAJOR_VERSION = 1;
|
public const uint REFRESH_MAJOR_VERSION = 1;
|
||||||
public const uint REFRESH_MINOR_VERSION = 14;
|
public const uint REFRESH_MINOR_VERSION = 15;
|
||||||
public const uint REFRESH_PATCH_VERSION = 0;
|
public const uint REFRESH_PATCH_VERSION = 0;
|
||||||
|
|
||||||
public const uint REFRESH_COMPILED_VERSION = (
|
public const uint REFRESH_COMPILED_VERSION = (
|
||||||
|
@ -971,8 +971,13 @@ namespace RefreshCS
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void Refresh_Submit(
|
public static extern void Refresh_Submit(
|
||||||
IntPtr device,
|
IntPtr device,
|
||||||
uint commandBufferCount,
|
IntPtr commandBuffer
|
||||||
IntPtr pCommandBuffers
|
);
|
||||||
|
|
||||||
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
public static extern IntPtr Refresh_SubmitAndAcquireFence(
|
||||||
|
IntPtr device,
|
||||||
|
IntPtr commandBuffer
|
||||||
);
|
);
|
||||||
|
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
@ -980,6 +985,26 @@ namespace RefreshCS
|
||||||
IntPtr device
|
IntPtr device
|
||||||
);
|
);
|
||||||
|
|
||||||
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
public static extern void Refresh_WaitForFences(
|
||||||
|
IntPtr device,
|
||||||
|
byte waitAll,
|
||||||
|
uint fenceCount,
|
||||||
|
IntPtr pFences
|
||||||
|
);
|
||||||
|
|
||||||
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
public static extern int Refresh_QueryFence(
|
||||||
|
IntPtr device,
|
||||||
|
IntPtr fence
|
||||||
|
);
|
||||||
|
|
||||||
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
public static extern void Refresh_ReleaseFence(
|
||||||
|
IntPtr device,
|
||||||
|
IntPtr fence
|
||||||
|
);
|
||||||
|
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern IntPtr Refresh_Image_Load(
|
public static extern IntPtr Refresh_Image_Load(
|
||||||
IntPtr bufferPtr,
|
IntPtr bufferPtr,
|
||||||
|
|
Loading…
Reference in New Issue