mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-26 14:44:58 +00:00
7 lines
193 B
GLSL
Executable File
7 lines
193 B
GLSL
Executable File
#include "mx_aastep.glsl"
|
|
|
|
void mx_splittb_float(float valuet, float valueb, float center, vec2 texcoord, out float result)
|
|
{
|
|
result = mix(valuet, valueb, mx_aastep(center, texcoord.y));
|
|
}
|