mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-15 05:27:42 -07:00
20 lines
401 B
C#
20 lines
401 B
C#
using Ryujinx.Graphics.GAL;
|
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
|
{
|
|
struct VertexBuffer
|
|
{
|
|
public BufferRange Range { get; }
|
|
|
|
public int Divisor { get; }
|
|
public int Stride { get; }
|
|
|
|
public VertexBuffer(BufferRange range, int divisor, int stride)
|
|
{
|
|
Range = range;
|
|
Divisor = divisor;
|
|
Stride = stride;
|
|
}
|
|
}
|
|
}
|