Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Blend modes are implemented as part of the Processing API: http://processing.org/reference/blendMode_.html

Internally, this uses GL if the renderer is a GL renderer (glBlendFunc(GL_SRC_ALPHA, GL_ONE)), otherwise it uses the same math GL uses:

private static int blend_add_pin(int a, int b) {
    int f = (b & ALPHA_MASK) >>> 24;

    return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 |
        low(((a & RED_MASK) + ((b & RED_MASK) >> 8) * f), RED_MASK) & RED_MASK |
        low(((a & GREEN_MASK) + ((b & GREEN_MASK) >> 8) * f), GREEN_MASK) & GREEN_MASK |
        low((a & BLUE_MASK) + (((b & BLUE_MASK) * f) >> 8), BLUE_MASK));
}

(from PImage.java)

As to "if there is a better way", the nice thing about using GL is that it happens on the GPU rather than the CPU. So, doing the math yourself as demonstrated above will be slower than letting the GL blend mode supported by your graphics card do its magic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.