Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Balasescu authored and Dan Balasescu committed Mar 24, 2023
1 parent 9ebe474 commit 49241e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Veldrid/D3D11/D3D11Swapchain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public D3D11Swapchain(D3D11GraphicsDevice gd, ref SwapchainDescription descripti
OutputWindow = win32Source.Hwnd,
SampleDescription = new SampleDescription(1, 0),
SwapEffect = SwapEffect.FlipDiscard,
BufferUsage = Usage.RenderTargetOutput
BufferUsage = Usage.RenderTargetOutput,
Flags = _flags
};

Expand Down

0 comments on commit 49241e0

Please sign in to comment.