mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 11:41:42 +00:00
18 lines
414 B
C#
18 lines
414 B
C#
|
namespace Ryujinx.Graphics.GAL.InputAssembler
|
||
|
{
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|