Remove dead code that contains a delete of an uninitialized pointer

This commit is contained in:
Ben Payne 2015-02-18 18:42:09 -05:00
parent 55ac3dca70
commit 364dd3634d
2 changed files with 0 additions and 7 deletions

View file

@ -56,12 +56,6 @@ RenderOcclusionMgr::RenderOcclusionMgr()
mMatInstance = NULL;
}
RenderOcclusionMgr::RenderOcclusionMgr(RenderInstType riType, F32 renderOrder, F32 processAddOrder)
: RenderBinManager(riType, renderOrder, processAddOrder)
{
delete mMatInstance;
}
static const Point3F cubePoints[8] =
{
Point3F(-0.5, -0.5, -0.5), Point3F(-0.5, -0.5, 0.5), Point3F(-0.5, 0.5, -0.5), Point3F(-0.5, 0.5, 0.5),