Initial release
This commit is contained in:
commit
d4d1215874
16967 changed files with 4075897 additions and 0 deletions
13
resources/shaders/140/background.fs
Normal file
13
resources/shaders/140/background.fs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#version 140
|
||||
|
||||
uniform vec4 top_color;
|
||||
uniform vec4 bottom_color;
|
||||
|
||||
in vec2 tex_coord;
|
||||
|
||||
out vec4 out_color;
|
||||
|
||||
void main()
|
||||
{
|
||||
out_color = mix(bottom_color, top_color, tex_coord.y);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue