1
0
Fork 0

BatchRenderer2D.cpp: Remove unnused variable.

This commit is contained in:
Henrik Hautakoski 2016-06-27 15:48:09 +02:00
parent 5a48f0d8ca
commit 6db9d81f45

View file

@ -119,7 +119,6 @@ void BatchRenderer2D::render()
{
Matrix4f viewMatrix = m_camera ? m_camera->getViewMatrix() : Matrix4f::Identity;
Matrix4f projMatrix = m_camera ? m_camera->getProjectionMatrix() : Matrix4f::Identity;
Matrix4f guiMatrix = math::orthoProjection(0.0f, 800.0f, 600.0f, 0.0f);
Matrix4f MVP = projMatrix * viewMatrix;
// Nothing to render.