Tagged Questions

4
votes
3answers
1k views

How to use 32bit alpha-blended BMP in .Net

Is there any way to use this kind of format in .Net (C#)? I want to use the same skin format that uTorrent uses in my app, but i can't get the transparent background. Any ideas? Thanks for your time.
3
votes
2answers
2k views

Alpha masks with OpenGL

I want to use an alpha mask in OpenGL so that white(1)=visible and black(0)=hidden. So what I do is I write something in the alpha component of the framebuffer using glColorMask(False, False, False, ...
2
votes
2answers
59 views

Drawing textures with variable transparency

I am a moderately experienced C# developer, but I'm new to XNA and graphics in general. I'm making a 2D game and I'm trying to draw a texture that partially transparent. The desired transparency value ...
2
votes
2answers
215 views

SWT draw2d alpha blending

I'm looking for some method to draw half transparent figures within the draw2d framework. Currently I'm using setAlpha() of org.eclipse.draw2d.Graphics. The problem is that it slows down the whole ...
1
vote
1answer
63 views

Why doesn't alpha blending work in ortho?

This is how I turn on ortho projection after drawing 3D objects: glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0,Screen_Width,Screen_Height,0,0,1); And this is how I turn on blending and ...
1
vote
1answer
523 views

Per-pixel per-component alpha blending in GDI

I have a 24-bit bitmaps with R, G, B color channels and a 24-bit bitmap with R, G, B alpha channels. I want to alpha blend the first bitmap to a HDC in GDI or RenderTarget in Direct2D with the alpha ...
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
4answers
214 views

alpha blending with multiple textures leaves colored border

following problem: i have two textures and i want to combine these two into a new texture. Thus, one texture is used as background, the other will be overlayed. The overlay texture is getting ...
0
votes
1answer
232 views

XNA Render Multiple Alpha Issue

I'm having an issue with trying to render multiple alpha objects over the top of each other. At the moment, if i render one alpha object on top of another alpha object, the top alpha object is ...
0
votes
1answer
390 views

Alpha blending on the edges of an UIImage

I have two rectangular images: one is foreground, the other one is background. I am trying to blend the edges of the foreground image so that the foreground image looks like it is "part" of the ...
0
votes
1answer
932 views

Texture and color together in GLSL?

I cant figure out, how to get with OpenGL ES 2.0 similiar Results to OpenGL ES 1.1. I want to use actually a Sampler2D (to blend my texture with Alpha Channel to the Framebuffer) and also set an ...
0
votes
3answers
408 views

formula for alpha value when blending two transparent colors

lets assume an alpha of 1 means fully opaque and 0 means fully transparent. lets say i have two black images which have 50% transparency (alpha = 0.5). if they are laid on top of each other, the ...
0
votes
1answer
57 views

What is the formula for extracting the src from a calculated blendmode?

How does one go about using a alpha blending formula to achieve the src rgb color from the resultant of the 2 blended together