blob: 4996aa4453161d32bed38bafdfbe8370a3da2434 [file] [log] [blame]
#ifndef ANDROID_GRAPHICS_PAINT_FILTER_H_
#define ANDROID_GRAPHICS_PAINT_FILTER_H_
#include <SkRefCnt.h>
namespace android {
class Paint;
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 filterFullPaint(Paint*) = 0;
};
} // namespace android
#endif