FileDocCategorySizeDatePackage
DrawFilter.javaAPI DocAndroid 5.1 API1307Thu Mar 12 22:22:30 GMT 2015android.graphics

DrawFilter

public class DrawFilter extends Object
A DrawFilter subclass can be installed in a Canvas. When it is present, it can modify the paint that is used to draw (temporarily). With this, a filter can disable/enable antialiasing, or change the color for everything this is drawn.

Fields Summary
long
mNativeInt
Constructors Summary
Methods Summary
protected voidfinalize()

        try {
            nativeDestructor(mNativeInt);
        } finally {
            super.finalize();
        }
    
private static native voidnativeDestructor(long nativeDrawFilter)