mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-03 18:42:25 -07:00
Cleanup + Format
This commit is contained in:
committed by
Isaac Marovitz
parent
b064d76a4f
commit
362746887e
@@ -281,8 +281,8 @@ namespace Ryujinx.Graphics.Metal
|
||||
var computeCommandEncoder = GetOrCreateComputeEncoder();
|
||||
|
||||
computeCommandEncoder.DispatchThreadgroups(
|
||||
new MTLSize{width = (ulong)groupsX, height = (ulong)groupsY, depth = (ulong)groupsZ},
|
||||
new MTLSize{width = (ulong)groupSizeX, height = (ulong)groupSizeY, depth = (ulong)groupSizeZ});
|
||||
new MTLSize { width = (ulong)groupsX, height = (ulong)groupsY, depth = (ulong)groupsZ },
|
||||
new MTLSize { width = (ulong)groupSizeX, height = (ulong)groupSizeY, depth = (ulong)groupSizeZ });
|
||||
}
|
||||
|
||||
public void Draw(int vertexCount, int instanceCount, int firstVertex, int firstInstance)
|
||||
|
Reference in New Issue
Block a user