Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. precision mediump float;
  2. uniform float time;
  3. uniform vec2 resolution;
  4.  
  5. void main(void){
  6. gl_FragColor = vec4(vec3( sin(time) ), 1.0);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement