This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
api8/shaders/zoom_in.fs

19 lines
378 B
Forth
Raw Normal View History

2023-05-19 11:44:09 +02:00
#version 330
2023-05-19 13:01:20 +02:00
uniform sampler2D tex0;
uniform sampler2D tex1;
uniform float zoom;
2023-05-19 12:09:54 +02:00
in vec2 vsoTexCoord;
out vec4 fragColor;
2023-05-19 13:01:20 +02:00
void main() {
vec2 center = vec2(0.5);
vec2 zoomedTexCoord = mix(center, vsoTexCoord, zoom);
vec4 color1 = texture(tex0, vsoTexCoord);
vec4 color2 = texture(tex1, zoomedTexCoord);
fragColor = mix(color1, color2, smoothstep(0., 1., zoom));
2023-05-19 11:44:09 +02:00
}