Interactive Mandelbrot viewer with Qt and OpenGL.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
597 B

#version 330 core
out vec4 pixColor;
uniform int iterationCount;
in vec2 complexPos;
vec3 getColor(in float value){
vec3 red = vec3(0.5, 0, 0);
vec3 blue = vec3(0, 0, 0.5);
return value * red + (1 - value) * blue;
}
vec2 square(in vec2 c){
return vec2(c.x * c.x - c.y * c.y, 2 * c.x * c.y);
}
void main(){
vec2 z = vec2(0, 0);
float stepsNeeded = 0;
while (stepsNeeded < iterationCount && length(z) < 2){
z = square(z) + complexPos;
++stepsNeeded;
}
float value = stepsNeeded / iterationCount;
pixColor = vec4(getColor(value), 1);
}