blob: c72fa50e58c22a699cfeae87e895a04ba2f7230a (
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;
}
}
|