diff --git a/src/nvimage/HoleFilling.cpp b/src/nvimage/HoleFilling.cpp index 89af845..928e9ea 100644 --- a/src/nvimage/HoleFilling.cpp +++ b/src/nvimage/HoleFilling.cpp @@ -223,14 +223,6 @@ void nv::fillVoronoi(FloatImage * img, const BitMap * bmap) } -void nv::fillBlur(FloatImage * img, const BitMap * bmap) -{ - nvCheck(img != NULL); - - // @@ Apply a 3x3 kernel. -} - - static bool downsample(const FloatImage * src, const BitMap * srcMask, const FloatImage ** _dst, const BitMap ** _dstMask) { const uint w = src->width(); diff --git a/src/nvimage/HoleFilling.h b/src/nvimage/HoleFilling.h index b437e87..53fbf71 100644 --- a/src/nvimage/HoleFilling.h +++ b/src/nvimage/HoleFilling.h @@ -19,8 +19,8 @@ namespace nv { } - const uint width() const { return m_width; } - const uint height() const { return m_height; } + uint width() const { return m_width; } + uint height() const { return m_height; } bool bitAt(uint x, uint y) const { @@ -85,7 +85,6 @@ namespace nv }; NVIMAGE_API void fillVoronoi(FloatImage * img, const BitMap * bmap); - NVIMAGE_API void fillBlur(FloatImage * img, const BitMap * bmap); NVIMAGE_API void fillPullPush(FloatImage * img, const BitMap * bmap); NVIMAGE_API void fillExtrapolate(int passCount, FloatImage * img, BitMap * bmap);