blob: 0e7b619770007a264e38483f47f3127a51e9b06a [file] [log] [blame]
#ifndef ANDROID_GRAPHICS_PAINT_FILTER_H_
#define ANDROID_GRAPHICS_PAINT_FILTER_H_
class SkPaint;
namespace android {
class PaintFilter : public SkRefCnt {
public:
/**
* Called with the paint that will be used to draw.
* The implementation may modify the paint as they wish.
*/
virtual void filter(SkPaint*) = 0;
virtual void filterFullPaint(Paint*) = 0;
};
} // namespace android
#endif