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.
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 ...
1
vote
1answer
552 views
How to create Simple HLSL Silverlight filter for blending/playing with/mixing 2 images?
How to create Simple HLSL Silverlight filter for blending/playing with/mixing 2 images?
I need some working example of a filter which would take as an input 2 images\objects and return 1 image - ...
0
votes
1answer
230 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
204 views
Manually blending colors
I have a problem that I'm trying to optimize. I'm reproducing OpenGL functions and my current problem is rasterizing n-pointed shapes and blending the colors based on the points.
The raster is ...
0
votes
1answer
166 views
Question about “Additive blending” and “Hue replacement”
Since drawing fonts is quite expensive in terms of CPU,
many developers use a rasterized font to draw text on video games; that's what I did too.
Using additive blending when drawing the text works ...