FileDocCategorySizeDatePackage
PixelXorXfermode.javaAPI DocAndroid 1.5 API1136Wed May 06 22:42:00 BST 2009android.graphics

PixelXorXfermode

public class PixelXorXfermode extends Xfermode
PixelXorXfermode implements a simple pixel xor (op ^ src ^ dst). This transformation does not follow premultiplied conventions, therefore this mode *always* returns an opaque color (alpha == 255). Thus it is not really usefull for operating on blended colors.

Fields Summary
Constructors Summary
public PixelXorXfermode(int opColor)

        native_instance = nativeCreate(opColor);
    
Methods Summary
private static native intnativeCreate(int opColor)