aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickshapes/shaders/lineargradient.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickshapes/shaders/lineargradient.frag')
-rw-r--r--src/quickshapes/shaders/lineargradient.frag9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/quickshapes/shaders/lineargradient.frag b/src/quickshapes/shaders/lineargradient.frag
deleted file mode 100644
index 7f4a739109..0000000000
--- a/src/quickshapes/shaders/lineargradient.frag
+++ /dev/null
@@ -1,9 +0,0 @@
-uniform sampler2D gradTabTexture;
-uniform highp float opacity;
-
-varying highp float gradTabIndex;
-
-void main()
-{
- gl_FragColor = texture2D(gradTabTexture, vec2(gradTabIndex, 0.5)) * opacity;
-}