1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// Chroma Fragment Shader
// Modified from SkyblockAddons
// Credit: https://github.com/BiscuitDevelopment/SkyblockAddons/blob/main/src/main/resources/assets/skyblockaddons/shaders/program/chroma_screen_textured.fsh
#version 120
uniform float chromaSize;
uniform float timeOffset;
uniform float saturation;
uniform bool forwardDirection;
uniform sampler2D outTexture;
varying vec2 outTextureCoords;
varying vec4 outColor;
float rgb2b(vec3 rgb) {
return max(max(rgb.r, rgb.g), rgb.b);
}
vec3 hsb2rgb_smooth(vec3 c) {
vec3 rgb = clamp(abs(mod(c.x * 6.0 + vec3(0.0, 4.0, 2.0), 6.0) - 3.0) - 1.0, 0.0, 1.0);
rgb = rgb * rgb * (3.0 - 2.0 * rgb); // Cubic smoothing
return c.z * mix(vec3(1.0), rgb, c.y);
}
void main() {
vec4 originalColor = texture2D(outTexture, outTextureCoords) * outColor;
// Determine the direction chroma moves
float fragCoord;
if (forwardDirection) {
fragCoord = gl_FragCoord.x - gl_FragCoord.y;
} else {
fragCoord = gl_FragCoord.x + gl_FragCoord.y;
}
// The hue takes in account the position, chroma settings, and time
float hue = mod(((fragCoord) / chromaSize) - timeOffset, 1.0);
// Set the color to use the new hue & original saturation/value/alpha values
gl_FragColor = vec4(hsb2rgb_smooth(vec3(hue, saturation, rgb2b(originalColor.rgb))), originalColor.a);
}
|