2019-12-29 12:41:50 -05:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
2019-10-13 02:02:07 -04:00
|
|
|
{
|
|
|
|
public struct VertexAttribDescriptor
|
|
|
|
{
|
2020-01-05 20:04:37 -05:00
|
|
|
public int BufferIndex { get; }
|
|
|
|
public int Offset { get; }
|
2019-10-13 02:02:07 -04:00
|
|
|
|
|
|
|
public Format Format { get; }
|
|
|
|
|
|
|
|
public VertexAttribDescriptor(int bufferIndex, int offset, Format format)
|
|
|
|
{
|
|
|
|
BufferIndex = bufferIndex;
|
|
|
|
Offset = offset;
|
|
|
|
Format = format;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|