You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
160 B
11 lines
160 B
1 year ago
|
#version 430
|
||
|
layout (binding=0) uniform sampler2D samp;
|
||
|
out vec4 color;
|
||
|
in vec2 uv;
|
||
|
void main(void)
|
||
|
{
|
||
|
color=texture(samp,uv);
|
||
|
if(color.a<0.1){
|
||
|
discard;
|
||
|
}
|
||
|
}
|