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

I have implemented masking in OpenGL according to the following concept:

  • The mask is composed of black and white colors.
  • A foreground texture should only be visible in the white parts of the mask.
  • A background texture should only be visible in the black parts of the mask.

I can make the white part or the black part work as supposed by using glBlendFunc(), but not the two at the same time, because the foreground layer not only blends onto the mask, but also onto the background layer.

Is there anyone who knows how to accomplish this in the best way? I have been searching the net and read something about fragment shaders. Is this the way to go?

share|improve this question
I know there's a way of doing this, I'm pretty sure it's a simple 'mask' function, but it's been ages since I last used OpenGL. Have you seen: nehe.gamedev.net/data/lessons/lesson.asp?lesson=20 – Christopher Pfohl Feb 23 '11 at 21:11
Thanks for the fast reply. Yes, my implementation is based on that tutorial and works for one mask with one texture, but when I use two textures for one mask as described above, the result is not what I expected: the foreground image colors also blend onto the background layer instead of the mask alone. Should I post a screenshot to illustrate my problem? – red Feb 23 '11 at 21:27
It's a very basic (simple) task for a fragment shader. Though, I can't point you to a proper Fixed-Function solution. – kvark Feb 23 '11 at 22:40

1 Answer

up vote 24 down vote accepted

This should work:

glEnable(GL_BLEND);
// Use a simple blendfunc for drawing the background
glBlendFunc(GL_ONE, GL_ZERO);
// Draw entire background without masking
drawQuad(backgroundTexture);
// Next, we want a blendfunc that doesn't change the color of any pixels,
// but rather replaces the framebuffer alpha values with values based
// on the whiteness of the mask. In other words, if a pixel is white in the mask,
// then the corresponding framebuffer pixel's alpha will be set to 1.
glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_SRC_COLOR, GL_ZERO);
// Now "draw" the mask (again, this doesn't produce a visible result, it just
// changes the alpha values in the framebuffer)
drawQuad(maskTexture);
// Finally, we want a blendfunc that makes the foreground visible only in
// areas with high alpha.
glBlendFunc(GL_DST_ALPHA, GL_ONE_MINUS_DST_ALPHA);
drawQuad(foregroundTexture);

This is fairly tricky, so tell me if anything is unclear.

Don't forget to request an alpha buffer when creating the GL context. Otherwise it's possible to get a context without an alpha buffer.

Edit: Here, I made an illustration. illustration

share|improve this answer
Thanks Stefan! I could not wish for a better answer! In my implementation I replaced glBlendFunc(GL_SRC_COLOR, GL_ZERO) with glBlendFuncSeparate and now it works. So my mistake was that the glBlendFunc immediately replaces colors. – red Feb 24 '11 at 9:24
Is there a way to do this without calling glBlendFuncSeparate? It causes segfaults with my graphics card when I put that line in. – Skyler Apr 20 '12 at 19:59
What does drawQuad do? – PsychoDad Jan 15 at 17:57

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.