aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkGaussFilter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkGaussFilter.h')
-rw-r--r--src/core/SkGaussFilter.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/SkGaussFilter.h b/src/core/SkGaussFilter.h
index be00cf2cc0..9af45c875b 100644
--- a/src/core/SkGaussFilter.h
+++ b/src/core/SkGaussFilter.h
@@ -27,16 +27,10 @@ public:
int radius() const { return fN - 1; }
int width() const { return 2 * this->radius() + 1; }
- // TODO: remove filterDouble and use the ranged-for loop interface.
-
// Take an array of values where the gaussian factors will be placed. Return the number of
// values filled.
int filterDouble(double values[5]) const;
- // Allow a filter to be used in a C++ ranged-for loop.
- const double* begin() const { return &fBasis[0]; }
- const double* end() const { return &fBasis[fN]; }
-
private:
double fBasis[5];
int fN;