#![allow(dead_code)]
use super::ShaderLinkage;
use std::sync::Arc;
#[cfg(not(target_arch = "wasm32"))]
pub const ENTRY_POINT: &str = "tutorial::tutorial_implicit_isosceles_vertex";
#[cfg(target_arch = "wasm32")]
pub const ENTRY_POINT: &str = "tutorialtutorial_implicit_isosceles_vertex";
pub fn linkage(device: &wgpu::Device) -> ShaderLinkage {
ShaderLinkage {
module: Arc::new(device.create_shader_module(wgpu::include_spirv!(
"tutorial-tutorial_implicit_isosceles_vertex.spv"
))),
entry_point: ENTRY_POINT,
}
}