remove unused function
authorhumper@google.com <humper@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 19 Jul 2013 20:30:44 +0000 (20:30 +0000)
committerhumper@google.com <humper@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 19 Jul 2013 20:30:44 +0000 (20:30 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@10208 2bbb7eff-a529-9590-31e7-b0007b416f81

src/core/SkConvolver.cpp

index 54e46b6..c76027d 100644 (file)
@@ -20,18 +20,6 @@ namespace {
         return 255;
     }
 
-    // Takes the value produced by accumulating element-wise product of image with
-    // a kernel and brings it back into range.
-    // All of the filter scaling factors are in fixed point with kShiftBits bits of
-    // fractional part.
-    inline unsigned char BringBackTo8(int a, bool takeAbsolute) {
-        a >>= SkConvolutionFilter1D::kShiftBits;
-        if (takeAbsolute) {
-            a = abs(a);
-        }
-        return ClampTo8(a);
-    }
-
     // Stores a list of rows in a circular buffer. The usage is you write into it
     // by calling AdvanceRow. It will keep track of which row in the buffer it
     // should use next, and the total number of rows added.