librashader/librashader-reflect/src/lib.rs

57 lines
2.2 KiB
Rust
Raw Normal View History

2023-01-17 15:09:07 +11:00
//! Shader reflection and cross-compilation for librashader.
2023-01-20 10:59:39 +11:00
//!
//! ## Usage
//!
//! librashader-reflect requires the `type_alias_impl_trait` nightly feature. You should choose your
//! target shading language, and a compilation type.
//!
//! ```rust
//! #![feature(type_alias_impl_trait)]
//!
//! use std::error::Error;
//! use librashader_preprocess::ShaderSource;
//! use librashader_presets::ShaderPreset;
//! use librashader_reflect::back::{CompileReflectShader, FromCompilation};
//! use librashader_reflect::back::targets::SPIRV;
//! use librashader_reflect::front::{Glslang, ShaderInputCompiler, SpirvCompilation};
//! use librashader_reflect::reflect::cross::SpirvCross;
2023-01-20 10:59:39 +11:00
//! use librashader_reflect::reflect::presets::{CompilePresetTarget, ShaderPassArtifact};
//! use librashader_reflect::reflect::semantics::ShaderSemantics;
//! type Artifact = impl CompileReflectShader<SPIRV, SpirvCompilation, SpirvCross>;
2023-01-20 10:59:39 +11:00
//! type ShaderPassMeta = ShaderPassArtifact<Artifact>;
//!
//! // Compile single shader
//! pub fn compile_spirv(
//! source: &ShaderSource,
//! ) -> Result<Artifact, Box<dyn Error>>
//! {
//! let compilation = SpirvCompilation::try_from(&source);
//! let spirv = SPIRV::from_compilation(compilation)?;
2023-01-20 10:59:39 +11:00
//! Ok(spirv)
//! }
//!
//! // Compile preset
//! pub fn compile_preset(preset: ShaderPreset) -> Result<(Vec<ShaderPassMeta>, ShaderSemantics), Box<dyn Error>>
//! {
//! let (passes, semantics) = SPIRV::compile_preset_passes::<SpirvCompilation, SpirvCross, Box<dyn Error>>(
2023-01-20 10:59:39 +11:00
//! preset.shaders, &preset.textures)?;
//! Ok((passes, semantics))
//! }
//! ```
//!
//! ## What's with all the traits?
2024-08-09 14:29:04 +10:00
//! librashader-reflect is designed to be compiler-agnostic. [naga](https://docs.rs/naga/latest/naga/index.html),
//! a pure-Rust shader compiler, as well as SPIRV-Cross via [SpirvCompilation](crate::front::SpirvCompilation)
//! is supported.
#![cfg_attr(not(feature="stable"), feature(impl_trait_in_assoc_type))]
#![allow(stable_features)]
#![cfg_attr(not(feature="stable"), feature(c_str_literals))]
2022-12-01 14:50:57 +11:00
/// Shader codegen backends.
pub mod back;
2022-12-01 14:50:57 +11:00
/// Error types.
2022-11-07 16:25:11 +11:00
pub mod error;
2022-12-01 14:50:57 +11:00
/// Shader frontend parsers.
2022-11-07 16:25:11 +11:00
pub mod front;
2022-12-01 14:50:57 +11:00
/// Shader reflection.
2022-11-07 16:25:11 +11:00
pub mod reflect;