Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-10-30 | Fix potential null pointer deref during image upload | Rye Cogtail | |
2024-10-30 | Fixes to LLCachedControl usage in windowing and avatars | Rye | |
2024-10-30 | Fix LLMutexLock usage in LLModelPreview | Rye | |
2024-10-30 | Fix small hotspot during particle load | Rye | |
2024-10-30 | Update KDU to 8.4.1 and fix kdu tests, also fix llimage_libtest utility | Rye | |
2024-10-30 | Merge pull request #2909 from secondlife/maxim/viewer_2245 | Maxim Nikolenko | |
undefined | |||
2024-10-30 | viewer#2894 Make PBR scale like Blinn Phong does | Andrey Kleshchev | |
2024-10-29 | Merge pull request #2940 from secondlife/nat/vector-resultset | nat-goodspeed | |
Add LL::ResultSet subclass VectorResultSet for the simple case. | |||
2024-10-28 | viewer#2863 Notify of a missing material cap instead of applying locally | Andrey Kleshchev | |
2024-10-25 | Merge pull request #2959 from secondlife/rider/fix_bot_im_session | Rider Linden | |
Fix for IM session name and icon. | |||
2024-10-25 | Issue #2907: When passing the injected notification message into addMessage ↵ | Rider Linden | |
on behalf of the system, optionally specify the agent id and name that should be used. | |||
2024-10-25 | Small fix in LLTeleportHandler::handle() | Alexander Gavriliuk | |
2024-10-25 | #2245 allow passing command-line arguments | Mnikolenko Productengine | |
2024-10-24 | Merge pull request #2890 from secondlife/leviathan/disable-sdl2-on-mac | Andrew Meadows | |
temporary workaround for #2870: disable SDL2 on mac | |||
2024-10-24 | Add LL::ResultSet subclass VectorResultSet for the simple case. | Nat Goodspeed | |
Update existing simple LL::ResultSet subclasses. | |||
2024-10-24 | Merge branch 'develop' into maxim/viewer_2245 | Nat Goodspeed | |
2024-10-24 | Merge branch 'develop' into marchcat/xcode-16 | Andrey Lihatskiy | |
2024-10-24 | #2899 Mac: add the libSDL2 link to SLPlugin | Andrey Lihatskiy | |
2024-10-24 | #2904 output position should ignore cursor position | Maxim Nikolenko | |
2024-10-24 | #2577 Worn transparent prims no longer show with 'Highlight transparent' | Alexander Gavriliuk | |
2024-10-23 | Merge pull request #2908 from secondlife/rider/chat_metadata | Rider Linden | |
Bot self identification. | |||
2024-10-23 | Fix more addition of distinct enums. | Nat Goodspeed | |
2024-10-23 | Disambiguate (LLSD != UUID). | Nat Goodspeed | |
2024-10-23 | Issue #2907: Code review comments. | Rider Linden | |
2024-10-23 | Merge branch 'develop' into marchcat/xcode-16 | Nat Goodspeed | |
2024-10-23 | #2910 Allow terminating multiple scripts at once | Maxim Nikolenko | |
2024-10-22 | Only add same enum types. | Nat Goodspeed | |
2024-10-22 | When adding two enums (!?), coerce to the same enum type. | Nat Goodspeed | |
2024-10-22 | Merge remote-tracking branch 'origin/release/2024.09-ExtraFPS' into develop | Brad Linden | |
2024-10-22 | Restore tonemapping to ACES with a slight mix towards linear and raise ↵ | Rye Mutt | |
exposure slider limit to 4 (#2915) | |||
2024-10-22 | Merge branch 'develop' into marchcat/xcode-16 | Nat Goodspeed | |
2024-10-22 | Merge pull request #2911 from secondlife/nat/warn-timeslice | nat-goodspeed | |
Make `llcoro::scheduler` log coros that run too long between yields. | |||
2024-10-22 | #2007 The 'No device' option isn't displayed in the 'Input/Output' drop-down ↵ | Alexander Gavriliuk | |
boxes | |||
2024-10-22 | Remove move | Nat Goodspeed | |
2024-10-22 | Eliminate meaningless blank line | Nat Goodspeed | |
2024-10-22 | Merge branch 'develop' of github.com:secondlife/viewer into nat/warn-timeslice | Nat Goodspeed | |
2024-10-22 | Make llcoro::scheduler log coros that run too long between yields. | Nat Goodspeed | |
Introduce LLCoros::CoroData::mHistogram, a map of cutoff times (bucket breakpoints) with counts of occurrences. The idea is that mHistogram counts how many times the real time taken by a particular coroutine resumption falls into one of those buckets. Initialize the map with guessed buckets; these are set in llcoros.cpp so they can be changed without requiring extensive rebuilds. scheduler::pick_next() now records the timestamp and fiber context just before the fiber manager resumes the next coroutine. If the next pick_next() call reveals that the previous resumption took longer than the minimum bucket breakpoint, it increments the appropriate bucket counter and logs the instance. LLCoros::toplevel() reports nonzero mHistogram entries on coroutine termination. | |||
2024-10-22 | LLCoprocedurePool::coprocedureInvokerCoro() sets status to task name | Nat Goodspeed | |
LLCoprocedurePool coroutines are generic; its coroutine name alone doesn't tell us much. We can only know what one is doing by its current task name. Use LLCoros::setStatus() to associate the task name with the coroutine. | |||
2024-10-22 | Eliminate double names for coros + "empty name is main" convention. | Nat Goodspeed | |
Instead, introduce bool CoroData::isMain and test that. Use "main" for the name of the main coroutine. That eliminates the logname() method, also the llcoro::logname() free function. It also obviates the alternate CoroData constructor. Use boost::fibers::fiber::id as the LLInstanceTracker key for CoroData, instead of the coroutine name. Introduce get_CoroData(id), also getName(id). Extract static CoroData for the main coroutine to main_CoroData() so both get_CoroData() overloads can use it. Ditch unused get_CoroData(string) parameter: now get_CoroData(). Introduce LLCoros::mNameMap for lookup by name (e.g. killreq()). CoroData's constructor puts an entry into mNameMap; the destructor removes it. Since mNameMap is thread_local (unlike an LLInstanceTracker key), that theoretically permits duplicate coroutine names on different threads. Introduce mPrefixMap to help generate distinct coroutine names, instead of a single scalar. Introduce CoroData::getName(), and use it in both LLCoros::getName() overloads. CoroData::getName() appends mStatus if it's not empty. This is useful for disambiguating generic pool coroutines based on the current task. | |||
2024-10-22 | #2245 Allow Lua scripts to be run from the Conversations floater | Mnikolenko Productengine | |
2024-10-21 | Issue #2907: Process metadata sent along with chats of type ↵ | Rider Linden | |
IM_NOTHING_SPECIAL, The metadata can contain information about the bot status of the sender. It may also contain a system-injected notification that is displayed to the agent as part of the 1:1 chat window. | |||
2024-10-21 | Merge pull request #2896 from secondlife/v-2895 | cosmic-linden | |
secondlife/viewer#2895: Fix Windows cmake not detecting latest python | |||
2024-10-21 | Merge branch 'develop' into nat/frame-profile-stats | Nat Goodspeed | |
2024-10-21 | Regenerate viewer stats for frame profile dump file | Nat Goodspeed | |
instead of reporting the most recent previous viewer stats blob. | |||
2024-10-20 | viewer#2741 Don't reallocate image conversion buffer all the time | Andrey Kleshchev | |
2024-10-18 | secondlife/viewer#2895: Fix Windows cmake not detecting latest python | Cosmic Linden | |
2024-10-18 | viewer#2889 Fixed mixed up water settings | Andrey Kleshchev | |
2024-10-18 | temporary workaround for #2870: disable SDL2 on mac | leviathan | |
2024-10-18 | viewer#2884 Cleanup | Andrey Kleshchev | |
2024-10-18 | viewer#2884 Convert webrtc and experience coroutines into idle callbacks | Andrey Kleshchev | |