Ryujinx/src/Ryujinx.Graphics.Gpu/Memory/IndexBuffer.cs
2023-04-27 23:51:14 +02:00

15 lines
No EOL
269 B
C#

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