aboutsummaryrefslogtreecommitdiff
path: root/ctru-sys/src/gpu/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ctru-sys/src/gpu/mod.rs')
-rw-r--r--ctru-sys/src/gpu/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/ctru-sys/src/gpu/mod.rs b/ctru-sys/src/gpu/mod.rs
new file mode 100644
index 0000000..8d71046
--- /dev/null
+++ b/ctru-sys/src/gpu/mod.rs
@@ -0,0 +1,11 @@
+pub mod gpu;
+pub mod gx;
+pub mod registers;
+pub mod shader_program;
+pub mod shbin;
+
+use self::gpu::*;
+use self::gx::*;
+use self::registers::*;
+use self::shader_program::*;
+use self::shbin::*;