1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-15 20:30:04 -06:00
ryujinx/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs
2020-01-09 02:13:00 +01:00

18 lines
419 B
C#

namespace Ryujinx.Graphics.GAL
{
public struct VertexAttribDescriptor
{
public int BufferIndex { get; }
public int Offset { get; }
public Format Format { get; }
public VertexAttribDescriptor(int bufferIndex, int offset, Format format)
{
BufferIndex = bufferIndex;
Offset = offset;
Format = format;
}
}
}