Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 14, 2013
1 parent 5aa7386 commit c388ead
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions doomsday/client/src/render/cameralensfx.cpp
Expand Up @@ -76,27 +76,18 @@ static ConsoleEffectStack fxConsole[DDMAXPLAYERS];

void LensFx_Init()
{
//postProc.glInit();

for(int i = 0; i < DDMAXPLAYERS; ++i)
{
ConsoleEffectStack &stack = fxConsole[i];
stack.effects.append(new fx::ColorFilter(i));
stack.effects.append(new fx::Vignette(i));
stack.effects.append(new fx::LensFlares(i));
stack.effects.append(new fx::PostProcessing(i));

/*foreach(ConsoleEffect *effect, stack.effects)
{
effect->glInit();
}*/
}
}

void LensFx_Shutdown()
{
//postProc.glDeinit();

LensFx_GLRelease();

for(int i = 0; i < DDMAXPLAYERS; ++i)
Expand Down

0 comments on commit c388ead

Please sign in to comment.