Browse Source

Turn off gl-immutable-texture-storage by default (it seems to cause trouble on NVIDIA cards, which demand a sized internal format be used)

rdb 11 years ago
parent
commit
cea09d4b9e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/glstuff/glmisc_src.cxx

+ 1 - 1
panda/src/glstuff/glmisc_src.cxx

@@ -209,7 +209,7 @@ ConfigVariableBool gl_dump_compiled_shaders
             "into the current directory."));
 
 ConfigVariableBool gl_immutable_texture_storage
-  ("gl-immutable-texture-storage", true,
+  ("gl-immutable-texture-storage", false,
    PRC_DESC("This configures Panda to pre-allocate immutable storage "
             "for each texture.  This improves runtime performance, but "
             "changing the size or type of a texture will be slower."));