1 2 3 4 5 6 7 8 9 10 11
use crate::gpu::blend_mode::BlendModeRegistration; pub fn register() -> BlendModeRegistration { BlendModeRegistration { type_id: "normal", display_name: "Normal", category: "Normal", gpu_value: 0, wgsl_math: "Cs = fg.rgb;", } }