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.
|
#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;
|
|
}
|
|
} |