cyborg/src/pass/debug_shader.wgsl

41 lines
852 B
WebGPU Shading Language
Raw Normal View History

2022-04-23 03:42:33 +00:00
struct CameraUniform {
2022-09-17 15:34:52 +00:00
eye: vec4<f32>,
vp: mat4x4<f32>,
2022-04-23 03:42:33 +00:00
};
struct VertexInput {
2022-09-17 15:34:52 +00:00
@location(0) position: vec3<f32>,
@location(1) color: vec3<f32>
};
struct VertexOutput {
2022-09-17 15:34:52 +00:00
@builtin(position) clip_position: vec4<f32>,
@location(0) position: vec3<f32>,
@location(1) color: vec3<f32>
};
2022-09-17 15:34:52 +00:00
@group(0) @binding(0)
2022-04-23 03:42:33 +00:00
var<uniform> camera: CameraUniform;
2022-09-17 15:34:52 +00:00
@vertex
fn vs_main(
2022-09-17 15:34:52 +00:00
@builtin(instance_index) mesh_idx: u32,
@builtin(vertex_index) vertex_idx: u32,
vertex: VertexInput,
) -> VertexOutput {
2022-04-23 03:42:33 +00:00
let world_pos = vertex.position;
var out: VertexOutput;
2022-04-23 03:42:33 +00:00
out.clip_position = camera.vp * vec4<f32>(world_pos, 1.0);
out.position = world_pos;
out.color = vertex.color;
return out;
}
2022-09-17 15:34:52 +00:00
@fragment
fn fs_main(
frag: VertexOutput,
2022-09-17 15:34:52 +00:00
) -> @location(0) vec4<f32> {
return vec4<f32>(frag.color, 1.0);
}