Created
May 12, 2013 22:09
-
-
Save anonymous/5565094 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform float time; | |
uniform vec2 mouse; | |
uniform vec2 resolution; | |
void main( void ) { | |
vec2 position = ( gl_FragCoord.xy / resolution.xy ) + mouse / 4.0; | |
float color = 0.0; | |
color += cos( position.x * cos( time / 150.0 ) * 200.0 ) + cos( position.y * cos( time / 15.0 ) * 10.0 ); | |
color += sin( position.y * sin( time / 10.0 ) * 40.0 ) + cos( position.x * sin( time / 25.0 ) * 40.0 ); | |
color += sin( position.x * sin( time / 5.0 ) * 10.0 ) + sin( position.y * sin( time / 35.0 ) * 80.0 ); | |
color *= sin( time / 10.0 ) * 0.5; | |
gl_FragColor = vec4( vec3( color, color * 0.5, sin( color + time / 3.0 ) * 0.75 ), 1.0 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment