summaryrefslogtreecommitdiff
path: root/indra
AgeCommit message (Collapse)Author
2025-05-13Like the previous commit, except the oppositeErik Kundiman
cause this one spans a bit far, that we need to set some value in the parentheses as a reminder.
2025-05-13Empty CMake elses & endifs parenthesesErik Kundiman
to make it more flexible the next time a value in the if's parentheses gets changed again, and also to reduce duplicate pattern matches when grepping those CMake files with certain keywords.
2025-05-13Not rely on (LL_)USESYSTEMLIBS macro & CMake settingErik Kundiman
but the fact that we keep on using as many system libraries as we can (and only resort to other sources in certain cases), hasn't changed, of course. Also stop having to set USE_AUTOBUILD_3P to OFF. Lines are reindented, and when a system library can be found for a dependency, then that should be the way. If later we find out that using some other way is better, than stick to that. So, one option at a time, whichever is best for the situation. GLEXT hasn't been used, and in order to be not having to hack its .cmake file, we bypass it and refer to GLH (which is still used) right away in LLWindow. CMake commands that need to be bypassed, if it's a one-liner then it's just commented out, but if it's multiple lines, then scope them with if (FALSE) to minimise difference.
2025-05-12#4010 play only audio mention ping for new conversationMaxim Nikolenko
2025-05-12Revert "#4008 Fix media scale adjustments with pbr applied"Andrey Kleshchev
This reverts commit b084d842c9900e532cba11e1e5a4e85299a0e184.
2025-05-12Not redeclare DOM/DAE classes in any conditionErik Kundiman
They haven't been used anyway because of LL_USESYSTEMLIBS (before), and it still works even though we reverted to using LL's fork in ColladaDOM's case, by building the fork instead of using any system library vanilla version.
2025-05-12Similar to commit 2a57b9 but for xxHashErik Kundiman
2025-05-12Similar to commit 0500c7 but for libjpeg(-turbo)Erik Kundiman
2025-05-12Not rely on LL_USESYSTEMLIBS for choosing zlib implErik Kundiman
with the effect of choosing zlib over zlib-ng in any condition, which has been the case so far. But this opens the way to relying on some other condition, such as which platform, for deciding whether we can use zlib-ng or not, instead of zlib. So we can freely use, for example LL's prebuilt, zlib-ng while still using system libraries for others.
2025-05-12Unencapsulated Meshoptimizer headers in any conditionErik Kundiman
Pretty much similar to the previous commit (especially that the the encapsulating directory, in cases where LL's prebuilt is used, is already a searched directory by the last line in its .cmake file), except there had never been any use of LL_USESYSTEMLIBS for this one, so just replacing the single upstream lines would be the minimal difference.
2025-05-12Have unencapsulated Expat headers in any conditionErik Kundiman
The only condition where Expat headers would be encapsulated is when using LL's Autobuild-based prebuilt libraries, and we're never using any of LL's prebuilt binary for Expat on desktop, since Expat is practically available on any supported desktop platform. The system Expat headers are never encapsulated in any of those platforms. This is the beginning of not relying on the LL_USESYSTEMLIBS macro any more (eventually not relying on the custom USESYSTEMLIBS CMake setting either). Keeping the build system still flexible to have the option to use LL's prebuilt libraries *fully* (we still use some of them in cases where the platform may not have the related system library or for convenience, so the term USESYSTEMLIBS may not always be consistent), is getting harder to maintain. The way it's done is using #if 1, in order to minimise difference from upstream.
2025-05-11Remove unneeded RLV_VERIFY + undefine accidental RLV_DEBUG define (should ↵Kitty Barnett
fix Linux build)
2025-05-11Replace None and Success. Those are X11 defines and thus lead to compile errorsNicky
when compiling a Linux viewer.
2025-05-11Mac build fixes: Reapply the template fix in rlvhelper.h + point to ↵Kitty Barnett
LLFloaterReg in the global namespace
2025-05-11Fix tab vs whitespace lineKitty Barnett
2025-05-11Add proper file headersKitty Barnett
2025-05-11Don't compose emojis on the RLVa console inputKitty Barnett
2025-05-11Add the RLVa menuKitty Barnett
2025-05-11Add the RLVa consoleKitty Barnett
2025-05-11Add the @getcommand command query reply commandKitty Barnett
2025-05-11Add basic scaffolding to support reply commands and handle @versionXXX as an ↵Kitty Barnett
illustration
2025-05-11Add owner say chat hookKitty Barnett
2025-05-11Minimal code needed to add RLVa with an on/off toggleKitty Barnett
2025-05-10#4056 Crash at childGetSelectionInterfaceAndrey Kleshchev
in model importer
2025-05-10#3542 Microphone doesn't switch after plugging in an audio deviceAndrey Kleshchev
2025-05-09#3758 do not reopen avatar picker floaterMaxim Nikolenko
2025-05-09Merge tag 'Second_Life_Release#377d1b38-2025.04' into 2025.04Erik Kundiman
2025-05-09Merge branch 'main' into 2025.04Erik Kundiman
2025-05-08#4010 Add audio ping for chat mentionsMaxim Nikolenko
2025-05-08#3757 Smarter subfolders dragndropAndrey Kleshchev
2025-05-08Build Dullahan in Linux aarch64 config stageErik Kundiman
GCC needs cstdint header inclusion for it to compile. include/cef needs to exist first otherwise configuration would fail. INSTALL_RPATH is needed in try_compile-ing. PROJECT_ARCH needs to be set on aarch64 to avoid -m64 and -march(=x86-64) settings which aren't recognised (and wouldn't be correct) on aarch64. ENABLE_CXX11_ABI needs to be set ON, otherwise it would use C++ 03's ABI and cause a linking failure. Dullahan headers don't seem to be included in the installation upstream, and dullahan_version.h gets generated only at least after Dullahan configuration, hence the 2 files copying. dullahan_host rpath removal is taken out of scope because the Fedora we support isn't only x86-64 now. The reindentations are just to make the uniform with the rest in the file.
2025-05-08Fix "Too many fragment shader texture samplers"Erik Kundiman
Linux on M1 crash, caused by PBR Terrain. M1 only supports 16 image samplers in the fragment shader (GL_MAX_TEXTURE_IMAGE_UNITS). That's why we need to be able to mask RenderTerrainPBRDetail on Linux too by adding it to an also added TexUnit16orLess list to its feature table, and to the graphic settings lists above it in the file.
2025-05-07#4011 Add conversation list highlight for chat mentionMaxim Nikolenko
2025-05-07Make builds support Python 3.13Andrey Kleshchev
2025-05-07#4008 Fix media scale adjustments with pbr appliedAndrey Kleshchev
2025-05-05#4028 Crash at onEmojiPickerClosedMaxim Nikolenko
2025-05-05#4027 Crash at adjustTexturesByScaleAndrey Kleshchev
2025-05-05#4009 Add color settings for chat mentions to PreferencesMaxim Nikolenko
2025-05-05#4015 Restore formatting for strings.xml and teleport_strings.xml translationsAndrey Lihatskiy
2025-05-01#4001 Bump cache versionAndrey Kleshchev
2025-04-30#3748 Don't allow dropping material onto water exclusion surfaceMaxim Nikolenko
2025-04-30Merge tag 'Second_Life_Release#d9e55c44-Second_Life_Release#d9e55c4-2025.04' ↵Erik Kundiman
into 2025.04
2025-04-30Merge branch 'main' into 2025.04Erik Kundiman
2025-04-29#3997 Crash in a gltf asset enabled regionAndrey Kleshchev
2025-04-29#3791 check against alpha blending as a part of determining exclude waterMaxim Nikolenko
2025-04-28viewerp#300 Fix inconsistency with copying textures vs pbrAndrey Kleshchev
2025-04-28#3978 Fix offset in Land Owner highlightsAndrey Kleshchev
texture_stride with '-1' was added in DRTVWR-592 along with getMetersPerGrid multiplication.
2025-04-27Add dependency on libgles-dev on Debian/UbuntuErik Kundiman
Thanks to Jenni Windrider for the bug report and solution. On startup, the log gets flooded with: [0426/150813.911339:ERROR:viz_main_impl.cc(196)] Exiting GPU process due to errors during initialization [0426/150813.918965:ERROR:egl_util.cc(44)] Failed to load GLES library: /usr/lib/x86_64-linux-gnu/libGLESv2.so: /usr/lib/x86_64-linux-gnu/libGLESv2.so: cannot open shared object file: No such file or directory doing a ls shows there's indeed no libGLESv2.so: ll /usr/lib/x86_64-linux-gnu/libGLESv2* - rw-r--r-- root root 110.39K 18.Mar'25 15:10  libGLESv2_nvidia.so.2 - rw-r--r-- root root 110.39K 18.Mar'25 15:10  libGLESv2_nvidia.so.570.133.07 - rw-r--r-- root root 70.30K 08.Apr'24 10:04  libGLESv2.so.2 - rw-r--r-- root root 70.30K 08.Apr'24 10:04  libGLESv2.so.2.1.0 The package that provides this isn't installed by default: apt-file search libGLESv2.so libgles-dev: /usr/lib/x86_64-linux-gnu/libGLESv2.so So installing libgles-dev fixes that.
2025-04-27Replace {.._DIR}/lib/release with ARCH_PREBUILT_DIRS_RELEASEErik Kundiman
Shorter.
2025-04-27Replace USE_AUTOBUILD_3P OR USE_CONAN with USESYSTEMLIBSErik Kundiman
Simpler.