bevy_render 0.3.0

Provides rendering functionality for Bevy Engine
Documentation
1
2
3
4
5
6
7
use crate::shader::ShaderLayout;

impl ShaderLayout {
    pub fn from_spirv(_spirv_data: &[u32], _bevy_conventions: bool) -> ShaderLayout {
        panic!("reflecting shader layout from spirv data is not available");
    }
}