Skip to content

Commit

Permalink
removed an unnecessary clear
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbrunson committed Oct 20, 2013
1 parent a4a48ef commit e582f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.java
Expand Up @@ -28,7 +28,7 @@ public class Main {


private void render() {
glClear(GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); //POSSIBLY REMOVE
glClear(GL_COLOR_BUFFER_BIT);
for (Light light : lights) {
glColorMask(false, false, false, false);
glStencilFunc(GL_ALWAYS, 1, 1);
Expand Down

0 comments on commit e582f91

Please sign in to comment.