blob: 70413551e549bf95d2d9b3db46323b700bf8051f [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);
}