13 lines
No EOL
269 B
C#
13 lines
No EOL
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;
|
|
}
|
|
} |