aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Gpu/NsGpuTexture.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/Gpu/NsGpuTexture.cs')
-rw-r--r--Ryujinx/Gpu/NsGpuTexture.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx/Gpu/NsGpuTexture.cs b/Ryujinx/Gpu/NsGpuTexture.cs
new file mode 100644
index 00000000..26500c04
--- /dev/null
+++ b/Ryujinx/Gpu/NsGpuTexture.cs
@@ -0,0 +1,10 @@
+namespace Ryujinx.Gpu
+{
+ struct NsGpuTexture
+ {
+ public int Width;
+ public int Height;
+
+ public byte[] Data;
+ }
+} \ No newline at end of file