mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
54 lines
1.7 KiB
C
54 lines
1.7 KiB
C
// Filename: config_pstats.h
|
|
// Created by: drose (09Jul00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CONFIG_PSTATS_H
|
|
#define CONFIG_PSTATS_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "notifyCategoryProxy.h"
|
|
#include "dconfig.h"
|
|
#include "configVariableString.h"
|
|
#include "configVariableInt.h"
|
|
#include "configVariableDouble.h"
|
|
#include "configVariableBool.h"
|
|
|
|
// Configure variables for pstats package.
|
|
|
|
ConfigureDecl(config_pstats, EXPCL_PANDA, EXPTP_PANDA);
|
|
NotifyCategoryDecl(pstats, EXPCL_PANDA, EXPTP_PANDA);
|
|
|
|
extern EXPCL_PANDA ConfigVariableString pstats_name;
|
|
extern EXPCL_PANDA ConfigVariableDouble pstats_max_rate;
|
|
extern EXPCL_PANDA ConfigVariableBool pstats_threaded_write;
|
|
extern EXPCL_PANDA ConfigVariableDouble pstats_tcp_ratio;
|
|
|
|
extern EXPCL_PANDA ConfigVariableString pstats_host;
|
|
extern EXPCL_PANDA ConfigVariableInt pstats_port;
|
|
extern EXPCL_PANDA ConfigVariableDouble pstats_target_frame_rate;
|
|
|
|
extern EXPCL_PANDA ConfigVariableBool pstats_scroll_mode;
|
|
extern EXPCL_PANDA ConfigVariableDouble pstats_history;
|
|
extern EXPCL_PANDA ConfigVariableDouble pstats_average_time;
|
|
|
|
extern EXPCL_PANDA ConfigVariableBool pstats_mem_other;
|
|
|
|
extern EXPCL_PANDA void init_libpstatclient();
|
|
|
|
#endif
|