Remove unused function.
This commit is contained in:
parent
7df0885c4f
commit
1cefc366f8
@ -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();
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user