Changing cullLights to Culllights, need to do this in 2 commits since Git extensions is fucked.

This commit is contained in:
Tleety
2016-01-11 10:22:56 +01:00
parent 6e6460a000
commit dbb44fb4e4
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ void LightCullingPass::InitializeShaderPrograms()
m_CalculateFrustumProgram->Link();
m_LightCullProgram = ResourceManager::Load<ShaderProgram>("#LightCullProgram");
m_LightCullProgram->AddShader(std::shared_ptr<Shader>(new ComputeShader("Shaders/cullLights.comp.glsl")));
m_LightCullProgram->AddShader(std::shared_ptr<Shader>(new ComputeShader("Shaders/CullLights.comp.glsl")));
m_LightCullProgram->Compile();
m_LightCullProgram->Link();
}