mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 20:40:46 -07:00
Some code cleanup
This commit is contained in:
17
Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
Normal file
17
Ryujinx.Graphics.GAL/VertexBufferDescriptor.cs
Normal file
@ -0,0 +1,17 @@
|
||||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public struct VertexBufferDescriptor
|
||||
{
|
||||
public BufferRange Buffer { get; }
|
||||
|
||||
public int Stride { get; }
|
||||
public int Divisor { get; }
|
||||
|
||||
public VertexBufferDescriptor(BufferRange buffer, int stride, int divisor)
|
||||
{
|
||||
Buffer = buffer;
|
||||
Stride = stride;
|
||||
Divisor = divisor;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user