FileDocCategorySizeDatePackage
LightingColorFilter.javaAPI DocAndroid 1.5 API1450Wed May 06 22:42:00 BST 2009android.graphics

LightingColorFilter

public class LightingColorFilter extends ColorFilter

Fields Summary
Constructors Summary
public LightingColorFilter(int mul, int add)
Create a colorfilter that multiplies the RGB channels by one color, and then adds a second color, pinning the result for each component to [0..255]. The alpha components of the mul and add arguments are ignored.

        native_instance = native_CreateLightingFilter(mul, add);
    
Methods Summary
private static native intnative_CreateLightingFilter(int mul, int add)