#![ doc( html_root_url = "https://docs.rs/mingl/latest/mingl/" ) ]
#![ cfg_attr( doc, doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "readme.md" ) ) ) ]
#![ cfg_attr( not( doc ), doc = "Set of tools and helpers for working with WebGL and WebGPU" ) ]
#![allow(clippy::implicit_return)]
#![allow(clippy::missing_inline_in_public_items)]
#![allow(clippy::exhaustive_structs)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::match_same_arms)]
#![allow(clippy::wildcard_imports)]
#![allow(clippy::cast_possible_truncation)]
#![allow(clippy::cast_possible_wrap)]
#![allow(clippy::missing_panics_doc)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::min_ident_chars)]
#![allow(clippy::uninlined_format_args)]
#![allow(clippy::identity_op)]
#![allow(clippy::doc_markdown)]
#![allow(clippy::field_reassign_with_default)]
#![allow(clippy::std_instead_of_core)]
#![allow(clippy::redundant_field_names)]
#![allow(clippy::trivially_copy_pass_by_ref)]
#![allow(clippy::non_ascii_literal)]
#![allow(clippy::unnecessary_semicolon)]
#![allow(clippy::inconsistent_struct_constructor)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::needless_borrow)]
#![allow(clippy::return_self_not_must_use)]
#![allow(clippy::explicit_iter_loop)]
#![allow(clippy::std_instead_of_alloc)]
#![allow(clippy::new_without_default)]
#![allow(clippy::needless_return)]
#![allow(clippy::used_underscore_binding)]
#![allow(clippy::cast_sign_loss)]
#![allow(clippy::cast_lossless)]
#![allow(clippy::exhaustive_enums)]
#![allow(clippy::elidable_lifetime_names)]
#![allow(clippy::too_many_lines)]
#![allow(clippy::redundant_closure_for_method_calls)]
#![allow(clippy::cast_precision_loss)]
#![allow(clippy::redundant_closure)]
#[ cfg( feature = "enabled" ) ]
mod private {}
#[ cfg( feature = "enabled" ) ]
::mod_interface::mod_interface!
{
own use ::mod_interface::mod_interface;
layer derive;
layer error;
layer buffer;
layer data_type;
layer mem;
#[ cfg( all( feature = "math", feature = "camera_orbit_controls" ) ) ]
layer camera_orbit_controls;
#[ cfg( all( feature = "math", feature = "diagnostics" ) ) ]
layer diagnostics;
#[ cfg( feature = "math" ) ]
layer model;
#[ cfg( feature = "math" ) ]
layer math;
#[ cfg( feature = "math" ) ]
layer geometry;
#[ cfg( feature = "web" ) ]
layer web;
}