• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

OpenGL Blend Funcs??

Ultima

Platinum Member
From looking around on the net, I know about the following blend modes:

glBlendFunc(GL_SRC_ALPHA,GL_ONE); // Additive blending
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); // Interpolation blending
glBlendFunc(GL_DST_COLOR,GL_ZERO); // Multiplicative blending

Apparently the alpha value has no effect when using multiplicative blending.
If there are others, can you please post them? Like subtractive blending, etc.. thanks

Oh yeah. glBlendFunc(GL_ONE,GL_ONE) is also additive blending, but doesn't let you fade in and out like the other func. Maybe its faster?



 
Back
Top