mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-25 22:25:07 +00:00
7 lines
192 B
GLSL
Executable File
7 lines
192 B
GLSL
Executable File
#include "mx_aastep.glsl"
|
|
|
|
void mx_splitlr_vector4(vec4 valuel, vec4 valuer, float center, vec2 texcoord, out vec4 result)
|
|
{
|
|
result = mix(valuel, valuer, mx_aastep(center, texcoord.x));
|
|
}
|