mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
a991fe8e4d
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1550 4e206d99-4929-0410-ac5d-dfc041789085
11 lines
231 B
Plaintext
11 lines
231 B
Plaintext
uniform sampler2D texture;
|
|
uniform vec2 mouse;
|
|
|
|
void main()
|
|
{
|
|
float factor = 5 + 100 * length(mouse);
|
|
vec2 pos = floor(gl_TexCoord[0].xy * factor + 0.5) / factor;
|
|
|
|
gl_FragColor = texture2D(texture, pos) * gl_Color;
|
|
}
|