mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-16 13:25:09 +00:00
Gource is cool
This commit is contained in:
9
gource/data/shaders/shadow.frag
Normal file
9
gource/data/shaders/shadow.frag
Normal file
@@ -0,0 +1,9 @@
|
||||
uniform sampler2D tex;
|
||||
uniform float shadow_strength;
|
||||
|
||||
void main(void)
|
||||
{
|
||||
vec4 colour = texture2D(tex,gl_TexCoord[0].st);
|
||||
|
||||
gl_FragColor = vec4(0.0, 0.0, 0.0, gl_Color.w * colour.w * shadow_strength);
|
||||
}
|
||||
Reference in New Issue
Block a user