mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 22:38:41 -06:00
forgor vec4 type
This commit is contained in:
parent
674ec97a6e
commit
8fd1930ce6
|
@ -39,7 +39,7 @@ var s_diffuse: sampler;
|
|||
|
||||
@fragment
|
||||
fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> {
|
||||
let color: vec4 = textureSample(t_diffuse, s_diffuse, in.uv, in.tex_index);
|
||||
let color: vec4<f32> = textureSample(t_diffuse, s_diffuse, in.uv, in.tex_index);
|
||||
if (color.a == 0.) {
|
||||
discard;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue