Cleanup
This commit is contained in:
parent
a7e5c26011
commit
102c87e623
1 changed files with 2 additions and 10 deletions
|
@ -580,16 +580,8 @@ namespace Ryujinx.Graphics.Metal
|
|||
|
||||
for (int i = 0; i < bufferDescriptors.Length; i++)
|
||||
{
|
||||
if (usedIndexes.Contains(i))
|
||||
{
|
||||
var layout = vertexDescriptor.Layouts.Object((ulong)i);
|
||||
layout.Stride = (ulong)bufferDescriptors[i].Stride;
|
||||
}
|
||||
else
|
||||
{
|
||||
var layout = vertexDescriptor.Layouts.Object((ulong)i);
|
||||
layout.Stride = 0;
|
||||
}
|
||||
var layout = vertexDescriptor.Layouts.Object((ulong)i);
|
||||
layout.Stride = usedIndexes.Contains(i) ? (ulong)bufferDescriptors[i].Stride : 0;
|
||||
}
|
||||
|
||||
return vertexDescriptor;
|
||||
|
|
Loading…
Reference in a new issue