mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
22 lines
627 B
GLSL
22 lines
627 B
GLSL
/* Fragment shader dealing with transitions */
|
|
|
|
uniform sampler2D currentScene;
|
|
uniform sampler2D frozenScene;
|
|
uniform sampler2D transMap;
|
|
/* Normalized */
|
|
uniform float prog;
|
|
/* Vague [0, 512] normalized */
|
|
uniform float vague;
|
|
|
|
varying vec2 v_texCoord;
|
|
|
|
void main(){
|
|
float transV = 1.0 - (1.0 - texture2D(transMap, v_texCoord).r) * (1.0 - vague);
|
|
float cTransV = clamp(transV, prog, prog+vague);
|
|
lowp float alpha = (cTransV - prog) / vague;
|
|
|
|
vec4 newFrag = texture2D(currentScene, v_texCoord);
|
|
vec4 oldFrag = texture2D(frozenScene, v_texCoord);
|
|
|
|
gl_FragColor = mix(newFrag, oldFrag, alpha);
|
|
}
|