Remove isFixed param from AcquireCommandBuffer call (#41)

Co-authored-by: Caleb Cornett <caleb.cornett@outlook.com>
Reviewed-on: #41
Co-authored-by: TheSpydog <thespydog@noreply.example.org>
Co-committed-by: TheSpydog <thespydog@noreply.example.org>
pull/42/head
TheSpydog 2023-01-14 18:04:53 +00:00 committed by cosmonaut
parent 030745361b
commit b1d30a9e6c
1 changed files with 1 additions and 1 deletions

View File

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