aboutsummaryrefslogtreecommitdiff
path: root/shaders/glsl100/fisheye.fs
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/glsl100/fisheye.fs')
-rw-r--r--shaders/glsl100/fisheye.fs5
1 files changed, 4 insertions, 1 deletions
diff --git a/shaders/glsl100/fisheye.fs b/shaders/glsl100/fisheye.fs
index e7a4485c..9dba297b 100644
--- a/shaders/glsl100/fisheye.fs
+++ b/shaders/glsl100/fisheye.fs
@@ -2,12 +2,15 @@
precision mediump float;
+// Input vertex attributes (from vertex shader)
varying vec2 fragTexCoord;
+varying vec4 fragColor;
+// Input uniform values
uniform sampler2D texture0;
uniform vec4 fragTintColor;
-// NOTE: Add here your custom variables
+// NOTE: Add here your custom variables
const float PI = 3.1415926535;