Tagged Questions
5
votes
5answers
492 views
How to make fading-to-black effect with OpenGL?
Im trying to achieve fade-to-black effect, but i dont know how to do it. I tried several things but they fail due to how opengl works
I will explain how it would work:
If i draw 1 white pixel and ...
1
vote
1answer
100 views
How to blend texture colors with simple multiplication to the colors under it?
So i want my texture colors to multiply with the colors under it, how this can be done with glBlendFunc() ?
For example: if i have a texture color (0.31, 0.51, 0.124) and there is a color (0.83, ...
1
vote
1answer
810 views
OpenGL - mask with multiple textures
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 ...
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. ...
0
votes
1answer
63 views
problem blending properly in openGL
I'm trying to draw a 2d character sprite on top of a 2d tilemap, but when I draw the character he's got odd stuff behind him. This isn't in the sprite, so I think its the blending.
This is how my ...