summaryrefslogtreecommitdiff
path: root/blending/shaders/grass.fs
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-01-19 17:33:44 +0500
committerpryazha <pryadeiniv@mail.ru>2025-01-19 17:33:44 +0500
commitbd49bd525f4c6c6c15c4142bf42d1dd38be6fc16 (patch)
tree9e69f473c34b53e9e57d8af1873c39698bf5c80e /blending/shaders/grass.fs
initial commit
Diffstat (limited to 'blending/shaders/grass.fs')
-rw-r--r--blending/shaders/grass.fs17
1 files changed, 17 insertions, 0 deletions
diff --git a/blending/shaders/grass.fs b/blending/shaders/grass.fs
new file mode 100644
index 0000000..cecb0ce
--- /dev/null
+++ b/blending/shaders/grass.fs
@@ -0,0 +1,17 @@
+#version 330 core
+
+out vec4 frag_color;
+
+in vec2 tex_coords;
+
+uniform sampler2D texture1;
+
+void
+main(void)
+{
+ vec4 tex_color = texture(texture1, tex_coords);
+ if (tex_color.a <= 0.2) {
+ discard;
+ }
+ frag_color = tex_color;
+}