https://stackoverflow.com/questions/17949796/how-many-unique-values-are-there-between-0-and-1-of-a-standard-float
ppl here come up with this number:
1,065,353,215.
so ... even between 0.0f and 1.0f there is quite a number of ... numbers.
Still, out of range numbers useful in photo work like here
found via bugzilla bug filled for gimp:
"
Bug 737925 -
Some filters / operations provide float values superior to 1.0"
on CinGG plugins I found only exactly one instance of clamp line as Andrea suggested:
grep "CLAMP(output, 0, 1.0)" -r plugins plugins/histogram/histogram.C: CLAMP(output, 0, 1.0); plugins/histogram/histogram.C: CLAMP(output, 0, 1.0);
and nothing more.