Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: Alula <6276139+alula@users.noreply.github.com>
16 lines
313 B
C#
16 lines
313 B
C#
using Ryujinx.Graphics.GAL;
|
|
using Ryujinx.Memory.Range;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Memory
|
|
{
|
|
/// <summary>
|
|
/// GPU Index Buffer information.
|
|
/// </summary>
|
|
struct IndexBuffer
|
|
{
|
|
public BufferCache BufferCache;
|
|
public MultiRange Range;
|
|
public IndexType Type;
|
|
}
|
|
}
|