mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-05-01 00:34:20 +09: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;
|
|
}
|
|
} |