I'd like to have this kind of effect with OpenGL: http://www.escapemotions.com/experiments/flame/#top
There is an additive blending which seem to add brightness values: addition of red color gives white color.
(255,0,0) + (200,0,0) -> (255,100,100)
I could implement this using GLSL (converting the two colors into HSV space, adding the values, and ceverting back), but I'm wondering if there is a better way.
The flame painter is made with Processing (which I don't know well since I use openframeworks), how the effect is computed in Processing ?