Files
Ryujinx-greemdev/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
2025-02-06 03:48:54 -06:00

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;
}
}