mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:48:42 +00: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;
|
|
}
|
|
}
|
|
}
|