mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 02:58:37 +00:00
10 lines
193 B
C#
10 lines
193 B
C#
|
namespace Ryujinx.Graphics.Gpu.Memory
|
||
|
{
|
||
|
struct VertexBuffer
|
||
|
{
|
||
|
public ulong Address;
|
||
|
public ulong Size;
|
||
|
public int Stride;
|
||
|
public int Divisor;
|
||
|
}
|
||
|
}
|