diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2011-05-13 11:17:31 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2011-06-13 12:12:28 -0700 |
commit | e9428d1d70f81d248a44d3f16808961c2c6f1239 (patch) | |
tree | 07bc2b7b312c705f6281a473b3cd465fec6be22f /include | |
parent | d689f8cb9d3ad0d50a4b6e9c6c7b7f02939c4c72 (diff) | |
download | external_skia-e9428d1d70f81d248a44d3f16808961c2c6f1239.zip external_skia-e9428d1d70f81d248a44d3f16808961c2c6f1239.tar.gz external_skia-e9428d1d70f81d248a44d3f16808961c2c6f1239.tar.bz2 |
Make this virtual function non-pure, temporarily.
This makes it easier for now to deal with situations
where derived classes don't have an implementation.
Change-Id: Iaf4b3495441cb5881ad98633e55da1c5acdd9768
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkDrawFilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkDrawFilter.h b/include/core/SkDrawFilter.h index c8af187..1434391 100644 --- a/include/core/SkDrawFilter.h +++ b/include/core/SkDrawFilter.h @@ -44,7 +44,7 @@ public: * Called with the paint that will be used to draw the specified type. * The implementation may modify the paint as they wish. */ - virtual void filter(SkPaint*, Type) = 0; + virtual void filter(SkPaint*, Type) {} }; #endif |