Files
2026-01-09 23:21:38 +00:00

7 lines
192 B
GLSL
Executable File

#include "mx_aastep.glsl"
void mx_splittb_vector2(vec2 valuet, vec2 valueb, float center, vec2 texcoord, out vec2 result)
{
result = mix(valuet, valueb, mx_aastep(center, texcoord.y));
}