1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
mod bindgen { #![allow(clippy::all)] #![allow(unknown_lints)] #![allow(deref_nullptr)] #![allow(non_upper_case_globals)] #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(improper_ctypes)] #![allow(dead_code)] include!(concat!(env!("OUT_DIR"), "/bindings/bindings.rs")); } pub mod filament; pub mod backend; pub mod utils; pub mod math; pub mod filameshio; pub mod ibl; pub mod image; pub mod glftio; #[cfg(feature = "assimp")] pub mod assimp;