mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
11 lines
176 B
C#
11 lines
176 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Metal
|
|
{
|
|
public struct BufferInfo
|
|
{
|
|
public IntPtr Handle;
|
|
public int Offset;
|
|
public int Index;
|
|
}
|
|
}
|