Merge branch 'mode-def' into color-space

This commit is contained in:
Valerie Wolfe 2024-05-17 21:22:04 -04:00
commit c779d2feee

View file

@ -3,8 +3,8 @@ vec2 caOffset = vec2(2 * pixelSize / viewWidth, 0);
vec3 aberrate() {
vec2 offset = caOffset * cos(texcoord * 3.14);
float red = texture2D(gcolor, texcoord - offset).r;
float blue = texture2D(gcolor, texcoord + offset).b;
float red = texture2D(gcolor, texcoord + offset).r;
float blue = texture2D(gcolor, texcoord - offset).b;
return vec3(red, 0, blue);
}