diff options
author | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
commit | b2afb8800bb033a04bb3ecdf0363068d56648ef1 (patch) | |
tree | 3568129b5bbddb47cd39d622b4137a8fbff4abaf /linden/indra/newview/viewer.h | |
parent | Second Life viewer sources 1.14.0.1 (diff) | |
download | meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.zip meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.gz meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.bz2 meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.xz |
Second Life viewer sources 1.15.0.2
Diffstat (limited to 'linden/indra/newview/viewer.h')
-rw-r--r-- | linden/indra/newview/viewer.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/linden/indra/newview/viewer.h b/linden/indra/newview/viewer.h index 125b0ec..f082e99 100644 --- a/linden/indra/newview/viewer.h +++ b/linden/indra/newview/viewer.h | |||
@@ -4,6 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (c) 2000-2007, Linden Research, Inc. | 5 | * Copyright (c) 2000-2007, Linden Research, Inc. |
6 | * | 6 | * |
7 | * Second Life Viewer Source Code | ||
7 | * The source code in this file ("Source Code") is provided by Linden Lab | 8 | * The source code in this file ("Source Code") is provided by Linden Lab |
8 | * to you under the terms of the GNU General Public License, version 2.0 | 9 | * to you under the terms of the GNU General Public License, version 2.0 |
9 | * ("GPL"), unless you have obtained a separate licensing agreement | 10 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -64,6 +65,8 @@ class LLPieMenu; | |||
64 | class LLWorkerThread; | 65 | class LLWorkerThread; |
65 | class LLTextureFetch; | 66 | class LLTextureFetch; |
66 | class LLTextureCache; | 67 | class LLTextureCache; |
68 | class LLPumpIO; | ||
69 | class LLHTTPNode; | ||
67 | 70 | ||
68 | // | 71 | // |
69 | // Global Variables | 72 | // Global Variables |
@@ -83,11 +86,11 @@ extern LLString gCmdLineFirstName; | |||
83 | extern LLString gCmdLineLastName; | 86 | extern LLString gCmdLineLastName; |
84 | extern LLString gCmdLinePassword; | 87 | extern LLString gCmdLinePassword; |
85 | extern BOOL gAutoLogin; | 88 | extern BOOL gAutoLogin; |
86 | extern LLUUID gTemplateToken; | ||
87 | extern U32 gFrameCount; | 89 | extern U32 gFrameCount; |
88 | extern BOOL gRequestInventoryLibrary; | 90 | extern BOOL gRequestInventoryLibrary; |
89 | extern BOOL gAcceptTOS; | 91 | extern BOOL gAcceptTOS; |
90 | extern BOOL gAcceptCriticalMessage; | 92 | extern BOOL gAcceptCriticalMessage; |
93 | extern std::string gChannelName; | ||
91 | extern LLUUID gInventoryLibraryOwner; | 94 | extern LLUUID gInventoryLibraryOwner; |
92 | extern LLUUID gInventoryLibraryRoot; | 95 | extern LLUUID gInventoryLibraryRoot; |
93 | extern BOOL gLastExecFroze; | 96 | extern BOOL gLastExecFroze; |
@@ -115,6 +118,9 @@ extern U32 gSecondsPerYear; | |||
115 | // currently in daylight savings time? | 118 | // currently in daylight savings time? |
116 | extern BOOL gPacificDaylightTime; | 119 | extern BOOL gPacificDaylightTime; |
117 | 120 | ||
121 | extern LLVector3 gWindVec; | ||
122 | extern LLVector3 gRelativeWindVec; | ||
123 | |||
118 | extern U64 gFrameTime; // The timestamp of the most-recently-processed frame | 124 | extern U64 gFrameTime; // The timestamp of the most-recently-processed frame |
119 | extern F32 gFrameTimeSeconds; // Loses msec precision after ~4.5 hours... | 125 | extern F32 gFrameTimeSeconds; // Loses msec precision after ~4.5 hours... |
120 | extern F32 gFrameIntervalSeconds; // Elapsed time between current and previous gFrameTimeSeconds | 126 | extern F32 gFrameIntervalSeconds; // Elapsed time between current and previous gFrameTimeSeconds |
@@ -139,6 +145,8 @@ extern LLFrameTimer gTeleportDisplayTimer; | |||
139 | 145 | ||
140 | extern LLGlobalEconomy *gGlobalEconomy; | 146 | extern LLGlobalEconomy *gGlobalEconomy; |
141 | 147 | ||
148 | extern std::map<S32,LLFrameTimer> gDebugTimers; | ||
149 | |||
142 | // VFS globals - gVFS is for general use | 150 | // VFS globals - gVFS is for general use |
143 | // gStaticVFS is read-only and is shipped w/ the viewer | 151 | // gStaticVFS is read-only and is shipped w/ the viewer |
144 | // it has pre-cache data like the UI .TGAs | 152 | // it has pre-cache data like the UI .TGAs |
@@ -150,6 +158,8 @@ extern LLWorkerThread* gImageDecodeThread; | |||
150 | extern LLTextureFetch* gTextureFetch; | 158 | extern LLTextureFetch* gTextureFetch; |
151 | extern LLTextureCache* gTextureCache; | 159 | extern LLTextureCache* gTextureCache; |
152 | 160 | ||
161 | extern LLPumpIO* gServicePump; | ||
162 | |||
153 | class LLURLSimString | 163 | class LLURLSimString |
154 | { | 164 | { |
155 | public: | 165 | public: |