2023-03-16 21:47:36 +00:00
|
|
|
// Vertex shader
|
|
|
|
|
2023-04-19 04:53:06 +00:00
|
|
|
struct VertexInput {
|
|
|
|
@location(0) position: vec3<f32>,
|
|
|
|
@location(1) color: vec3<f32>,
|
|
|
|
};
|
|
|
|
|
2023-03-16 21:47:36 +00:00
|
|
|
struct VertexOutput {
|
|
|
|
@builtin(position) clip_position: vec4<f32>,
|
2023-04-19 04:53:06 +00:00
|
|
|
@location(0) color: vec3<f32>,
|
2023-03-16 21:47:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
@vertex
|
|
|
|
fn vs_main(
|
2023-04-19 04:53:06 +00:00
|
|
|
model: VertexInput,
|
2023-03-16 21:47:36 +00:00
|
|
|
) -> VertexOutput {
|
|
|
|
var out: VertexOutput;
|
2023-04-19 04:53:06 +00:00
|
|
|
out.color = model.color;
|
|
|
|
out.clip_position = vec4<f32>(model.position, 1.0);
|
2023-03-16 21:47:36 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fragment shader
|
|
|
|
|
|
|
|
@fragment
|
|
|
|
fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> {
|
2023-04-19 04:53:06 +00:00
|
|
|
return vec4<f32>(in.color, 1.0);
|
|
|
|
}
|