3
votes
9answers
4k views
CSS: semi-transparent background, but not text
Is there a way in CSS to make the background of an element semi-transparent, but still have the text of the element non-transparent? (Without separating the text and background in …
0
votes
2answers
34 views
Different alpha for subviews in the same container
I have a question similar to the http://stackoverflow.com/questions/1269637/can-you-override-a-parent-uiviews-alpha-value-on-one-of-its-subviews
In some cases I want to show custo …
0
votes
1answer
102 views
AMD RenderMonkey GLSG Config for Alpha Transparency
I'm trying to use RenderMonkey to design a GLSL shader that uses Alpha transparency, and the RenderState editor doesn't use the same terms I'm used to from OpenGL. Can anyone advis …
0
votes
1answer
18 views
Blend formula for GDI+
I have a color A that I'd like to transform into color C, by using color B. So I'd like to know the blending formula F in GDI+, where F = F(A, B) = C. A is the "bottom color" and B …
0
votes
2answers
100 views
Can you override a parent UIView’s alpha value on one of its subviews?
I have a somewhat transparent view (alpha = 0.6) that has some subviews. I'd like one of the subviews (a UILabel) to be drawn with alpha of 1.0 because the blending makes the text …
0
votes
1answer
290 views
How can I optimize drawing of multiple fullscreen transparent iPhone OpenGL ES layers?
Hi,
I'm trying to optimize my iPhone OpenGL ES app. This is based on the GLSprite and GLPaint sample apps. I've factored out EAGLView into a base class, and I'm subclassing it i …
1
vote
2answers
143 views
Opacity of a TWinControl?
How could one change the opacity of a TWinControl based control? And why didn't they add this capability to TControl/TWinControl level (why only TForm)?
0
votes
2answers
181 views
Direct3D rendering 2D images with “multiply” blending mode and alpha
I'm trying to replicate the Photoshop filter multiply with Direct3D. I've been reading and googling about the different render states and I've got the effect almost working. The pr …
1
vote
10answers
586 views
I need an graphical Editor to create PNG files with alphatransparency
Unfortunately, Photoshop currently is the only graphical editor I can use to create PNG files with alphatransparency.
I really hate it.
But I need it. But can't afford it.
Pixelm …
0
votes
2answers
59 views
Clearing the alpha channel of an NSImage
It can be done by mallocing a temporary bitmap with 32bits per pixel
and then clearing the alpha component with a for loop and
and finally turn it back into a NSImage again.
I su …
9
votes
4answers
608 views
[SOLVED] Is it possible to render web content over a clear background using WebKit?
I'm trying to gauge possibility of a patch to WebKit which would allow all rendered graphics to be rendered onto a fully transparent background.
The desired effect is to render we …
1
vote
1answer
186 views
loading a simple semi transparent PNG in Windows Mobile using C#.
Hi,
I am new to Windows Mobile programming. I want to load a PNG file which has an Alpha Channel. After 2 days of searching in Internet, I am still at square 1. Can someone help m …
1
vote
1answer
64 views
Turn off Pygame alpha
I have a computer game I'm working on, and I'm wanting to give the user an option to turn off alpha compositing for speed purposes. Rather than doing checks everywhere, does Pygame …
1
vote
3answers
372 views
Tackling alpha blend in OpenGL for better performance
Since having blends is hitting perfomance of our game, we tried several blending strategies for creating the "illusion" of blending. One of them is drawing a sprite every odd frame …
3
votes
3answers
161 views
Crossfading scenes in OpenGL
I would like to render two scenes in OpenGL, and then do a visual crossfade from one scene to the second. Can anyone suggest a starting point for learning how to do this?
Cheers
