Panda3D
|
00001 // Filename: config_grutil.h 00002 // Created by: drose (24May00) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) Carnegie Mellon University. All rights reserved. 00008 // 00009 // All use of this software is subject to the terms of the revised BSD 00010 // license. You should have received a copy of this license along 00011 // with this source code in a file named "LICENSE." 00012 // 00013 //////////////////////////////////////////////////////////////////// 00014 00015 #ifndef CONFIG_GRUTIL_H 00016 #define CONFIG_GRUTIL_H 00017 00018 #include "pandabase.h" 00019 #include "notifyCategoryProxy.h" 00020 #include "configVariableDouble.h" 00021 #include "configVariableString.h" 00022 #include "configVariableInt.h" 00023 #include "configVariableBool.h" 00024 00025 NotifyCategoryDecl(grutil, EXPCL_PANDA_GRUTIL, EXPTP_PANDA_GRUTIL); 00026 00027 extern ConfigVariableDouble frame_rate_meter_update_interval; 00028 extern ConfigVariableString frame_rate_meter_text_pattern; 00029 extern ConfigVariableInt frame_rate_meter_layer_sort; 00030 extern ConfigVariableDouble frame_rate_meter_scale; 00031 extern ConfigVariableDouble frame_rate_meter_side_margins; 00032 00033 extern ConfigVariableDouble scene_graph_analyzer_meter_update_interval; 00034 extern ConfigVariableInt scene_graph_analyzer_meter_layer_sort; 00035 extern ConfigVariableDouble scene_graph_analyzer_meter_scale; 00036 extern ConfigVariableDouble scene_graph_analyzer_meter_side_margins; 00037 00038 extern ConfigVariableBool pfm_force_littleendian; 00039 extern ConfigVariableBool pfm_reverse_dimensions; 00040 extern ConfigVariableInt pfm_vis_max_vertices; 00041 extern ConfigVariableInt pfm_vis_max_indices; 00042 00043 extern ConfigVariableBool movies_sync_pages; 00044 00045 extern EXPCL_PANDA_GRUTIL void init_libgrutil(); 00046 00047 #endif 00048 00049