Browse Source

main.frag -> gradient.frag

rexim 3 years ago
parent
commit
83c461fb3f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      shaders/gradient.frag

+ 1 - 2
shaders/main.frag → shaders/gradient.frag

@@ -1,10 +1,9 @@
+// Applies animated over time gradient to the user texture.
 #version 330
 
 precision mediump float;
 
-uniform vec2 resolution;
 uniform float time;
-uniform vec2 mouse;
 uniform sampler2D tex;
 
 in vec2 uv;