2019-10-13 08:02:07 +02:00
|
|
|
using Ryujinx.Graphics.GAL;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Memory
|
|
|
|
{
|
2019-12-31 04:22:58 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU Index Buffer information.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct IndexBuffer
|
|
|
|
{
|
|
|
|
public ulong Address;
|
|
|
|
public ulong Size;
|
|
|
|
|
|
|
|
public IndexType Type;
|
|
|
|
}
|
|
|
|
}
|