have you glEnable’d alpha blending? And have you set up your blend parameters? You can’t just set the alpha you need to setup various other parameters in OpenGL.
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable( GL_BLEND );
have you glEnable’d alpha blending? And have you set up your blend parameters? You can’t just set the alpha you need to setup various other parameters in OpenGL.
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable( GL_BLEND );