浏览代码

pfmprogs: Rename config_pfm to config_pfmprogs

Sam Edwards 7 年之前
父节点
当前提交
c81229c1a8

+ 2 - 2
makepanda/makepanda.py

@@ -6110,9 +6110,9 @@ if not PkgSkip("PANDATOOL"):
   TargetAdd('pfm-trans.exe', opts=['ADVAPI'])
 
   TargetAdd('pfm-bba_pfmBba.obj', opts=OPTS, input='pfmBba.cxx')
-  TargetAdd('pfm-bba_config_pfm.obj', opts=OPTS, input='config_pfm.cxx')
+  TargetAdd('pfm-bba_config_pfmprogs.obj', opts=OPTS, input='config_pfmprogs.cxx')
   TargetAdd('pfm-bba.exe', input='pfm-bba_pfmBba.obj')
-  TargetAdd('pfm-bba.exe', input='pfm-bba_config_pfm.obj')
+  TargetAdd('pfm-bba.exe', input='pfm-bba_config_pfmprogs.obj')
   TargetAdd('pfm-bba.exe', input='libp3progbase.lib')
   TargetAdd('pfm-bba.exe', input='libp3pandatoolbase.lib')
   TargetAdd('pfm-bba.exe', input=COMMON_PANDA_LIBS)

+ 4 - 4
pandatool/src/pfmprogs/config_pfm.cxx → pandatool/src/pfmprogs/config_pfmprogs.cxx

@@ -6,16 +6,16 @@
  * license.  You should have received a copy of this license along
  * with this source code in a file named "LICENSE."
  *
- * @file config_pfm.cxx
+ * @file config_pfmprogs.cxx
  * @author drose
  * @date 2010-12-23
  */
 
-#include "config_pfm.h"
+#include "config_pfmprogs.h"
 
 #include "dconfig.h"
 
-Configure(config_pfm);
+Configure(config_pfmprogs);
 NotifyCategoryDef(pfm, "");
 
 ConfigVariableDouble pfm_bba_dist
@@ -23,7 +23,7 @@ ConfigVariableDouble pfm_bba_dist
  PRC_DESC("Specifies the point_dist and sample_radius, in UV space, for "
           "compute bba files with pfm_trans."));
 
-ConfigureFn(config_pfm) {
+ConfigureFn(config_pfmprogs) {
   init_libpfm();
 }
 

+ 1 - 1
pandatool/src/pfmprogs/config_pfm.h → pandatool/src/pfmprogs/config_pfmprogs.h

@@ -6,7 +6,7 @@
  * license.  You should have received a copy of this license along
  * with this source code in a file named "LICENSE."
  *
- * @file config_pfm.h
+ * @file config_pfmprogs.h
  * @author drose
  * @date 2010-12-23
  */

+ 1 - 1
pandatool/src/pfmprogs/pfmBba.cxx

@@ -12,7 +12,7 @@
  */
 
 #include "pfmBba.h"
-#include "config_pfm.h"
+#include "config_pfmprogs.h"
 #include "pfmFile.h"
 
 /**

+ 1 - 1
pandatool/src/pfmprogs/pfmTrans.cxx

@@ -12,7 +12,7 @@
  */
 
 #include "pfmTrans.h"
-#include "config_pfm.h"
+#include "config_pfmprogs.h"
 #include "pfmFile.h"
 #include "pfmVizzer.h"
 #include "texture.h"