Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-05 | DRTVWR-546 trigger | Dave Houlton | |
2021-10-04 | SL-16024: Don't use a lambda as default arg for universal reference. | Nat Goodspeed | |
Instead, break out a separate pop_() method that explicitly provides the lambda to the real pop_() implementation. | |||
2021-10-04 | SL-16024: LLThreadSafeQueue enhancements | Nat Goodspeed | |
Add LL::PriorityQueueAdapter, a wrapper for std::priority_queue to make its API more closely resemble std::queue for drop-in use as LLThreadSafeQueue's underlying QueueT container. Support move-only element types. Factor out some implementation redundancy: wrap actual push semantics as push_(), actual pop semantics as pop_(). push(), tryPush() and tryPushUntil() now call push_(); pop(), tryPop() and tryPopUntil() now call pop_(). Break out tryLock() and tryLockUntil() methods that, if they can lock, run the passed callable. Then tryPush(), tryPushUntil(), tryPop() and tryPopUntil() pass lambdas containing the meat of the original method body to tryLock() or tryLockUntil(), as appropriate. | |||
2021-10-04 | Merged in DRTVWR-541 (pull request #717) | Euclid Linden | |
Push autobuild updates made in DRTVWR-541 into -546 | |||
2021-10-04 | Merged in SL-16040 (pull request #709), Nat's changes to allow autobuild ↵ | Nat Linden | |
with Tracy enabled on TeamCity. SL-16040: TC viewer builds with Tracy enabled Approved-by: Euclid Linden Approved-by: Dave Parks | |||
2021-10-04 | SL-16024: Introduce tuple.h with tuple_cons(), tuple_cdr(). | Nat Goodspeed | |
These functions allow prepending or removing an item at the left end of an arbitrary tuple -- for instance, to add a sequence key to a caller's data, then remove it again when delivering the original tuple. | |||
2021-10-01 | SL-16024: Enhance LLThreadSafeQueue for use with WorkQueue. | Nat Goodspeed | |
First, parameterize LLThreadSafeQueue's queue type. This allows us to substitute (e.g.) a std::priority_queue for a particular instance. Use std::queue for the default queue type, changing the operations invoked on the queue type from std::deque methods to std::queue methods. Rename published methods from (e.g.) pushFront() and popBack() to simple push() and pop(), retaining legacy names as aliases. Not only are the overt Front and Back unnecessary; they're the opposite of how std::queue uses std::deque or std::list, so they only confuse the reader. Break out tryPushUntil() method. We already use that logic internally to tryPushFor(), so it's just as easy to publish it as its own entry point. Add tryPopFor() and tryPopUntil() to allow limiting the time we'll wait for a queue item to become available. | |||
2021-10-01 | SL-16094 Move LLWindowWin32::mainWindowProc and Windows message handling to ↵ | Dave Parks | |
a background thread to prevent frame stalls in LLWindowWin32::gatherInput | |||
2021-09-28 | SL-16040: _aligned_malloc() and _aligned_free() are Microsoft only. | Nat Goodspeed | |
Fortunately we already have platform-independent wrappers in llmemory.h. | |||
2021-09-28 | SL-16040: operator new() must never return nullptr. | Nat Goodspeed | |
2021-09-28 | SL-16040: Honor autobuild_{configure,build}_parameters variables. | Nat Goodspeed | |
The generic build.sh script honors these environment variables to specify parameters to the autobuild configure and autobuild build steps, respectively. Support them in the viewer-specific build.sh too. In the generic build.sh, autobuild_configure_parameters allows specifying command-line switches either for autobuild or, following --, for the underlying tool (in our case, CMake). In order to support that variable the same way here, we insert -- (as before) when autobuild_configure_parameters is unset or empty, since the rest of the switches *we* specify are for CMake. That means that, as with the generic build.sh, a non-empty autobuild_configure_parameters override must precede any switches intended for CMake with the -- separator. | |||
2021-09-27 | SL-16093 Don't force the console window to be open on developer builds ↵ | Dave Parks | |
because it causes frame stalls while logging. | |||
2021-09-27 | SL-16088 Fix for stall from many calls to glGenBuffers. | Dave Parks | |
2021-09-24 | Ignore build-vc160-64 | Runitai Linden | |
2021-09-23 | DRTVWR-520 Updated dullahan to codeticket build 563968 | Andrey Lihatskiy | |
2021-09-22 | Merge remote-tracking branch 'remotes/origin/DRTVWR-541' into DRTVWR-546 | Runitai Linden | |
2021-09-23 | SL-15903 SLPlugin entitlements fix | Andrey Lihatskiy | |
2021-09-22 | Merged in SL-16014 (pull request #692) | Michael Pohoreski | |
SL-16014 Approved-by: Euclid Linden Approved-by: Dave Parks | |||
2021-09-22 | Fix merge conflict | Ptolemy | |
2021-09-22 | SL-16014: Fix typo | Ptolemy | |
2021-09-22 | Merge remote-tracking branch 'remotes/origin/DRTVWR-541' into DRTVWR-546 | Runitai Linden | |
# Conflicts: # indra/llcommon/linden_common.h | |||
2021-09-22 | SL-16014: Add Tracy markup to doFrame() | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup for LLEventFilter | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup for LLVolumeFace | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup for LLSD | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup to LLViewerObjectList | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup to LLSpatialGroup | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup to LLFace | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy markup for lldrawable | Ptolemy | |
2021-09-22 | SL-16014: Add macros for better markup in Tracy | Ptolemy | |
2021-09-22 | SL-16014: Add Tracy logging to doFrame() | Ptolemy | |
2021-09-22 | SL-16014 Add Tracy logging to lldrawpoolavatar.cpp | Ptolemy | |
2021-09-22 | SL-16031 Add support for VS 2019 (requires autobuild 1.2-alpha) | Dave Parks | |
2021-09-22 | SL-15958 Stop impostored avatars from casting shadows | Mnikolenko Productengine | |
2021-09-22 | Merged in SL-16027_Tracy_OpenGL (pull request #697) | Michael Pohoreski | |
SL-16027: Add Tracy OpenGL support Approved-by: Euclid Linden Approved-by: Dave Parks | |||
2021-09-21 | SL-16027: Only enable Tracy OpengL macros if Tracy is enabled | Ptolemy | |
2021-09-21 | SL-16027: Add Tracy OpenGL support | Ptolemy | |
2021-09-21 | SL-15612 Value fix | Andrey Lihatskiy | |
2021-09-21 | SL-15612 Check for SKIP_NOTARIZATION evn. variable | Andrey Lihatskiy | |
2021-09-21 | Revert "DRTVWR-520 Updated dullahan to codeticket build 562751" | Andrey Lihatskiy | |
This reverts commit adb724564da73a4b2d1ebf7835ce628448048d87. | |||
2021-09-21 | SL-15903 Restored the lost code | Andrey Lihatskiy | |
2021-09-20 | SL-16043 Fix DisableVerticalSync, default DisableVerticalSync to off, remove ↵ | Dave Parks | |
broken frame limiter code (use vsync if you want to limit framerate). | |||
2021-09-20 | SL-16006 and SL-16009 Rigged mesh rendering optimization pass | Dave Parks | |
2021-09-20 | SL-16014: Add Tracy markup to doFrame() | Ptolemy | |
2021-09-20 | SL-16014: Add Tracy markup for LLEventFilter | Ptolemy | |
2021-09-20 | SL-16014: Add Tracy markup for LLVolumeFace | Ptolemy | |
2021-09-20 | SL-16014: Add Tracy markup for LLSD | Ptolemy | |
2021-09-20 | SL-16014: Add Tracy markup to LLViewerObjectList | Ptolemy | |
2021-09-20 | SL-16014: Add Tracy markup to LLSpatialGroup | Ptolemy | |
2021-09-20 | SL-16014: Add Tracy markup to LLFace | Ptolemy | |