diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-06-04 18:10:33 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-06-04 18:10:33 +0000 |
commit | 8b0d0f6a9c01f45cd5bacf7aea2a32306fb16684 (patch) | |
tree | 311ff24658e2c1275e3260c719c64098cf345c5a /include/core | |
parent | d13bdfb70f93a62fbc29362be90cd3776e1eeddf (diff) |
remove public function-ptr based colorfilter
Review URL: https://codereview.appspot.com/6286046
git-svn-id: http://skia.googlecode.com/svn/trunk@4141 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkColorFilter.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/core/SkColorFilter.h b/include/core/SkColorFilter.h index f875ab485f..8c670541ac 100644 --- a/include/core/SkColorFilter.h +++ b/include/core/SkColorFilter.h @@ -91,7 +91,6 @@ public: */ SkColor filterColor(SkColor); - /** Create a colorfilter that uses the specified color and mode. If the Mode is DST, this function will return NULL (since that mode will have no effect on the result). @@ -103,14 +102,6 @@ public: */ static SkColorFilter* CreateModeFilter(SkColor c, SkXfermode::Mode mode); - /** Create a colorfilter that calls through to the specified procs to - filter the colors. The SkXfermodeProc parameter must be non-null, but - the SkXfermodeProc16 is optional, and may be null. - */ - static SkColorFilter* CreateProcFilter(SkColor srcColor, - SkXfermodeProc proc, - SkXfermodeProc16 proc16 = NULL); - /** 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 |