1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Based on the `gl_generator` crate, by Brendan Zabarauskas and the gl-rs
// developers (2015). Used under Apache-2.0 license. All new content is also
// available under the Apache-2.0 license.

//! This is a fork of [gl_generator](https://docs.rs/gl_generator).
//!
//! Currently experimental.

#[cfg(feature = "unstable_generator_utils")]
pub mod generators;
#[cfg(not(feature = "unstable_generator_utils"))]
mod generators;

mod registry;

pub use generators::{
  debug_struct_gen::DebugStructGenerator, global_gen::GlobalGenerator,
  static_gen::StaticGenerator, static_struct_gen::StaticStructGenerator,
  struct_gen::StructGenerator, Generator,
};

pub use registry::*;