Heya, I must be having one of those days because I am stumped, I am trying the following...
I have my color channels working fine but I have been unable to get my expected results in the alpha channel. What I would expect to see is 1.0's everywhere from the glClear() except where I draw geometry where there should be transp.a?? Yet instead I get an alpha of 1.0 everywhere (no transp.a is not 1.0).Code :glClearColor(0.0, 0.0, 0.0, 1.0); glClear(GL_COLOR_BUFFER_BIT); glBlendColorEXT(transp.r, transp.g, transp.b, transp.a); glBlendEquationSeparateEXT(GL_FUNC_ADD, GL_MAX); glBlendFuncSeparateEXT( GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_COLOR, GL_ZERO, GL_CONSTANT_COLOR);
So to then simplify things I attempted...
With GL_ZERO in both srcAlpha and destAlpha you would expect to get 0.0 in alpha everywhere I draw geometry (max(0.0*S, 0.0*D) = 0.0) and 1.0 everywhere else (from the clear)... yet I still get 1.0 everywhere.Code :glClearColor(0.0, 0.0, 0.0, 1.0); glClear(GL_COLOR_BUFFER_BIT); glBlendColorEXT(transp.r, transp.g, transp.b, transp.a); glBlendEquationSeparateEXT(GL_FUNC_ADD, GL_MAX); glBlendFuncSeparateEXT( GL_ONE_MINUS_CONSTANT_COLOR, GL_CONSTANT_COLOR, GL_ZERO, GL_ZERO);
The color channel however is fine, I get the expected color results.
Anyone have any ideas?
(I am using an Nvidia Quadro FX 4400 with driver 7.7.1.8)



