50 lines
1.6 KiB
C
50 lines
1.6 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file config_grutil.h
|
||
|
* @author drose
|
||
|
* @date 2000-05-24
|
||
|
*/
|
||
|
|
||
|
#ifndef CONFIG_GRUTIL_H
|
||
|
#define CONFIG_GRUTIL_H
|
||
|
|
||
|
#include "pandabase.h"
|
||
|
#include "notifyCategoryProxy.h"
|
||
|
#include "configVariableDouble.h"
|
||
|
#include "configVariableString.h"
|
||
|
#include "configVariableInt.h"
|
||
|
#include "configVariableBool.h"
|
||
|
|
||
|
NotifyCategoryDecl(grutil, EXPCL_PANDA_GRUTIL, EXPTP_PANDA_GRUTIL);
|
||
|
|
||
|
extern ConfigVariableBool frame_rate_meter_milliseconds;
|
||
|
extern ConfigVariableDouble frame_rate_meter_update_interval;
|
||
|
extern ConfigVariableString frame_rate_meter_text_pattern;
|
||
|
extern ConfigVariableString frame_rate_meter_ms_text_pattern;
|
||
|
extern ConfigVariableInt frame_rate_meter_layer_sort;
|
||
|
extern ConfigVariableDouble frame_rate_meter_scale;
|
||
|
extern ConfigVariableDouble frame_rate_meter_side_margins;
|
||
|
|
||
|
extern ConfigVariableDouble scene_graph_analyzer_meter_update_interval;
|
||
|
extern ConfigVariableInt scene_graph_analyzer_meter_layer_sort;
|
||
|
extern ConfigVariableDouble scene_graph_analyzer_meter_scale;
|
||
|
extern ConfigVariableDouble scene_graph_analyzer_meter_side_margins;
|
||
|
|
||
|
extern ConfigVariableBool movies_sync_pages;
|
||
|
|
||
|
extern ConfigVariableInt pfm_vis_max_vertices;
|
||
|
extern ConfigVariableInt pfm_vis_max_indices;
|
||
|
|
||
|
extern ConfigVariableDouble ae_undershift_factor_16;
|
||
|
extern ConfigVariableDouble ae_undershift_factor_32;
|
||
|
|
||
|
extern EXPCL_PANDA_GRUTIL void init_libgrutil();
|
||
|
|
||
|
#endif
|