From ac63d6c9b2d773792f8c3e5dafe760dd8769a4bf Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 30 Jun 2022 13:25:30 -0700 Subject: [PATCH] 0.2.0 --- WellspringCS.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WellspringCS.cs b/WellspringCS.cs index e7e144c..0a990ca 100644 --- a/WellspringCS.cs +++ b/WellspringCS.cs @@ -36,7 +36,7 @@ namespace WellspringCS // Version public const uint WELLSPRING_MAJOR_VERSION = 0; - public const uint WELLSPRING_MINOR_VERSION = 1; + public const uint WELLSPRING_MINOR_VERSION = 2; public const uint WELLSPRING_PATCH_VERSION = 0; [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -163,6 +163,7 @@ namespace WellspringCS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void Wellspring_GetBufferData( IntPtr textBatch, + out uint vertexCount, out IntPtr vertexDataPointer, out uint vertexDataLengthInBytes, out IntPtr indexDataPointer,