Test shaders

This commit is contained in:
Insality
2024-12-03 20:42:33 +02:00
parent 917a84fc94
commit 9a1cd795b8
11 changed files with 668 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#version 140
uniform sampler2D texture_sampler;
in vec2 var_texcoord0;
in vec4 var_color;
out vec4 color_out;
void main() {
lowp vec4 tex = texture(texture_sampler, var_texcoord0.xy);
if (tex.a < 0.5) {
discard;
}
// Final color of stencil texture
color_out = tex * var_color;
}