Files
JGL/assets/shader_programs/test_fragment.glsl
josh 73de143ec5
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Has been cancelled
Epic Color Transition Fragment Shader
2025-04-14 21:36:08 -04:00

23 lines
411 B
GLSL

#version 120
#ifdef GL_ES
precision mediump float;
#endif
uniform vec2 u_resolution;
uniform float u_time;
vec3 colorA = vec3(0.149,0.141,0.912);
vec3 colorB = vec3(1.000,0.833,0.224);
void main() {
vec3 color = vec3(0.0);
float pct = abs(sin(u_time));
// Mix uses pct (a value from 0-1) to
// mix the two colors
color = mix(colorA, colorB, pct);
gl_FragColor = vec4(color,1.0);
}