General: Migrate off non-constexpr constants

This commit is contained in:
Lioncash
2020-06-16 22:22:54 -04:00
parent 31bfca7aac
commit 566a32fd75
50 changed files with 304 additions and 258 deletions

View File

@@ -341,7 +341,7 @@ void CBasicViewport::DrawAxes()
CGraphics::UpdateMVPBlock();
glLineWidth(1.f);
CDrawUtil::DrawLine(CVector3f(0,0,0), CVector3f(1,0,0), CColor::skRed); // X
CDrawUtil::DrawLine(CVector3f(0,0,0), CVector3f(0,1,0), CColor::skGreen); // Y
CDrawUtil::DrawLine(CVector3f(0,0,0), CVector3f(0,0,1), CColor::skBlue); // Z
CDrawUtil::DrawLine(CVector3f::Zero(), CVector3f(1,0,0), CColor::Red()); // X
CDrawUtil::DrawLine(CVector3f::Zero(), CVector3f(0,1,0), CColor::Green()); // Y
CDrawUtil::DrawLine(CVector3f::Zero(), CVector3f(0,0,1), CColor::Blue()); // Z
}