blob: 7765e8994366171432a087c8404a37bd4f8277ff (
plain) (
tree)
|
|
using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.Gpu.Memory
{
/// <summary>
/// GPU Index Buffer information.
/// </summary>
struct IndexBuffer
{
public ulong Address;
public ulong Size;
public IndexType Type;
}
}
|