summaryrefslogtreecommitdiffstats
path: root/res/raw/spacecloud_fs.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'res/raw/spacecloud_fs.glsl')
-rw-r--r--res/raw/spacecloud_fs.glsl12
1 files changed, 12 insertions, 0 deletions
diff --git a/res/raw/spacecloud_fs.glsl b/res/raw/spacecloud_fs.glsl
new file mode 100644
index 0000000..75adcd2
--- /dev/null
+++ b/res/raw/spacecloud_fs.glsl
@@ -0,0 +1,12 @@
+varying vec4 varColor;
+
+void main() {
+ lowp vec4 texColor;
+ texColor = texture2D(UNI_Tex0, gl_PointCoord);
+
+ // texColor = texture2D(UNI_Tex1, gl_PointCoord);
+
+ gl_FragColor.rgb = texColor.rgb;
+ gl_FragColor.a = 0.1;
+ // gl_FragColor = varColor;
+} \ No newline at end of file