Ryujinx/Ryujinx.Graphics.GAL/VertexAttribDescriptor.cs

5 lines
150 B
C#
Raw Normal View History

2019-12-29 17:41:50 +00:00
namespace Ryujinx.Graphics.GAL
2019-10-13 06:02:07 +00:00
{
public readonly record struct VertexAttribDescriptor(int BufferIndex, int Offset, bool IsZero, Format Format);
2019-10-13 06:02:07 +00:00
}