0
0
Fork 0
mirror of https://github.com/yquake2/yquake2remaster.git synced 2025-03-09 02:41:07 +00:00
yquake2remaster/stuff/shaders/point_particle.frag
2023-09-17 14:17:14 +03:00

14 lines
228 B
GLSL

#version 450
layout(location = 0) in vec4 color;
layout(location = 0) out vec4 fragmentColor;
void main()
{
vec2 cxy = 2.0 * gl_PointCoord - 1.0;
if(dot(cxy, cxy) > 1.0)
discard;
fragmentColor = color;
}