blob: e2a9123476b01378c3b00fc88a4cf6a930e1c080 [file] [log] [blame]
enable chromium_internal_dual_source_blending;
struct FragOutput {
@location(0) @blend_src(0)
color : vec4<f32>,
@location(0) @blend_src(1)
blend : vec4<f32>,
}
@fragment
fn frag_main() -> FragOutput {
var output : FragOutput;
output.color = vec4<f32>(0.5, 0.5, 0.5, 1.0);
output.blend = vec4<f32>(0.5, 0.5, 0.5, 1.0);
return output;
}