aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/particles/resources/ctfragment.shader
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/particles/resources/ctfragment.shader')
-rw-r--r--src/imports/particles/resources/ctfragment.shader11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/imports/particles/resources/ctfragment.shader b/src/imports/particles/resources/ctfragment.shader
new file mode 100644
index 0000000000..a17f5841ca
--- /dev/null
+++ b/src/imports/particles/resources/ctfragment.shader
@@ -0,0 +1,11 @@
+uniform sampler2D texture;
+uniform sampler2D colortable;
+uniform sampler2D opacitytable;
+
+varying highp vec2 fTex;
+varying lowp vec4 fColor;
+varying lowp float tt;
+
+void main() {
+ gl_FragColor = (texture2D(texture, fTex).w) * fColor * texture2D(colortable, vec2(tt, 0.5)) *( texture2D(opacitytable, vec2(tt, 0.5)).w);
+}