Tagged Questions
1
vote
1answer
72 views
Bad (unattractive) blending in OpenGL with bright figures on dark background
I have a problems in OpenGL with blending (in result of antialiasing or textured painting). See problem illustration:
I have the following setup code
// Antialiasing
glEnable(GL_POINT_SMOOTH);
...
1
vote
5answers
2k views
How to remove black background from textures in OpenGL
I'm looking for a way to remove the background of a 24bit bitmap, while keeping the main image totally opaque, up until now blending has served the purpose but now I need to keep the main bit opaque. ...