FileDocCategorySizeDatePackage
PixelXorXfermode.javaAPI DocAndroid 5.1 API1149Thu Mar 12 22:22:30 GMT 2015android.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 longnativeCreate(int opColor)