Remove unused function.

This commit is contained in:
castano 2008-11-14 02:15:35 +00:00
parent 7df0885c4f
commit 1cefc366f8
2 changed files with 2 additions and 11 deletions

View File

@ -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) static bool downsample(const FloatImage * src, const BitMap * srcMask, const FloatImage ** _dst, const BitMap ** _dstMask)
{ {
const uint w = src->width(); const uint w = src->width();

View File

@ -19,8 +19,8 @@ namespace nv
{ {
} }
const uint width() const { return m_width; } uint width() const { return m_width; }
const uint height() const { return m_height; } uint height() const { return m_height; }
bool bitAt(uint x, uint y) const 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 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 fillPullPush(FloatImage * img, const BitMap * bmap);
NVIMAGE_API void fillExtrapolate(int passCount, FloatImage * img, BitMap * bmap); NVIMAGE_API void fillExtrapolate(int passCount, FloatImage * img, BitMap * bmap);