Removed a temp variable.

This commit is contained in:
Tleety
2016-01-23 14:52:29 +01:00
parent 6a18cb88af
commit f623232a2b
3 changed files with 0 additions and 5 deletions
-1
View File
@@ -31,7 +31,6 @@ private:
Texture* m_WhiteTexture;
Texture* m_BlackTexture;
Texture* TEMP_glowTestTexture;
FrameBuffer m_FinalPassFrameBuffer;
GLuint m_BloomTexture;
-1
View File
@@ -13,7 +13,6 @@ void DrawFinalPass::InitializeTextures()
{
m_WhiteTexture = ResourceManager::Load<Texture>("Textures/Core/Blank.png");
m_BlackTexture = ResourceManager::Load<Texture>("Textures/Core/Black.png");
TEMP_glowTestTexture = ResourceManager::Load<Texture>("Textures/Core/UnitRaptor_glow.png");
}
void DrawFinalPass::InitializeFrameBuffers()
-3
View File
@@ -121,9 +121,6 @@ void Renderer::Draw(RenderFrame& frame)
m_DrawScreenQuadPass->Draw(m_PickingPass->PickingTexture());
}
//m_DrawBloomPass->Draw(m_DrawFinalPass->m_BloomTexture);
//m_DrawColorCorrectionPass->Draw(m_DrawFinalPass->m_SceneTexture, m_DrawBloomPass->m_GaussianTexture_vert);
m_ImGuiRenderPass->Draw();
glfwSwapBuffers(m_Window);
}