aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/linux_tools
diff options
context:
space:
mode:
authorJacek Antonelli2009-02-12 02:06:41 -0600
committerJacek Antonelli2009-02-12 02:06:45 -0600
commit61f97b33f9850d21965d397b947a298c16ba576d (patch)
treea2edff0a7fbc83e2259eda952511b0fbdbea290b /linden/indra/newview/linux_tools
parentSecond Life viewer sources 1.22.7-RC (diff)
downloadmeta-impy-61f97b33f9850d21965d397b947a298c16ba576d.zip
meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.gz
meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.bz2
meta-impy-61f97b33f9850d21965d397b947a298c16ba576d.tar.xz
Second Life viewer sources 1.22.8-RC
Diffstat (limited to 'linden/indra/newview/linux_tools')
-rw-r--r--linden/indra/newview/linux_tools/client-readme.txt18
-rwxr-xr-xlinden/indra/newview/linux_tools/wrapper.sh19
2 files changed, 20 insertions, 17 deletions
diff --git a/linden/indra/newview/linux_tools/client-readme.txt b/linden/indra/newview/linux_tools/client-readme.txt
index 179cb9e..fc7994b 100644
--- a/linden/indra/newview/linux_tools/client-readme.txt
+++ b/linden/indra/newview/linux_tools/client-readme.txt
@@ -15,7 +15,7 @@ Life itself - please see <http://www.secondlife.com/whatis/>.
15 5.3. Blank window after minimizing it 15 5.3. Blank window after minimizing it
16 5.4. Audio 16 5.4. Audio
17 5.5. 'Alt' key for camera controls doesn't work 17 5.5. 'Alt' key for camera controls doesn't work
18 5.6. In-world movie playback 18 5.6. In-world streaming movie/music playback
196. Advanced Troubleshooting 196. Advanced Troubleshooting
20 6.1. Audio 20 6.1. Audio
21 6.2. OpenGL 21 6.2. OpenGL
@@ -169,11 +169,11 @@ SOLUTION:- Some window managers eat the Alt key for their own purposes; you
169 example, the 'Windows' key!) which will allow the Alt key to function 169 example, the 'Windows' key!) which will allow the Alt key to function
170 properly with mouse actions in Second Life and other applications. 170 properly with mouse actions in Second Life and other applications.
171 171
172PROBLEM 6:- In-world movie playback doesn't work for me. 172PROBLEM 6:- In-world movie and/or music playback doesn't work for me.
173SOLUTION:- You need to have a working installation of GStreamer 0.10; this 173SOLUTION:- You need to have a working installation of GStreamer 0.10; this
174 is usually an optional package for most versions of Linux. If you have 174 is usually an optional package for most versions of Linux. If you have
175 installed GStreamer 0.10 and you can play some movies but not others then 175 installed GStreamer 0.10 and you can play some music/movies but not others
176 you need to install a wider selection of GStreamer plugins, either 176 then you need to install a wider selection of GStreamer plugins, either
177 from your vendor or an appropriate third party. 177 from your vendor or an appropriate third party.
178 178
179 179
@@ -183,11 +183,11 @@ SOLUTION:- You need to have a working installation of GStreamer 0.10; this
183The 'secondlife' script which launches Second Life contains some 183The 'secondlife' script which launches Second Life contains some
184configuration options for advanced troubleshooters. 184configuration options for advanced troubleshooters.
185 185
186* AUDIO - Edit the 'secondlife' script and you will see three audio 186* AUDIO - Edit the 'secondlife' script and you will see these audio
187 options: LL_BAD_ESD, LL_BAD_OSS, LL_BAD_ALSA. Second Life tries to 187 options: LL_BAD_OPENAL_DRIVER, LL_BAD_FMOD_ESD, LL_BAD_FMOD_OSS, and
188 use ESD, OSS, then ALSA audio drivers in this order; you may uncomment 188 LL_BAD_FMOD_ALSA. Second Life tries to use OpenAL, ESD, OSS, then ALSA
189 the corresponding LL_BAD_* option to skip an audio driver which you 189 audio drivers in this order; you may uncomment the corresponding LL_BAD_*
190 believe may be causing you trouble. 190 option to skip an audio driver which you believe may be causing you trouble.
191 191
192* OPENGL - For advanced troubleshooters, the LL_GL_BLACKLIST option lets 192* OPENGL - For advanced troubleshooters, the LL_GL_BLACKLIST option lets
193 you disable specific GL extensions, each of which is represented by a 193 you disable specific GL extensions, each of which is represented by a
diff --git a/linden/indra/newview/linux_tools/wrapper.sh b/linden/indra/newview/linux_tools/wrapper.sh
index 9d2e06b..d7b17ed 100755
--- a/linden/indra/newview/linux_tools/wrapper.sh
+++ b/linden/indra/newview/linux_tools/wrapper.sh
@@ -4,14 +4,17 @@
4## These options are for self-assisted troubleshooting during this beta 4## These options are for self-assisted troubleshooting during this beta
5## testing phase; you should not usually need to touch them. 5## testing phase; you should not usually need to touch them.
6 6
7## - Avoids using the ESD audio driver. 7## - Avoids using any OpenAL audio driver.
8#export LL_BAD_ESD=x 8#export LL_BAD_OPENAL_DRIVER=x
9 9## - Avoids using any FMOD audio driver.
10## - Avoids using the OSS audio driver. 10#export LL_BAD_FMOD_DRIVER=x
11#export LL_BAD_OSS=x 11
12 12## - Avoids using the FMOD ESD audio driver.
13## - Avoids using the ALSA audio driver. 13#export LL_BAD_FMOD_ESD=x
14#export LL_BAD_ALSA=x 14## - Avoids using the FMOD OSS audio driver.
15#export LL_BAD_FMOD_OSS=x
16## - Avoids using the FMOD ALSA audio driver.
17#export LL_BAD_FMOD_ALSA=x
15 18
16## - Avoids the optional OpenGL extensions which have proven most problematic 19## - Avoids the optional OpenGL extensions which have proven most problematic
17## on some hardware. Disabling this option may cause BETTER PERFORMANCE but 20## on some hardware. Disabling this option may cause BETTER PERFORMANCE but