Refresh 1.14.0 (#8)

Reviewed-on: #8
main
cosmonaut 2023-06-07 21:16:32 +00:00
parent ebf511133a
commit 60a7523fac
1 changed files with 8 additions and 3 deletions

View File

@ -36,7 +36,7 @@ namespace RefreshCS
/* Version */
public const uint REFRESH_MAJOR_VERSION = 1;
public const uint REFRESH_MINOR_VERSION = 13;
public const uint REFRESH_MINOR_VERSION = 14;
public const uint REFRESH_PATCH_VERSION = 0;
public const uint REFRESH_COMPILED_VERSION = (
@ -717,8 +717,13 @@ namespace RefreshCS
uint yHeight,
uint uvWidth,
uint uvHeight,
IntPtr data,
uint dataLength
IntPtr yDataPtr,
IntPtr uDataPtr,
IntPtr vDataPtr,
uint yDataLength,
uint uvDataLength,
uint yStride,
uint uvStride
);
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]