From b1d30a9e6c171ab1988156de3561831a0dcf3909 Mon Sep 17 00:00:00 2001 From: TheSpydog Date: Sat, 14 Jan 2023 18:04:53 +0000 Subject: [PATCH] Remove isFixed param from AcquireCommandBuffer call (#41) Co-authored-by: Caleb Cornett Reviewed-on: https://gitea.moonside.games/MoonsideGames/MoonWorks/pulls/41 Co-authored-by: TheSpydog Co-committed-by: TheSpydog --- 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 2e134df..0508e7f 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)