diff options
| author | Erik Kundiman <erik@megapahit.org> | 2024-09-16 22:43:16 +0800 | 
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2024-09-16 22:43:16 +0800 | 
| commit | 05f6b6c827b4eebbb180483579b7c13ebc156072 (patch) | |
| tree | 9aca21e647860cba26275b0b9f75d7f9ca18889e | |
| parent | 0318718c166d0f6f0b3c387163826924b20fd597 (diff) | |
| parent | 6bb3e64acab73e92de2627ddef0b1e738ff24c4a (diff) | |
Merge branch 'main' into 2024.08-DeltaFPS
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | indra/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | indra/cmake/WebRTC.cmake | 34 | ||||
| -rw-r--r-- | indra/llwebrtc/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | indra/llwebrtc/llwebrtc.cpp | 2 | ||||
| -rw-r--r-- | indra/llwebrtc/llwebrtc_impl.h | 13 | ||||
| -rw-r--r-- | indra/newview/CMakeLists.txt | 8 | ||||
| -rw-r--r-- | indra/newview/llvoiceclient.cpp | 82 | ||||
| -rw-r--r-- | indra/newview/skins/default/textures/textures.xml | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/textures/windows/Window_Background.png | bin | 8603 -> 6780 bytes | |||
| -rw-r--r-- | indra/newview/skins/default/textures/windows/Window_Foreground.png | bin | 9175 -> 6900 bytes | |||
| -rw-r--r-- | indra/newview/skins/default/textures/windows/Window_NoTitle_Background.png | bin | 7451 -> 0 bytes | |||
| -rw-r--r-- | indra/newview/skins/default/textures/windows/Window_NoTitle_Foreground.png | bin | 8707 -> 0 bytes | 
13 files changed, 81 insertions, 74 deletions
| @@ -85,7 +85,7 @@ $ megapahit  ### OpenSUSE Tumbleweed  ``` -$ sudo zypper install gcc-c++ patchelf apr-util-devel boost-devel libboost_url1_85_0-devel expat-devel fltk-devel glu-devel hunspell-devel libnghttp2-devel nanosvg-devel openjpeg2-devel pipewire-devel libpulse-devel SDL2-devel uriparser-devel vlc-devel libvorbis-devel xxhash-devel minizip-ng-devel zlib-ng-devel +$ sudo zypper install gcc-c++ patchelf apr-util-devel boost-devel libboost_url1_85_0-devel libboost_program_options-devel expat-devel fltk-devel glu-devel hunspell-devel libnghttp2-devel nanosvg-devel openjpeg2-devel pipewire-devel libpulse-devel SDL2-devel uriparser-devel vlc-devel libvorbis-devel xxhash-devel minizip-devel zlib-ng-devel pcre-devel  $ export LL_BUILD="-O3 -std=c++17 -fPIC -DLL_LINUX=1"  $ cmake -DCMAKE_BUILD_TYPE:STRING=Release -DADDRESS_SIZE:INTERNAL=64 -DUSESYSTEMLIBS:BOOL=ON -DUSE_OPENAL:BOOL=ON -DLL_TESTS:BOOL=OFF -DNDOF:BOOL=ON -DROOT_PROJECT_NAME:STRING=Megapahit -DVIEWER_CHANNEL:STRING=Megapahit -DVIEWER_BINARY_NAME:STRING=megapahit -DBUILD_SHARED_LIBS:BOOL=OFF -DINSTALL:BOOL=ON -DPACKAGE:BOOL=ON ../indra  $ make -j`nproc` diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index e47b70f201..25570470db 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -58,9 +58,9 @@ add_subdirectory(${LIBS_OPEN_PREFIX}llmessage)  add_subdirectory(${LIBS_OPEN_PREFIX}llprimitive)  add_subdirectory(${LIBS_OPEN_PREFIX}llrender)  add_subdirectory(${LIBS_OPEN_PREFIX}llfilesystem) -if (NOT (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)) +if (NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD)  add_subdirectory(${LIBS_OPEN_PREFIX}llwebrtc) -endif (NOT (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)) +endif (NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD)  add_subdirectory(${LIBS_OPEN_PREFIX}llwindow)  add_subdirectory(${LIBS_OPEN_PREFIX}llxml) diff --git a/indra/cmake/WebRTC.cmake b/indra/cmake/WebRTC.cmake index 92d9d135c6..be51957794 100644 --- a/indra/cmake/WebRTC.cmake +++ b/indra/cmake/WebRTC.cmake @@ -6,17 +6,23 @@ include_guard()  add_library( ll::webrtc INTERFACE IMPORTED )  target_include_directories( ll::webrtc SYSTEM INTERFACE "${LIBS_PREBUILT_DIR}/include/webrtc" "${LIBS_PREBUILT_DIR}/include/webrtc/third_party/abseil-cpp") -if (CMAKE_OSX_ARCHITECTURES MATCHES arm64) +if (CMAKE_OSX_ARCHITECTURES MATCHES arm64 OR (${LINUX_DISTRO} MATCHES fedora) OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed)) +    target_compile_definitions(ll::webrtc INTERFACE CM_WEBRTC=1)      if (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/webrtc_installed OR NOT ${webrtc_installed} EQUAL 0) -        if (NOT EXISTS ${CMAKE_BINARY_DIR}/libwebrtc-macos-arm64.tar.xz) +        if (LINUX) +          set(WEBRTC_PLATFORM linux-x64) +        else (LINUX) +          set(WEBRTC_PLATFORM macos-arm64) +        endif (LINUX) +        if (NOT EXISTS ${CMAKE_BINARY_DIR}/libwebrtc-${WEBRTC_PLATFORM}.tar.xz)              file(DOWNLOAD -                https://github.com/crow-misia/libwebrtc-bin/releases/download/114.5735.6.1/libwebrtc-macos-arm64.tar.xz -                ${CMAKE_BINARY_DIR}/libwebrtc-macos-arm64.tar.xz +                https://github.com/crow-misia/libwebrtc-bin/releases/download/114.5735.6.1/libwebrtc-${WEBRTC_PLATFORM}.tar.xz +                ${CMAKE_BINARY_DIR}/libwebrtc-${WEBRTC_PLATFORM}.tar.xz                  SHOW_PROGRESS                  ) -        endif (NOT EXISTS ${CMAKE_BINARY_DIR}/libwebrtc-macos-arm64.tar.xz) +        endif (NOT EXISTS ${CMAKE_BINARY_DIR}/libwebrtc-${WEBRTC_PLATFORM}.tar.xz)          file(ARCHIVE_EXTRACT -            INPUT ${CMAKE_BINARY_DIR}/libwebrtc-macos-arm64.tar.xz +            INPUT ${CMAKE_BINARY_DIR}/libwebrtc-${WEBRTC_PLATFORM}.tar.xz              DESTINATION ${LIBS_PREBUILT_DIR}              )          file(REMOVE_RECURSE ${LIBS_PREBUILT_DIR}/include/webrtc) @@ -57,17 +63,19 @@ if (CMAKE_OSX_ARCHITECTURES MATCHES arm64)            ${LIBS_PREBUILT_DIR}/lib/libwebrtc.a            ${LIBS_PREBUILT_DIR}/lib/release/libwebrtc.a            ) -        file(REMOVE_RECURSE ${LIBS_PREBUILT_DIR}/lib/release/WebRTC.framework) -        file(RENAME -          ${LIBS_PREBUILT_DIR}/Frameworks/WebRTC.xcframework/macos-arm64/WebRTC.framework -          ${LIBS_PREBUILT_DIR}/lib/release/WebRTC.framework -          ) -        file(REMOVE_RECURSE ${LIBS_PREBUILT_DIR}/Frameworks) +        if (CMAKE_OSX_ARCHITECTURES MATCHES arm64) +          file(REMOVE_RECURSE ${LIBS_PREBUILT_DIR}/lib/release/WebRTC.framework) +          file(RENAME +            ${LIBS_PREBUILT_DIR}/Frameworks/WebRTC.xcframework/${WEBRTC_PLATFORM}/WebRTC.framework +            ${LIBS_PREBUILT_DIR}/lib/release/WebRTC.framework +            ) +          file(REMOVE_RECURSE ${LIBS_PREBUILT_DIR}/Frameworks) +        endif (CMAKE_OSX_ARCHITECTURES MATCHES arm64)          file(WRITE ${PREBUILD_TRACKING_DIR}/webrtc_installed "0")      endif (${PREBUILD_TRACKING_DIR}/sentinel_installed IS_NEWER_THAN ${PREBUILD_TRACKING_DIR}/webrtc_installed OR NOT ${webrtc_installed} EQUAL 0)  elseif (NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD)  use_prebuilt_binary(webrtc) -endif (CMAKE_OSX_ARCHITECTURES MATCHES arm64) +endif (CMAKE_OSX_ARCHITECTURES MATCHES arm64 OR (${LINUX_DISTRO} MATCHES fedora) OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed))  if (WINDOWS)      target_link_libraries( ll::webrtc INTERFACE webrtc.lib ) diff --git a/indra/llwebrtc/CMakeLists.txt b/indra/llwebrtc/CMakeLists.txt index 21ce222aea..9f050daa77 100644 --- a/indra/llwebrtc/CMakeLists.txt +++ b/indra/llwebrtc/CMakeLists.txt @@ -28,11 +28,9 @@ list(APPEND llwebrtc_SOURCE_FILES ${llwebrtc_HEADER_FILES})  add_library (llwebrtc SHARED ${llwebrtc_SOURCE_FILES}) -if (USESYSTEMLIBS) -target_compile_definitions(llwebrtc INTERFACE LL_WEBRTC=1) -else (USESYSTEMLIBS) +if (NOT USESYSTEMLIBS)  set_target_properties(llwebrtc PROPERTIES PUBLIC_HEADER llwebrtc.h) -endif (USESYSTEMLIBS) +endif (NOT USESYSTEMLIBS)  if (WINDOWS)      cmake_policy(SET CMP0091 NEW) diff --git a/indra/llwebrtc/llwebrtc.cpp b/indra/llwebrtc/llwebrtc.cpp index 83350dd457..9b3dde4d0f 100644 --- a/indra/llwebrtc/llwebrtc.cpp +++ b/indra/llwebrtc/llwebrtc.cpp @@ -203,7 +203,7 @@ void LLWebRTCImpl::init()              mTuningDeviceModule->SetPlayoutDevice(mPlayoutDevice);              mTuningDeviceModule->SetRecordingDevice(mRecordingDevice);              mTuningDeviceModule->EnableBuiltInAEC(false); -#if __x86_64__ && !__FreeBSD__ +#if !CM_WEBRTC              mTuningDeviceModule->SetAudioDeviceSink(this);  #endif              mTuningDeviceModule->InitMicrophone(); diff --git a/indra/llwebrtc/llwebrtc_impl.h b/indra/llwebrtc/llwebrtc_impl.h index 6e74acf082..99accb2c20 100644 --- a/indra/llwebrtc/llwebrtc_impl.h +++ b/indra/llwebrtc/llwebrtc_impl.h @@ -184,9 +184,10 @@ class LLCustomProcessor : public webrtc::CustomProcessing  // Primary singleton implementation for interfacing  // with the native webrtc library. +#if CM_WEBRTC  class LLWebRTCImpl : public LLWebRTCDeviceInterface -#if __x86_64__ && !__FreeBSD__ -    , public webrtc::AudioDeviceSink +#else +class LLWebRTCImpl : public LLWebRTCDeviceInterface, public webrtc::AudioDeviceSink  #endif  {    public: @@ -222,11 +223,11 @@ class LLWebRTCImpl : public LLWebRTCDeviceInterface      //      // AudioDeviceSink      // -    void OnDevicesUpdated() -#if __x86_64__ && !__FreeBSD__ -            override +#if CM_WEBRTC +    void OnDevicesUpdated(); +#else +    void OnDevicesUpdated() override;  #endif -            ;      //      // Helpers diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 768632e979..23c7da64bf 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -743,9 +743,9 @@ set(viewer_SOURCE_FILES      pipeline.cpp      ) -if (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR CMAKE_SYSTEM_NAME MATCHES FreeBSD) +if (CMAKE_SYSTEM_NAME MATCHES FreeBSD)      list(REMOVE_ITEM viewer_SOURCE_FILES llvoicewebrtc.cpp) -endif (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR CMAKE_SYSTEM_NAME MATCHES FreeBSD) +endif (CMAKE_SYSTEM_NAME MATCHES FreeBSD)  set(VIEWER_BINARY_NAME "secondlife-bin" CACHE STRING      "The name of the viewer executable to create.") @@ -1955,9 +1955,9 @@ target_link_libraries(${VIEWER_BINARY_NAME}          ll::tracy          ) -if (NOT (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)) +if (NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD)     target_link_libraries(${VIEWER_BINARY_NAME} llwebrtc ) -endif (NOT (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR CMAKE_SYSTEM_NAME MATCHES FreeBSD)) +endif (NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD)  if (ENABLE_MEDIA_PLUGINS)     target_link_libraries(${VIEWER_BINARY_NAME} ll::libvlc ) diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp index f293c4c417..62d092e523 100644 --- a/indra/newview/llvoiceclient.cpp +++ b/indra/newview/llvoiceclient.cpp @@ -26,7 +26,7 @@  #include "llvoiceclient.h"  #include "llvoicevivox.h" -#if LL_WEBRTC +#if !__FreeBSD__  #include "llvoicewebrtc.h"  #endif  #include "llviewernetwork.h" @@ -122,7 +122,7 @@ LLVoiceModuleInterface *getVoiceModule(const std::string &voice_server_type)      {          return (LLVoiceModuleInterface *) LLVivoxVoiceClient::getInstance();      } -#if LL_WEBRTC +#if !__FreeBSD__      else if (voice_server_type == WEBRTC_VOICE_SERVER_TYPE)      {          return (LLVoiceModuleInterface *) LLWebRTCVoiceClient::getInstance(); @@ -169,7 +169,7 @@ void LLVoiceClient::init(LLPumpIO *pump)  {      // Initialize all of the voice modules      m_servicePump = pump; -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->init(pump);  #endif      LLVivoxVoiceClient::getInstance()->init(pump); @@ -178,7 +178,7 @@ void LLVoiceClient::init(LLPumpIO *pump)  void LLVoiceClient::userAuthorized(const std::string& user_id, const LLUUID &agentID)  {      gAgent.addRegionChangedCallback(boost::bind(&LLVoiceClient::onRegionChanged, this)); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->userAuthorized(user_id, agentID);  #endif      LLVivoxVoiceClient::getInstance()->userAuthorized(user_id, agentID); @@ -289,7 +289,7 @@ void LLVoiceClient::setNonSpatialVoiceModule(const std::string &voice_server_typ  void LLVoiceClient::setHidden(bool hidden)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setHidden(hidden);  #endif      LLVivoxVoiceClient::getInstance()->setHidden(hidden); @@ -332,7 +332,7 @@ void LLVoiceClient::updateSettings()      updateMicMuteLogic(); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->updateSettings();  #endif      LLVivoxVoiceClient::getInstance()->updateSettings(); @@ -343,7 +343,7 @@ void LLVoiceClient::updateSettings()  void LLVoiceClient::tuningStart()  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->tuningStart();  #endif      LLVivoxVoiceClient::getInstance()->tuningStart(); @@ -351,7 +351,7 @@ void LLVoiceClient::tuningStart()  void LLVoiceClient::tuningStop()  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->tuningStop();  #endif      LLVivoxVoiceClient::getInstance()->tuningStop(); @@ -359,7 +359,7 @@ void LLVoiceClient::tuningStop()  bool LLVoiceClient::inTuningMode()  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->inTuningMode();  #else      return LLVivoxVoiceClient::getInstance()->inTuningMode(); @@ -368,7 +368,7 @@ bool LLVoiceClient::inTuningMode()  void LLVoiceClient::tuningSetMicVolume(float volume)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->tuningSetMicVolume(volume);  #else      LLVivoxVoiceClient::getInstance()->tuningSetMicVolume(volume); @@ -377,7 +377,7 @@ void LLVoiceClient::tuningSetMicVolume(float volume)  void LLVoiceClient::tuningSetSpeakerVolume(float volume)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->tuningSetSpeakerVolume(volume);  #else      LLVivoxVoiceClient::getInstance()->tuningSetSpeakerVolume(volume); @@ -386,7 +386,7 @@ void LLVoiceClient::tuningSetSpeakerVolume(float volume)  float LLVoiceClient::tuningGetEnergy(void)  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->tuningGetEnergy();  #else      return LLVivoxVoiceClient::getInstance()->tuningGetEnergy(); @@ -398,7 +398,7 @@ float LLVoiceClient::tuningGetEnergy(void)  bool LLVoiceClient::deviceSettingsAvailable()  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->deviceSettingsAvailable();  #else      return LLVivoxVoiceClient::getInstance()->deviceSettingsAvailable(); @@ -407,7 +407,7 @@ bool LLVoiceClient::deviceSettingsAvailable()  bool LLVoiceClient::deviceSettingsUpdated()  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->deviceSettingsUpdated();  #else      return LLVivoxVoiceClient::getInstance()->deviceSettingsUpdated(); @@ -416,7 +416,7 @@ bool LLVoiceClient::deviceSettingsUpdated()  void LLVoiceClient::refreshDeviceLists(bool clearCurrentList)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->refreshDeviceLists(clearCurrentList);  #else      LLVivoxVoiceClient::getInstance()->refreshDeviceLists(clearCurrentList); @@ -426,7 +426,7 @@ void LLVoiceClient::refreshDeviceLists(bool clearCurrentList)  void LLVoiceClient::setCaptureDevice(const std::string& name)  {      LLVivoxVoiceClient::getInstance()->setCaptureDevice(name); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setCaptureDevice(name);  #endif  } @@ -434,14 +434,14 @@ void LLVoiceClient::setCaptureDevice(const std::string& name)  void LLVoiceClient::setRenderDevice(const std::string& name)  {      LLVivoxVoiceClient::getInstance()->setRenderDevice(name); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setRenderDevice(name);  #endif  }  const LLVoiceDeviceList& LLVoiceClient::getCaptureDevices()  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->getCaptureDevices();  #else      return LLVivoxVoiceClient::getInstance()->getCaptureDevices(); @@ -451,7 +451,7 @@ const LLVoiceDeviceList& LLVoiceClient::getCaptureDevices()  const LLVoiceDeviceList& LLVoiceClient::getRenderDevices()  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->getRenderDevices();  #else      return LLVivoxVoiceClient::getInstance()->getRenderDevices(); @@ -464,7 +464,7 @@ const LLVoiceDeviceList& LLVoiceClient::getRenderDevices()  void LLVoiceClient::getParticipantList(std::set<LLUUID> &participants) const  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->getParticipantList(participants);  #endif      LLVivoxVoiceClient::getInstance()->getParticipantList(participants); @@ -472,7 +472,7 @@ void LLVoiceClient::getParticipantList(std::set<LLUUID> &participants) const  bool LLVoiceClient::isParticipant(const LLUUID &speaker_id) const  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->isParticipant(speaker_id) ||  #else      return @@ -569,7 +569,7 @@ void LLVoiceClient::activateSpatialChannel(bool activate)  bool LLVoiceClient::isCurrentChannel(const LLSD& channelInfo)  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->isCurrentChannel(channelInfo) ||  #else      return @@ -579,7 +579,7 @@ bool LLVoiceClient::isCurrentChannel(const LLSD& channelInfo)  bool LLVoiceClient::compareChannels(const LLSD &channelInfo1, const LLSD &channelInfo2)  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->compareChannels(channelInfo1, channelInfo2) ||  #else      return @@ -625,7 +625,7 @@ LLVoiceP2POutgoingCallInterface *LLVoiceClient::getOutgoingCallInterface(const L  void LLVoiceClient::setVoiceVolume(F32 volume)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setVoiceVolume(volume);  #endif      LLVivoxVoiceClient::getInstance()->setVoiceVolume(volume); @@ -633,7 +633,7 @@ void LLVoiceClient::setVoiceVolume(F32 volume)  void LLVoiceClient::setMicGain(F32 gain)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setMicGain(gain);  #endif      LLVivoxVoiceClient::getInstance()->setMicGain(gain); @@ -682,7 +682,7 @@ bool LLVoiceClient::voiceEnabled()  void LLVoiceClient::setVoiceEnabled(bool enabled)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setVoiceEnabled(enabled);  #endif      LLVivoxVoiceClient::getInstance()->setVoiceEnabled(enabled); @@ -704,7 +704,7 @@ void LLVoiceClient::updateMicMuteLogic()          // Either of these always overrides any other PTT setting.          new_mic_mute = true;      } -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setMuteMic(new_mic_mute);  #endif      LLVivoxVoiceClient::getInstance()->setMuteMic(new_mic_mute); @@ -801,7 +801,7 @@ bool LLVoiceClient::getVoiceEnabled(const LLUUID& id) const  std::string LLVoiceClient::getDisplayName(const LLUUID& id) const  { -#if LL_WEBRTC +#if !__FreeBSD__      std::string result = LLWebRTCVoiceClient::getInstance()->getDisplayName(id);      if (result.empty())      { @@ -815,7 +815,7 @@ std::string LLVoiceClient::getDisplayName(const LLUUID& id) const  bool LLVoiceClient::isVoiceWorking() const  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLVivoxVoiceClient::getInstance()->isVoiceWorking() ||             LLWebRTCVoiceClient::getInstance()->isVoiceWorking();  #else @@ -835,7 +835,7 @@ bool LLVoiceClient::isOnlineSIP(const LLUUID& id)  bool LLVoiceClient::getIsSpeaking(const LLUUID& id)  { -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->getIsSpeaking(id) ||  #else      return @@ -847,7 +847,7 @@ bool LLVoiceClient::getIsModeratorMuted(const LLUUID& id)  {      // don't bother worrying about p2p calls, as      // p2p calls don't have mute. -#if LL_WEBRTC +#if !__FreeBSD__      return LLWebRTCVoiceClient::getInstance()->getIsModeratorMuted(id) ||  #else      return @@ -857,7 +857,7 @@ bool LLVoiceClient::getIsModeratorMuted(const LLUUID& id)  F32 LLVoiceClient::getCurrentPower(const LLUUID& id)  { -#if LL_WEBRTC +#if !__FreeBSD__      return std::fmax(LLVivoxVoiceClient::getInstance()->getCurrentPower(id),                       LLWebRTCVoiceClient::getInstance()->getCurrentPower(id));  #else @@ -874,7 +874,7 @@ bool LLVoiceClient::getOnMuteList(const LLUUID& id)  F32 LLVoiceClient::getUserVolume(const LLUUID& id)  { -#if LL_WEBRTC +#if !__FreeBSD__      return std::fmax(LLVivoxVoiceClient::getInstance()->getUserVolume(id), LLWebRTCVoiceClient::getInstance()->getUserVolume(id));  #else      return LLVivoxVoiceClient::getInstance()->getUserVolume(id); @@ -883,7 +883,7 @@ F32 LLVoiceClient::getUserVolume(const LLUUID& id)  void LLVoiceClient::setUserVolume(const LLUUID& id, F32 volume)  { -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->setUserVolume(id, volume);  #endif      LLVivoxVoiceClient::getInstance()->setUserVolume(id, volume); @@ -895,7 +895,7 @@ void LLVoiceClient::setUserVolume(const LLUUID& id, F32 volume)  void LLVoiceClient::addObserver(LLVoiceClientStatusObserver* observer)  {      LLVivoxVoiceClient::getInstance()->addObserver(observer); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->addObserver(observer);  #endif  } @@ -906,7 +906,7 @@ void LLVoiceClient::removeObserver(LLVoiceClientStatusObserver* observer)      {          LLVivoxVoiceClient::getInstance()->removeObserver(observer);      } -#if LL_WEBRTC +#if !__FreeBSD__      if (LLWebRTCVoiceClient::instanceExists())      {          LLWebRTCVoiceClient::getInstance()->removeObserver(observer); @@ -917,7 +917,7 @@ void LLVoiceClient::removeObserver(LLVoiceClientStatusObserver* observer)  void LLVoiceClient::addObserver(LLFriendObserver* observer)  {      LLVivoxVoiceClient::getInstance()->addObserver(observer); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->addObserver(observer);  #endif  } @@ -928,7 +928,7 @@ void LLVoiceClient::removeObserver(LLFriendObserver* observer)      {          LLVivoxVoiceClient::getInstance()->removeObserver(observer);      } -#if LL_WEBRTC +#if !__FreeBSD__      if (LLWebRTCVoiceClient::instanceExists())      {          LLWebRTCVoiceClient::getInstance()->removeObserver(observer); @@ -939,7 +939,7 @@ void LLVoiceClient::removeObserver(LLFriendObserver* observer)  void LLVoiceClient::addObserver(LLVoiceClientParticipantObserver* observer)  {      LLVivoxVoiceClient::getInstance()->addObserver(observer); -#if LL_WEBRTC +#if !__FreeBSD__      LLWebRTCVoiceClient::getInstance()->addObserver(observer);  #endif  } @@ -950,7 +950,7 @@ void LLVoiceClient::removeObserver(LLVoiceClientParticipantObserver* observer)      {          LLVivoxVoiceClient::getInstance()->removeObserver(observer);      } -#if LL_WEBRTC +#if !__FreeBSD__      if (LLWebRTCVoiceClient::instanceExists())      {          LLWebRTCVoiceClient::getInstance()->removeObserver(observer); @@ -1018,7 +1018,7 @@ class LLViewerRequiredVoiceVersion : public LLHTTPNode          {              voiceModule = (LLVoiceModuleInterface *) LLVivoxVoiceClient::getInstance();          } -#if LL_WEBRTC +#if !__FreeBSD__          else if (voice_server_type == "webrtc")          {              voiceModule = (LLVoiceModuleInterface *) LLWebRTCVoiceClient::getInstance(); diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml index b0b7dd51e2..11eafcb45d 100644 --- a/indra/newview/skins/default/textures/textures.xml +++ b/indra/newview/skins/default/textures/textures.xml @@ -780,9 +780,9 @@ with the same filename but different name             scale.left="4" scale.top="24" scale.right="26" scale.bottom="4" />    <texture name="Window_Foreground" file_name="windows/Window_Foreground.png" preload="true"             scale.left="4" scale.top="24" scale.right="26" scale.bottom="4" /> -  <texture name="Window_NoTitle_Background" file_name="windows/Window_NoTitle_Background.png" preload="true" +  <texture name="Window_NoTitle_Background" file_name="windows/Window_Background.png" preload="true"             scale.left="4" scale.top="24" scale.right="26" scale.bottom="4" /> -  <texture name="Window_NoTitle_Foreground" file_name="windows/Window_NoTitle_Foreground.png" preload="true" +  <texture name="Window_NoTitle_Foreground" file_name="windows/Window_Foreground.png" preload="true"             scale.left="4" scale.top="24" scale.right="26" scale.bottom="4" />    <texture name="YouAreHere_Badge" file_name="icons/YouAreHere_Badge.png" preload="false" /> diff --git a/indra/newview/skins/default/textures/windows/Window_Background.png b/indra/newview/skins/default/textures/windows/Window_Background.pngBinary files differ index 21149351c8..f19fb0300b 100644 --- a/indra/newview/skins/default/textures/windows/Window_Background.png +++ b/indra/newview/skins/default/textures/windows/Window_Background.png diff --git a/indra/newview/skins/default/textures/windows/Window_Foreground.png b/indra/newview/skins/default/textures/windows/Window_Foreground.pngBinary files differ index 4a64fd468a..15d2ff72b6 100644 --- a/indra/newview/skins/default/textures/windows/Window_Foreground.png +++ b/indra/newview/skins/default/textures/windows/Window_Foreground.png diff --git a/indra/newview/skins/default/textures/windows/Window_NoTitle_Background.png b/indra/newview/skins/default/textures/windows/Window_NoTitle_Background.pngBinary files differ deleted file mode 100644 index 64afa47b7c..0000000000 --- a/indra/newview/skins/default/textures/windows/Window_NoTitle_Background.png +++ /dev/null diff --git a/indra/newview/skins/default/textures/windows/Window_NoTitle_Foreground.png b/indra/newview/skins/default/textures/windows/Window_NoTitle_Foreground.pngBinary files differ deleted file mode 100644 index c883197d8b..0000000000 --- a/indra/newview/skins/default/textures/windows/Window_NoTitle_Foreground.png +++ /dev/null | 
