blob: 19b9e9985ad83211380e7d39b12e8349276ac9ca [file] [log] [blame]
struct Input {
@location(0)
color : vec4<f32>;
}
struct Output {
@location(0)
color : vec4<f32>;
}
@stage(fragment)
fn main(in : Input) -> Output {
return Output(in.color);
}