Tagged Questions
1
vote
2answers
732 views
What do the blend modes in pygame mean?
Surface.blit has a new parameter in 1.8: blend. The following values are defined:
BLEND_ADD
BLEND_SUB
BLEND_MULT
BLEND_MIN
BLEND_MAX
BLEND_RGBA_ADD
BLEND_RGBA_SUB
BLEND_RGBA_MULT
BLEND_RGBA_MIN
...
0
votes
1answer
44 views
How to enable alpha blending on DirectX?
How to do this in DirectX?
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
Somehow i just cant seem to get it work. Im using code:
d3ddev->SetRenderState(D3DRS_SRCBLEND, ...
0
votes
1answer
897 views
XNA Alpha Blending part of a texture in Game Studio 4.0
Hi I'm trying to follow an answer about making part of a texture transparent when using Alpha Blending from this question
The only problem is that this only works in XNA 3.1 and I'm working in XNA 4.0 ...
0
votes
2answers
329 views
OpenGL Blending problem with transparent skybox + transparent heightmap
Here's my problem.
I'm rendering an orthogonal quad (filling the viewport) before everything (with vertex coloring at each corner), right after I'm rendering a cube skybox with 6 transparent polygons ...