Panda3D
 All Classes Functions Variables Enumerations
config_grutil.h
1 // Filename: config_grutil.h
2 // Created by: drose (24May00)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CONFIG_GRUTIL_H
16 #define CONFIG_GRUTIL_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableDouble.h"
21 #include "configVariableString.h"
22 #include "configVariableInt.h"
23 #include "configVariableBool.h"
24 
25 NotifyCategoryDecl(grutil, EXPCL_PANDA_GRUTIL, EXPTP_PANDA_GRUTIL);
26 
27 extern ConfigVariableBool frame_rate_meter_milliseconds;
28 extern ConfigVariableDouble frame_rate_meter_update_interval;
29 extern ConfigVariableString frame_rate_meter_text_pattern;
30 extern ConfigVariableString frame_rate_meter_ms_text_pattern;
31 extern ConfigVariableInt frame_rate_meter_layer_sort;
32 extern ConfigVariableDouble frame_rate_meter_scale;
33 extern ConfigVariableDouble frame_rate_meter_side_margins;
34 
35 extern ConfigVariableDouble scene_graph_analyzer_meter_update_interval;
36 extern ConfigVariableInt scene_graph_analyzer_meter_layer_sort;
37 extern ConfigVariableDouble scene_graph_analyzer_meter_scale;
38 extern ConfigVariableDouble scene_graph_analyzer_meter_side_margins;
39 
40 extern ConfigVariableBool movies_sync_pages;
41 
42 extern ConfigVariableInt pfm_vis_max_vertices;
43 extern ConfigVariableInt pfm_vis_max_indices;
44 
45 extern ConfigVariableDouble ae_undershift_factor_16;
46 extern ConfigVariableDouble ae_undershift_factor_32;
47 
48 extern EXPCL_PANDA_GRUTIL void init_libgrutil();
49 
50 #endif
51 
52 
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a floating-point type.
This is a convenience class to specialize ConfigVariable as a string type.
This is a convenience class to specialize ConfigVariable as an integer type.