Tagged Questions

3
votes
3answers
563 views

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

Hi, 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 …
1
vote
3answers
111 views

OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPS

I need to draw the background for a 2D space scrolling shooter. I need to implement 3 layers of stars: one distant nebula (moving really slow) in the background, one layer of far away stars (moving …
1
vote
5answers
348 views

How to remove black background from textures in OpenGL

Hi, 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 …
1
vote
1answer
274 views

BlendFunc for textured fonts with changing background

I am attempting to use Textured fonts as so that I can display text in my openGL scene. However I am having trouble finding glBlendFunc values that will work. The background that the text will be …
0
votes
1answer
26 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
2answers
357 views

Transparency/Blending issues with OpenGL ES/iPhone

Hi everyone. I have a simple 16x16 particle that goes from being opaque to transparent. Unfortunately is appears different in my iPhone port and I can't see where the differences in the code are. Most …
0
votes
2answers
206 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 …