mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 22:16:46 +00:00
10 lines
143 B
C#
10 lines
143 B
C#
|
namespace Ryujinx.Gpu
|
||
|
{
|
||
|
struct NsGpuTexture
|
||
|
{
|
||
|
public int Width;
|
||
|
public int Height;
|
||
|
|
||
|
public byte[] Data;
|
||
|
}
|
||
|
}
|