1
0
forked from 0ad/0ad

Remove debug lines

This was SVN commit r21499.
This commit is contained in:
Stan 2018-03-10 22:45:31 +00:00
parent c9fe940401
commit d7220c3ebb

View File

@ -182,10 +182,6 @@ static void ComputeScreenBounds(Occluder& occluder, const CBoundingBoxAligned& b
y0 = std::min(y0, static_cast<u16>(g_HalfMaxCoord + static_cast<u16>(g_HalfMaxCoord * svec.Y / svec.W)));
x1 = std::max(x1, static_cast<u16>(g_HalfMaxCoord + static_cast<u16>(g_HalfMaxCoord * svec.X / svec.W)));
y1 = std::max(y1, static_cast<u16>(g_HalfMaxCoord + static_cast<u16>(g_HalfMaxCoord * svec.Y / svec.W)));
std::clog << x0 << std::endl;
std::clog << y0 << std::endl;
std::clog << y1 << std::endl;
std::clog << x1 << std::endl;
z0 = std::min(z0, svec.Z / svec.W);
}
}