1
vote
1answer
74 views

How can I use SVG Masks to make a Luma Mask?

I want to make a Luma-Mask (Matte) in SVG. In other words I want to mask a layer to the luminance channel (acquired from the RGB channels) of a different layer. How can this be done? Thanks
2
votes
1answer
464 views

Alpha Blending 2 RGBA colors in C [duplicate]

Possible Duplicate: How to do alpha blend fast? What is the fastest way to alpha blend 2 RGBA (Integer) colors? As a note, the target color where to blend is always opaque, only the second ...
1
vote
1answer
835 views

iPhone - OpenGL ES 1.1 - Alpha Blend make texture wrong color

I'm newbie in OpenGL ES 1.1 for iPhone. Today, I tried to draw png texture on black background (the texture includes the alpha chanel) but the result is diference from source png file. The Result on ...
0
votes
1answer
105 views

Windows Mobile (MFC). How convert an image with alpha-channel from CImageList to CBitmap?

I have subclassed CBitmapButton to create my own button with an overrided function DrawItem. Here is the code from it and it works: CDC *pDC = &dc; CDC memDC; memDC.CreateCompatibleDC(pDC); ...
0
votes
0answers
358 views

Border of Alpha-Blended Textures get black after going through Blur-Post Processing Shader (OpenGL, GLSL)

I am rendering a scene to a texture using an fbo and then I render this texture to another one using a gaussian blur shader. But after that, the borders of all faces that are alpha blended get black. ...
0
votes
1answer
1k views

C# Alpha Blended form with Alpha Blended Controls

Alpha blended forms are no problem (for example http://www.codeproject.com/KB/graphics/alphaBG.aspx) but alpha blended controls like pictureboxes with 32bit images don't work... Here is my problem: ...
0
votes
1answer
1k views

OpenGL blending with source and destination alpha

I'm trying to render a texture with alpha to a frame buffer with alpha. I need the texture's transparency to be controlled by a combination of its own alpha, and the alpha already rendered to the ...
2
votes
1answer
950 views

Set “opacity” of a CGLayer before draw?

I have UIView subclass - actually a puzzle piece - with 2 different CGLayer initialized at initWithFrame. In drawRect I have to blend this two layer, and the uppermost should have variable alpha ...
0
votes
2answers
545 views

Flash / Actionscript: How to make overlapping sprite invisible

See image at http://reggino.kingsquare.nl/tmp/actionscriptProblem.jpg Hi there, I can't get my head around this one... I'm having two sprites, where the intersection of these sprites has an alpha ...