David Rose 24 lat temu
rodzic
commit
7e59df5359
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6 1
      panda/src/gobj/texture.cxx

+ 6 - 1
panda/src/gobj/texture.cxx

@@ -232,7 +232,12 @@ load(const PNMImage &pnmimage) {
   if (!_pbuffer->load(pnmimage))
     return false;
 
-  unprepare();
+  // It's not a good idea to call this here, since this function might
+  // be called from within the GSG itself--which won't expect the
+  // texture to suddenly unprepare itself.  Better to have the user
+  // explicitly unprepare() the texture if she loads a new file.
+  //  unprepare();
+
   return true;
 }