mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 08:44:19 -04:00
pstatclient: Rename config_pstats to config_pstatclient
This commit is contained in:
parent
6175e79c57
commit
87c11d8018
@ -2322,8 +2322,8 @@
|
||||
<File RelativePath="..\panda\src\pstatclient\pStatCollectorForward.h"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\pStatClientControlMessage.h"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\pStatServerControlMessage.h"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\config_pstats.h"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\config_pstats.cxx"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\config_pstatclient.h"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\config_pstatclient.cxx"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\pStatClient.cxx"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\pStatFrameData.I"></File>
|
||||
<File RelativePath="..\panda\src\pstatclient\test_client.cxx"></File>
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "config_display.h"
|
||||
#include "config_pgraph.h"
|
||||
#ifdef DO_PSTATS
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#endif
|
||||
|
||||
// By including checkPandaVersion.h, we guarantee that runtime attempts to
|
||||
|
@ -58,7 +58,7 @@
|
||||
#include "colorScaleAttrib.h"
|
||||
#include "clipPlaneAttrib.h"
|
||||
#include "fogAttrib.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <limits.h>
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "pandabase.h"
|
||||
#include "pStatTimer.h"
|
||||
#include "pStatCollector.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "timerQueryContext.h"
|
||||
|
||||
class Thread;
|
||||
|
@ -6,12 +6,12 @@
|
||||
* license. You should have received a copy of this license along
|
||||
* with this source code in a file named "LICENSE."
|
||||
*
|
||||
* @file config_pstats.cxx
|
||||
* @file config_pstatclient.cxx
|
||||
* @author drose
|
||||
* @date 2000-07-09
|
||||
*/
|
||||
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include "dconfig.h"
|
||||
|
||||
@ -19,10 +19,10 @@
|
||||
#error Buildsystem error: BUILDING_PANDA_PSTATCLIENT not defined
|
||||
#endif
|
||||
|
||||
ConfigureDef(config_pstats);
|
||||
ConfigureDef(config_pstatclient);
|
||||
NotifyCategoryDef(pstats, "");
|
||||
|
||||
ConfigureFn(config_pstats) {
|
||||
ConfigureFn(config_pstatclient) {
|
||||
init_libpstatclient();
|
||||
}
|
||||
|
@ -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_pstats.h
|
||||
* @file config_pstatclient.h
|
||||
* @author drose
|
||||
* @date 2000-07-09
|
||||
*/
|
||||
@ -25,7 +25,7 @@
|
||||
|
||||
// Configure variables for pstats package.
|
||||
|
||||
ConfigureDecl(config_pstats, EXPCL_PANDA_PSTATCLIENT, EXPTP_PANDA_PSTATCLIENT);
|
||||
ConfigureDecl(config_pstatclient, EXPCL_PANDA_PSTATCLIENT, EXPTP_PANDA_PSTATCLIENT);
|
||||
NotifyCategoryDecl(pstats, EXPCL_PANDA_PSTATCLIENT, EXPTP_PANDA_PSTATCLIENT);
|
||||
|
||||
extern EXPCL_PANDA_PSTATCLIENT ConfigVariableString pstats_name;
|
@ -1,5 +1,5 @@
|
||||
|
||||
#include "config_pstats.cxx"
|
||||
#include "config_pstatclient.cxx"
|
||||
#include "pStatClient.cxx"
|
||||
#include "pStatClientImpl.cxx"
|
||||
#include "pStatClientVersion.cxx"
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "pStatServerControlMessage.h"
|
||||
#include "pStatCollector.h"
|
||||
#include "pStatThread.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "pStatProperties.h"
|
||||
#include "thread.h"
|
||||
#include "clockObject.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @date 2000-07-09
|
||||
*/
|
||||
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "pStatClientControlMessage.h"
|
||||
#include "pStatClientVersion.h"
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "pStatServerControlMessage.h"
|
||||
#include "pStatCollector.h"
|
||||
#include "pStatThread.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "pStatProperties.h"
|
||||
#include "cmath.h"
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
#include "pStatFrameData.h"
|
||||
#include "pStatClientVersion.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include "datagram.h"
|
||||
#include "datagramIterator.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "pStatProperties.h"
|
||||
#include "pStatCollectorDef.h"
|
||||
#include "pStatClient.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "configVariableBool.h"
|
||||
#include "configVariableColor.h"
|
||||
#include "configVariableDouble.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @date 2000-07-09
|
||||
*/
|
||||
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "pStatServerControlMessage.h"
|
||||
|
||||
#include "datagram.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @date 2000-07-09
|
||||
*/
|
||||
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
#include "pStatClient.h"
|
||||
#include "pStatCollector.h"
|
||||
#include "thread.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "pandatoolbase.h"
|
||||
#include "gtkStats.h"
|
||||
#include "gtkStatsServer.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
GtkWidget *main_window;
|
||||
static GtkStatsServer *server = NULL;
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "pStatFrameData.h"
|
||||
#include "pStatCollectorDef.h"
|
||||
#include "string_utils.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include <stdio.h> // for sprintf
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "pStatFrameData.h"
|
||||
#include "pStatCollectorDef.h"
|
||||
#include "string_utils.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "pStatServer.h"
|
||||
#include "pStatReader.h"
|
||||
#include "thread.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include "pStatFrameData.h"
|
||||
#include "pStatCollectorDef.h"
|
||||
#include "string_utils.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
#include "pStatFrameData.h"
|
||||
#include "pStatCollectorDef.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
|
||||
PStatFrameData PStatThreadData::_null_frame;
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "textMonitor.h"
|
||||
|
||||
#include "pStatServer.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include <signal.h>
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "pandatoolbase.h"
|
||||
|
||||
#include "winStatsServer.h"
|
||||
#include "config_pstats.h"
|
||||
#include "config_pstatclient.h"
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user