blob: 04114a955f2c2420e5fe1c2d287e0a3160a1aff2 (
plain) (
tree)
|
|
using Ryujinx.Graphics.GAL;
using Ryujinx.Memory.Range;
namespace Ryujinx.Graphics.Gpu.Memory
{
/// <summary>
/// GPU Index Buffer information.
/// </summary>
struct IndexBuffer
{
public MultiRange Range;
public IndexType Type;
}
}
|