From 9edb2d1c97f4a38dd3d6d87298d6c604defa4fc8 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 1 Jun 2023 16:20:43 -0700 Subject: [PATCH 1/2] change SetTextureDataYUV --- src/Refresh.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Refresh.cs b/src/Refresh.cs index c123f90..580e39b 100644 --- a/src/Refresh.cs +++ b/src/Refresh.cs @@ -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)] -- 2.25.1 From 6c5ef9d0a180ad5d77b0b617279834cc73d9f456 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 7 Jun 2023 14:15:51 -0700 Subject: [PATCH 2/2] 1.14.0 --- src/Refresh.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Refresh.cs b/src/Refresh.cs index 580e39b..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 = ( -- 2.25.1