devela/lang/glsl/
mod.rs

1// devela::lang::glsl
2//
3//! <a href="https://es.wikipedia.org/wiki/GLSL"><abbr title="OpenGL Shading Language">
4//! GLSL</abbr></a> interfacing.
5//!
6//! - <https://www.khronos.org/opengl/wiki/Data_Type_(GLSL)>
7//!
8//! Matrices are column-major order, and they implement a few methods for correctly indexing.
9//! ---
10// IMPROVE be able to continue in the same line:
11#![doc = crate::doc_!(modules: crate; lang: c, glsl, /* js, py, script, wasm*/ )]
12// IMPROVE: make variation to accept root modules:
13// #![doc = crate::doc_!(modules: root, /* js, py, script, wasm*/ )]
14// #![doc = crate::doc_!(modules: crate; all, code, data, num, /* js, py, script, wasm*/ )]
15//
16
17mod types;
18
19crate::items! { // structural access: _mods, _all
20    #[allow(unused)]
21    pub use _mods::*;
22
23    mod _mods { #![allow(unused)]
24        pub use super::types::*;
25        // WIPZONE
26        // pub use super::shaders::*;
27    }
28    pub(super) mod _all { #![allow(unused)]
29        #[doc(inline)]
30        pub use super::_mods::*;
31    }
32}
33// WIPZONE
34// mod shaders;