D3DMaskFill.java | Class | The MaskFill operation is expressed as:
dst = ((src dst) * pathA) + (dst * (1 - pathA))
The D3D implementation of the MaskFill operation differs from the above
equation because it is not possible to perform such a complex operation in
D3d (without the use of advanced techniques like fragment shaders and
multitexturing). |