10 lines
143 B
C#
10 lines
143 B
C#
|
namespace Ryujinx.Gpu
|
||
|
{
|
||
|
struct NsGpuTexture
|
||
|
{
|
||
|
public int Width;
|
||
|
public int Height;
|
||
|
|
||
|
public byte[] Data;
|
||
|
}
|
||
|
}
|