Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-22 | SL-16220: Add LL::ThreadPool class and a "General" instance. | Nat Goodspeed | |
ThreadPool bundles a WorkQueue with the specified number of worker threads to service it. Each ThreadPool has a name that can be used to locate its WorkQueue. Each worker thread calls WorkQueue::runUntilClose(). ThreadPool listens on the "LLApp" LLEventPump for shutdown notification. On receiving that, it closes its WorkQueue and then join()s each of its worker threads for orderly shutdown. Add a settings.xml entry "ThreadPoolSizes", the first LLSD-valued settings entry to expect a map: pool name->size. The expectation is that usually code instantiating a particular ThreadPool will have a default size in mind, but it should check "ThreadPoolSizes" for a user override. Make idle_startup()'s STATE_SEED_CAP_GRANTED state instantiate a "General" ThreadPool. This is function-static for lazy initialization. Eliminate LLMainLoopRepeater, which is completely unreferenced. Any potential future use cases are better addressed by posting to the main loop's WorkQueue. Eliminate llappviewer.cpp's private LLDeferredTaskList class, which implemented LLAppViewer::addOnIdleCallback(). Make addOnIdleCallback() post work to the main loop's WorkQueue instead. | |||
2021-10-22 | SL-16234 FIXED Frame stall caused by unnecessary building the floater when ↵ | Mnikolenko Productengine | |
exiting viewer | |||
2021-10-21 | SL-16127: Const cleanup | Ptolemy | |
2021-10-21 | SL-16127: More cleanup | Ptolemy | |
2021-10-21 | SL-16127: Cleanup consts | Ptolemy | |
2021-10-21 | SL-16127: Fix bug in int() not calling getDistanceMultiplier(), calc() not ↵ | Ptolemy | |
calling getTotalDensity() | |||
2021-10-21 | SL-16127: Use cached sky | Ptolemy | |
2021-10-21 | SL-16127: Cleanup indentation and whitespace to match coding style | Ptolemy | |
2021-10-21 | SL-16127: Use cache psky when possible | Ptolemy | |
2021-10-21 | SL-16127: Cleanup trailing whitespace | Ptolemy | |
2021-10-21 | SL-16127: Remove unused functions | Ptolemy | |
2021-10-21 | SL-16127: Replace slow getLightTransmittance with faster version | Ptolemy | |
2021-10-21 | SL-16202 Fix for textures appearing black or flashing white due to ↵ | Dave Parks | |
optimization bugs. | |||
2021-10-21 | SL-15521 Fix license file not mentioning meshoptimizer | Andrey Kleshchev | |
2021-10-21 | SL-16226 Crash at genMeshOptimizerPerModel | Andrey Kleshchev | |
2021-10-20 | SL-16220: Add a WorkQueue to be serviced by mainloop. | Nat Goodspeed | |
Make LLAppViewer::idle() call LL::WorkQueue::runFor() to dequeue and run some or all of the pending responses from worker threads. Add a MainWorkTime setting to specify the time slice the main loop may devote each frame to servicing such responses. | |||
2021-10-20 | SL-16184 FIXED Frame stall when friend comes online. | Mnikolenko Productengine | |
2021-10-19 | SL-16197 Optimize LLEnvironment handling of shader uniforms. Instrument ↵ | Dave Parks | |
LLSD. Enable Fast Timers when Tracy is enabled to catch Fast Timer overhead. | |||
2021-10-14 | DRTVWR-545 Raised the viewer version to 6.5.0 | Andrey Lihatskiy | |
2021-10-14 | Merged DRTVWR-546 into SL-16166 | Dave Parks | |
2021-10-14 | SL-16166 Apply optimizations from pushBatch to other render call sites. ↵ | Runitai Linden | |
Optimize out a map lookup in rigged face rendering. | |||
2021-10-14 | SL-16131 Fix for alignment warnings on Win32 builds. | Dave Parks | |
2021-10-13 | Merge with master after latest Viewer release | Callum Linden | |
2021-10-13 | Merge branch 'master' v6.4.24 into DRTVWR-546 | Dave Houlton | |
2021-10-14 | Merge branch master (DRTVWR-520) into DRTVWR-542-meshopt | Andrey Kleshchev | |
2021-10-13 | Merge with head of Master after a new Viewer release | Callum Prentice | |
2021-10-14 | Merge branch 'master' into DRTVWR-545-maint-mix | Andrey Lihatskiy | |
2021-10-13 | Increment viewer version to 6.4.24 | Nat Goodspeed | |
following promotion of DRTVWR-520 | |||
2021-10-13 | SL-15462 Refactor voiceControlCoro() into a state machine #2 | Andrey Kleshchev | |
2021-10-13 | SL-15462 Refactor voiceControlCoro() into a state machine #1 | Andrey Kleshchev | |
2021-10-13 | SL-16106 Fixed asset storage trying to request data on shutdown | Andrey Kleshchev | |
2021-10-13 | SL-16166 Remove LLDrawPoolGlow::pushBatch non-specialization | Runitai Linden | |
2021-10-13 | SL-16166 Optimize LLDrawPoolMaterials::pushBatch | Runitai Linden | |
2021-10-13 | SL-16189 Optimize bindBumpMap | Runitai Linden | |
2021-10-13 | SL-16166 Apply LLRenderPass::pushBatch optimizations to ↵ | Runitai Linden | |
LLDrawPoolBump::pushBatch | |||
2021-10-12 | SL-16166 Optimization pass on LLRenderPass::pushBatch | Runitai Linden | |
2021-10-11 | SL-16099 Followup -- disable VAOs since they still run like garbage in busy ↵ | Runitai Linden | |
scenes. | |||
2021-10-11 | SL-16099 Multi-threaded OpenGL usage on Windows, enable Core Profile and ↵ | Dave Parks | |
VAOs by default. | |||
2021-10-11 | SL-16141 Load fonts and generate glyphs on startup | Mnikolenko Productengine | |
2021-10-07 | SL-16024: Merge branch 'DRTVWR-546' into SL-16024-to-546 | Nat Goodspeed | |
2021-10-07 | SL-16024: Return shared_ptr from LLInstanceTracker::getInstance(). | Nat Goodspeed | |
It feels wrong to return a dumb LLInstanceTracker subclass* from getInstance() when we use std::shared_ptr and std::weak_ptr internally. But tweak consumers to use 'auto' or LLInstanceTracker::ptr_t in case we later revisit this decision. We did add a couple get() calls where it's important to obtain a dumb pointer. | |||
2021-10-06 | SL-16138 remove checks for now-mandatory capabilities | Dave Houlton | |
2021-10-01 | SL-15999 use callback for updating window title | Mnikolenko Productengine | |
2021-09-29 | Merge branch 'SL-15999' of ssh://bitbucket.org/lindenlab/viewer into SL-15999 | Brad Payne (Vir Linden) | |
2021-09-29 | SL-15999 - force multiple viewers support for noninteractive mode | Brad Payne (Vir Linden) | |
2021-09-29 | SL-16034 init LLNavigationBar to allow setting title with location info later | Mnikolenko Productengine | |
2021-09-29 | Merge branch 'SL-15999' of ssh://bitbucket.org/lindenlab/viewer into SL-15999 | Brad Payne (Vir Linden) | |
2021-09-29 | SL-15999 - noninteractive sessions should quit cleanly when they get a close ↵ | Brad Payne (Vir Linden) | |
message. Removed some possible crashes | |||
2021-09-29 | SL-15999 - don't create floaters in noninteractive mode | Brad Payne (Vir Linden) | |
2021-09-29 | SL-16034 Disable all displays and UI in noninteractive mode | Mnikolenko Productengine | |