aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/shapes/shaders/lineargradient_core.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/shapes/shaders/lineargradient_core.frag')
-rw-r--r--src/imports/shapes/shaders/lineargradient_core.frag12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/imports/shapes/shaders/lineargradient_core.frag b/src/imports/shapes/shaders/lineargradient_core.frag
new file mode 100644
index 0000000000..5908acfa67
--- /dev/null
+++ b/src/imports/shapes/shaders/lineargradient_core.frag
@@ -0,0 +1,12 @@
+#version 150 core
+
+uniform sampler2D gradTabTexture;
+uniform float opacity;
+
+in float gradTabIndex;
+out vec4 fragColor;
+
+void main()
+{
+ fragColor = texture(gradTabTexture, vec2(gradTabIndex, 0.5)) * opacity;
+}