Remove isFixed param from AcquireCommandBuffer call

no-fixed-command-buffers
Caleb Cornett 2023-01-13 20:35:04 -05:00
parent 030745361b
commit ad5de7874c
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)