change SetTextureDataYUV

pull/8/head
cosmonaut 2023-06-01 16:20:43 -07:00
parent ebf511133a
commit 9edb2d1c97
1 changed files with 7 additions and 2 deletions

View File

@ -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)]