Struct librashader_reflect::back::ShaderCompilerOutput
source · pub struct ShaderCompilerOutput<T, Context = ()> {
pub vertex: T,
pub fragment: T,
pub context: Context,
}Expand description
The output of the shader compiler.
Fields§
§vertex: TThe output for the vertex shader.
fragment: TThe output for the fragment shader.
context: ContextAdditional context provided by the shader compiler.