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