Bug297 Editing
I spent a few hours trying to figrue out why my clients don't display as intended. I just realized that Color values go from 0..1, not from 0..255 as I wrongly assumed. The server should warn me about such illegal values and not just give non-sensical output. E.g. an exception IllegalValue or similar. oxygene said there's "whiter than white", so maybe start spitting >2.0 back.
if you start with HDR, there is no real upper bound, so ">2.0" won't work either (except if you don't scale linear, somehow) possible solutions I see: - 255 is still white in HDR (just a lot of it), so there shouldn't be a difference with this particular value - some preset colors - more obvious documentation - accept integers (0..255), print a warning/bail out, translate to float (0..1)