From 60a7523fac254d5e2d89185392e8c1afd8581aa9 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 7 Jun 2023 21:16:32 +0000 Subject: [PATCH] Refresh 1.14.0 (#8) Reviewed-on: https://gitea.moonside.games/MoonsideGames/RefreshCS/pulls/8 --- src/Refresh.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/Refresh.cs b/src/Refresh.cs index c123f90..832f584 100644 --- a/src/Refresh.cs +++ b/src/Refresh.cs @@ -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)]