mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:18:35 +00:00
13 lines
269 B
C#
13 lines
269 B
C#
namespace Ryujinx.Graphics.Gpu.Memory
|
|
{
|
|
/// <summary>
|
|
/// GPU Vertex Buffer information.
|
|
/// </summary>
|
|
struct VertexBuffer
|
|
{
|
|
public ulong Address;
|
|
public ulong Size;
|
|
public int Stride;
|
|
public int Divisor;
|
|
}
|
|
} |