mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-05-03 10:04:54 +00:00
7 lines
192 B
GLSL
Executable File
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));
|
|
}
|