aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2011-06-13 12:13:32 -0700
committerAndroid Code Review <code-review@android.com>2011-06-13 12:13:32 -0700
commit2c0116a6929eab6e3a31d03a7389a28673927bb3 (patch)
tree07bc2b7b312c705f6281a473b3cd465fec6be22f
parentd689f8cb9d3ad0d50a4b6e9c6c7b7f02939c4c72 (diff)
parente9428d1d70f81d248a44d3f16808961c2c6f1239 (diff)
downloadskia-2c0116a6929eab6e3a31d03a7389a28673927bb3.tar.gz
Merge "Make this virtual function non-pure, temporarily."
-rw-r--r--include/core/SkDrawFilter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkDrawFilter.h b/include/core/SkDrawFilter.h
index c8af187056..1434391858 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