Remove duplicate code.

This commit is contained in:
castano 2010-05-14 04:58:08 +00:00
parent 4fa93f8676
commit f6a39d6eab

View File

@ -17,21 +17,6 @@ using namespace nv;
namespace
{
static int iround(float f)
{
return int(f);
}
static int ifloor(float f)
{
return int(floor(f));
}
static float frac(float f)
{
return f - floor(f);
}
static int mirror(int x, int w)
{
x = abs(x);