diff options
| author | Fenrir <[email protected]> | 2016-04-30 18:29:50 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2016-04-30 18:29:50 -0700 |
| commit | 225334fcce6230a56cf4255779ee64f0f7997dfb (patch) | |
| tree | c68c5163ca17bacfe8dccf3b89705da42b37bdb5 /ctru-sys/src/gpu/mod.rs | |
| parent | Compatibility fixes for Rust nightly (1.10.0) (diff) | |
| download | archived-ctru-rs-225334fcce6230a56cf4255779ee64f0f7997dfb.tar.xz archived-ctru-rs-225334fcce6230a56cf4255779ee64f0f7997dfb.zip | |
Split raw bindings into a separate crate
Diffstat (limited to 'ctru-sys/src/gpu/mod.rs')
| -rw-r--r-- | ctru-sys/src/gpu/mod.rs | 11 |
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::*; |