Sfoglia il codice sorgente

scene: try to disable all activated GL features in the scene rendering.

legacy
Sam Hocevar sam 13 anni fa
parent
commit
804f6684b5
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. +7
    -0
      src/scene.cpp

+ 7
- 0
src/scene.cpp Vedi File

@@ -404,6 +404,13 @@ void Scene::Render() // XXX: rename to Blit()
free(data->tiles);
data->tiles = 0;
data->ntiles = 0;

glDisable(GL_TEXTURE_2D);
glDisable(GL_DEPTH_TEST);
#if defined HAVE_GL_2X && !defined __APPLE__
glDisable(GL_ALPHA_TEST);
#endif
glDisable(GL_BLEND);
}

} /* namespace lol */


Caricamento…
Annulla
Salva