1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-10 22:16:46 +00:00
Ryujinx/Ryujinx/Gpu/NsGpuTexture.cs

10 lines
143 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
namespace Ryujinx.Gpu
{
struct NsGpuTexture
{
public int Width;
public int Height;
public byte[] Data;
}
}