2021-06-28 22:36:50 +00:00
|
|
|
[[block]]
|
|
|
|
struct View {
|
|
|
|
view_proj: mat4x4<f32>;
|
|
|
|
world_position: vec3<f32>;
|
|
|
|
};
|
|
|
|
[[group(0), binding(0)]]
|
2021-10-08 19:55:24 +00:00
|
|
|
var<uniform> view: View;
|
2021-06-28 22:36:50 +00:00
|
|
|
|
|
|
|
struct VertexOutput {
|
|
|
|
[[location(0)]] uv: vec2<f32>;
|
|
|
|
[[builtin(position)]] position: vec4<f32>;
|
|
|
|
};
|
|
|
|
|
|
|
|
[[stage(vertex)]]
|
|
|
|
fn vertex(
|
|
|
|
[[location(0)]] vertex_position: vec3<f32>,
|
|
|
|
[[location(1)]] vertex_uv: vec2<f32>
|
|
|
|
) -> VertexOutput {
|
|
|
|
var out: VertexOutput;
|
|
|
|
out.uv = vertex_uv;
|
|
|
|
out.position = view.view_proj * vec4<f32>(vertex_position, 1.0);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[group(1), binding(0)]]
|
|
|
|
var sprite_texture: texture_2d<f32>;
|
|
|
|
[[group(1), binding(1)]]
|
|
|
|
var sprite_sampler: sampler;
|
|
|
|
|
|
|
|
[[stage(fragment)]]
|
|
|
|
fn fragment(in: VertexOutput) -> [[location(0)]] vec4<f32> {
|
|
|
|
return textureSample(sprite_texture, sprite_sampler, in.uv);
|
|
|
|
}
|