You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
212 B
12 lines
212 B
#version 330
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 tex_coord_int;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main(){
|
|
// fragColor = texture(tex, tex_coord_int);
|
|
fragColor = vec4(0.5) + 0.5*sin(0.1 * texture(tex, tex_coord_int));
|
|
}
|
|
|