What Direct3D render states should be used to implement Java's Porter-Duff compositing rules (CLEAR, SRC, SRCOVER, etc.)?
|
|
One thing to check, make sure alpha test is off with
If that is on (along with something like AlphaFunction = Greater and ReferenceAlpha = 0), clear pixels could be thrown away regardless of the AlphaBlendEnable setting. |
||
|
|
|
|
When I implement the render states for "A" (that is paint the source pixel color/alpha and ignore the destination pixel color/alpha), Direct3D doesn't seem to perform the operation correctly if the source has an alpha value of zero. Instead of filling the target area with transparency, I'm seeing the target area remain unchanged. However, if I change the source alpha value to 1, the target area becomes "virtually" transparent. This happens even when I disable the alphablending render state, so I would presume this is an attempt at optimization that's actually a bug in Direct3D. Except for this situation, it would appear that Corey's render states are correct. Thanks, Corey! |
||
|
|
|
|
I'm haven't used Java too much, but based on the white paper from 1984, it should be a fairly straightforward mapping of render state blend modes. There are of course more that you can do than just these, like normal alpha blending (SourceAlpha, InvSourceAlpha) or additive (One, One) to name a few. (I assume that you are asking about these specifically because you are porting some existing functionality? In that cause you may not care about other combinations...) Anyway, these assume a BlendOperation of Add and that AlphaBlendEnable is true. Clear
A
B
A over B
B over A
A in B
B in A
A out B
B out A
A atop B
B atop A
A xor B
Chaining these is a little more complex and would require either multiple passes or multiple texture inputs to a shader. |
||
|
|
