mirror of
https://github.com/Insality/druid
synced 2025-09-28 02:22:19 +02:00
Test shaders
This commit is contained in:
18
druid/materials/skew/gui_skew.fp
Normal file
18
druid/materials/skew/gui_skew.fp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user