mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
11 lines
135 B
GLSL
11 lines
135 B
GLSL
in vec2 f_coord;
|
|
|
|
#texture (tex1, 0, sRGB_A)
|
|
uniform sampler2D tex1;
|
|
|
|
void main()
|
|
{
|
|
if (texture(tex1, f_coord).a < 0.5f)
|
|
discard;
|
|
}
|