Browse Source

Fix regression from 1.18 that broke separate shader programs

rdb 12 years ago
parent
commit
11403d7826
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/gobj/shader.I

+ 1 - 1
panda/src/gobj/shader.I

@@ -619,7 +619,7 @@ ShaderFile(const string &vertex,
            const string &geometry,
            const string &tess_control,
            const string &tess_evaluation) :
-  _separate(false),
+  _separate(true),
   _vertex(vertex),
   _fragment(fragment),
   _geometry(geometry),