From ad5de7874cd393c136d9428b1b44e7a7c7d555f2 Mon Sep 17 00:00:00 2001 From: Caleb Cornett Date: Fri, 13 Jan 2023 20:35:04 -0500 Subject: [PATCH] Remove isFixed param from AcquireCommandBuffer call --- src/Graphics/GraphicsDevice.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Graphics/GraphicsDevice.cs b/src/Graphics/GraphicsDevice.cs index 2e134dff..0508e7fe 100644 --- a/src/Graphics/GraphicsDevice.cs +++ b/src/Graphics/GraphicsDevice.cs @@ -102,7 +102,7 @@ namespace MoonWorks.Graphics public CommandBuffer AcquireCommandBuffer() { - return new CommandBuffer(this, Refresh.Refresh_AcquireCommandBuffer(Handle, 0)); + return new CommandBuffer(this, Refresh.Refresh_AcquireCommandBuffer(Handle)); } public unsafe void Submit(CommandBuffer commandBuffer)