Skip to main content

draco_rs/
lib.rs

1mod attribute;
2mod bindgen;
3mod converter;
4pub mod decode;
5pub mod encode;
6pub mod pointcloud;
7mod utils;
8
9pub mod prelude {
10    pub mod ffi {
11        pub use crate::bindgen::prelude::ffi::*;
12        // pub use crate::bindgen::prelude::ffi::draco_extra;
13        // pub use crate::bindgen_extra::prelude::ffi::draco_extra;
14    }
15    // pub use crate::attribute::NonOwningPointAttribute;
16    pub use crate::converter::StatusOr;
17    pub use crate::decode::{Decoder, DecoderBuffer};
18    pub use crate::encode::{Encoder, EncoderBuffer};
19    pub use crate::utils::*;
20}