I have the problem that my fragment shader gets executed very differently on my intel graphics chip then on the nvidia chip. (Both drivers are up to date)
The problem seems to be the mod-call in the following code:
float opRep( vec3 p, vec3 c ){
// gl_FragColor = vec4(max(0.0, sign(p.x)), max(sign(p.y), 0.0), max(sign(p.z), 0.0), 1);
vec3 q = mod(p,c)-0.5*c;
gl_FragColor = vec4(max(0.0, sign(q.x)), max(sign(q.y), 0.0), max(sign(q.z), 0.0), 1);
return twistedColumn( q );
}
float distanceFromPoint(vec3 point) {
return opRep(point, vec3(90.5, 0, 98));
}
The gl_FragColor are my "debug" statements. The debug statements print the sign of the points because I think the mod function returns different signs on the diffrenet drivers.
If I uncomment the first debug output I get the same visual results. But after the mod, the visual result varies between the intel graphics driver and the nvidia version which is very confusing.
Can someone give me a hint why I get different results... ?