1
0
mirror of https://github.com/SFML/SFML.git synced 2025-03-05 11:28:04 +08:00

10 lines
251 B
GLSL
Raw Normal View History

uniform sampler2D texture;
uniform float pixel_threshold;
void main()
{
float factor = 1.0 / (pixel_threshold + 0.001);
vec2 pos = floor(gl_TexCoord[0].xy * factor + 0.5) / factor;
gl_FragColor = texture2D(texture, pos) * gl_Color;
}