FileDocCategorySizeDatePackage
ColorFilter.javaAPI DocAndroid 5.1 API1537Thu Mar 12 22:22:30 GMT 2015android.graphics

ColorFilter

public class ColorFilter extends Object
A color filter can be used with a {@link Paint} to modify the color of each pixel drawn with that paint. This is an abstract class that should never be used directly.

Fields Summary
public long
native_instance
Holds the pointer to the native SkColorFilter instance.
Constructors Summary
Methods Summary
static native voiddestroyFilter(long native_instance)

protected voidfinalize()

        try {
            super.finalize();
        } finally {
            destroyFilter(native_instance);
        }