Remove isFixed param from AcquireCommandBuffer call #41

Merged
cosmonaut merged 1 commits from TheSpydog/MoonWorks:no-fixed-command-buffers into main 2023-01-14 18:04:54 +00:00
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)