mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-10 01:28:41 -06:00
oops
This commit is contained in:
parent
f04542ac02
commit
674ec97a6e
|
@ -28,7 +28,7 @@ fn vs_main(
|
|||
out.normal = in.normal;
|
||||
out.tex_index = in.tex_index;
|
||||
out.clip_position = camera.view_proj * vec4<f32>(in.position, 1.0);
|
||||
out
|
||||
return out;
|
||||
}
|
||||
|
||||
@group(0) @binding(0)
|
||||
|
@ -41,7 +41,7 @@ var s_diffuse: sampler;
|
|||
fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> {
|
||||
let color: vec4 = textureSample(t_diffuse, s_diffuse, in.uv, in.tex_index);
|
||||
if (color.a == 0.) {
|
||||
discard
|
||||
discard;
|
||||
}
|
||||
color
|
||||
return color;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue