From c6fddad50aaf4a6d00ca8571fb8f94876d0fcbef Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 14 Jan 2021 01:26:25 -0800 Subject: [PATCH] missing QueueDestroyShaderModule --- RefreshCS.csproj | 1 - src/Refresh.cs | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RefreshCS.csproj b/RefreshCS.csproj index 40880be..c0c224e 100644 --- a/RefreshCS.csproj +++ b/RefreshCS.csproj @@ -3,7 +3,6 @@ netstandard2.0 RefreshCS - x64 true x64 diff --git a/src/Refresh.cs b/src/Refresh.cs index dcb745f..b748e4a 100644 --- a/src/Refresh.cs +++ b/src/Refresh.cs @@ -869,6 +869,12 @@ namespace RefreshCS IntPtr framebuffer ); + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void Refresh_QueueDestroyShaderModule( + IntPtr device, + IntPtr shaderModule + ); + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void Refresh_QueueDestroyRenderPass( IntPtr device,