1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 21:30:06 -06:00
ryujinx/Ryujinx/Gpu/NsGpuTexture.cs
2018-02-04 20:08:20 -03:00

10 lines
143 B
C#

namespace Ryujinx.Gpu
{
struct NsGpuTexture
{
public int Width;
public int Height;
public byte[] Data;
}
}