Renamed / moved / updated the SFML.Net examples (still in progress... having troubles with SVN)

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1560 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-09-01 21:17:24 +00:00
parent 002902319c
commit 2d83514452
28 changed files with 103 additions and 121 deletions

View file

@ -0,0 +1,10 @@
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;
}