summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-04-02Merge branch 'fix/xui-parsing-fixes' of ↵William Weaver
https://github.com/williamweaver/viewer into fix/xui-parsing-fixes
2025-04-02Fix(XUI): Resolve parsing warnings for Fixed Environment editor widgetsWilliam Weaver
Problem: Opening the Fixed Environment floater generated three distinct XUI parsing warnings in the logs: - Failed to parse parameter "decimal_digits." in xy_vector.xml - Failed to parse parameter "user_resize." in xy_vector.xml - Failed to parse parameter "logarithmic." in panel_settings_sky_clouds.xml Cause: These attributes were either not recognized/utilized by the underlying C++ widget implementations ('decimal_digits', 'user_resize' in LLXYVector) or were using an incorrect value ('logarithmic="1"' instead of a boolean 'true'/'false' in LLSliderCtrl). Solution: This commit addresses these three warnings: - Removed the extraneous 'decimal_digits' and 'user_resize' attributes from the definition of the 'xyvector' widget in xy_vector.xml. - Corrected the 'logarithmic' attribute value from "1" to "true" for the 'cloud_scroll_xy' slider in panel_settings_sky_clouds.xml. Result: Eliminates these specific parsing warnings from the logs when the Fixed Environment floater is opened. Testing: - Launch viewer. - Open World -> Environment Editor -> My Environments. - Select a sky setting and click Edit (or create a New one). - Observe the logs upon the Fixed Environment floater opening. - Verify the absence of the 'decimal_digits', 'user_resize' (from xy_vector.xml), and 'logarithmic' (from panel_settings_sky_clouds.xml) parsing warnings.
2025-04-02Fix(XUI): Remove unrecognized user_resize attribute from sun_moon_trackballWilliam Weaver
Problem: A warning "Failed to parse parameter 'user_resize.'" appeared in the logs during UI loading, originating from sun_moon_trackball.xml. Cause: The 'user_resize' attribute is not a recognized or utilized parameter for the 'sun_moon_trackball' widget type, as defined in the corresponding C++ (LLVirtualTrackball). Solution: Removed the extraneous 'user_resize="false"' line from the sun_moon_trackball.xml widget definition. Result: Eliminates the parsing warning from the logs upon viewer startup or UI reload. Testing: - Launch viewer. - Check logs for the absence of the "Failed to parse parameter 'user_resize.'" warning.
2025-04-02Fix(EnvAdjust): Ensure cloud texture selection updates the skyWilliam Weaver
Problem: When selecting a new cloud texture in the Personal Lighting floater (LLFloaterEnvironmentAdjust) using the cloud map texture picker, the sky rendering did not update to reflect the selected texture. The callback only updated the internal mLiveSky object and its subsequent call to mLiveSky->update() was insufficient to trigger a live render update. Cause: The onCloudMapChanged callback modified the mLiveSky settings object directly and called its update() method. However, in the context of live environment adjustments, changes require propagation through the central LLEnvironment singleton to correctly update the active environment layer (ENV_LOCAL) and signal the renderer. Relying solely on the settings object's update() method bypassed this necessary mechanism. Solution: This commit refactors onCloudMapChanged to correctly handle the update: 1. Uses the LLEnvironment singleton to manage the state change: - Explicitly targets the local environment layer (ENV_LOCAL) via setSelectedEnvironment(). - Clones the mLiveSky settings object. - Uses LLEnvironment::setEnvironment() to apply the modified clone to the ENV_LOCAL layer. - Uses LLEnvironment::updateEnvironment() to trigger the render update. 2. Synchronizes the UI preview: - Calls picker_ctrl->setValue() on the LLTextureCtrl widget after the environment update to ensure the UI preview matches the applied texture. Result: Selecting a cloud texture in the Environment Settings floater now correctly updates both the sky rendering and the UI preview widget simultaneously. Testing: - Open World -> Environment Editor -> Environment Settings. - Go to the Clouds tab. - Click the cloud texture preview to open the texture picker. - Select a new cloud texture and click OK. - Verify the sky updates immediately to use the selected texture. - Verify the texture preview in the floater also updates immediately. - Repeat with several different textures to confirm consistent behavior.
2025-04-01Merge tag 'Second_Life_Release#e671cb54-2025.03' into 2025.03Erik Kundiman
2025-03-31#3814 More bad_alloc handlingAndrey Kleshchev
warn user and error
2025-03-30Shadow options in the graphics advanced panelmobserveur
New optimisation and resolution shadow options
2025-03-30#3795 Crash at getVolatileAPRPool()Andrey Kleshchev
2025-03-29Merge pull request #3719 from williamweaver/fix/shadow-resolution-updateJonathan "Geenz" Goodman
fix: Correctly update shadows on RenderShadowResolutionScale change
2025-03-29Merge branch 'develop' into fix/shadow-resolution-updateJonathan "Geenz" Goodman
2025-03-29#3836 Fix crash at LLNotificationForm::getNumElements()/LLSD::size()Andrey Lihatskiy
2025-03-29Merge tag 'Second_Life_Release#6ac1d4f3-2025.03' into 2025.03Erik Kundiman
2025-03-29Merge tag 'Second_Life_Release#4e80ec7e-2025.03' into 2025.03Erik Kundiman
2025-03-29Merge tag 'Second_Life_Release#8eff224c-2025.03' into 2025.03Erik Kundiman
2025-03-29Merge branch 'main' into 2025.03Erik Kundiman
2025-03-29Explicit float remaining arguments for lerpErik Kundiman
Some compilers may find it ambiguous as in anything newer than C++17, it could be float, double or long double. This lerp is meant to be the float one, as the 4th argument is, and the 3rd argument is an F32.
2025-03-29Revert "Temporary fix for antialiasing causing lower performance on mac"Erik Kundiman
This reverts commit faab4af12b583b48cfdd9f6e41dad7bba06c3970.
2025-03-28Merge pull request #3832 from secondlife/atlas-qaworkflowAtlasLinden
Allow QA workflow to run on Second_Life_X branches
2025-03-28fix(pipeline): Remove incorrect zeroing of mRT dimensions in createGLBuffersWilliam Weaver
Resolves the root cause of shadow rendering failures when changing RenderShadowResolutionScale immediately after modifying other graphics settings (e.g., SSAO, HDR). Investigation revealed that LLPipeline::createGLBuffers, which is called during certain graphics setting changes that require full buffer recreation, contained lines that incorrectly set mRT->width and mRT->height to zero *after* the call to allocateScreenBuffer had already established the correct dimensions. This created a state inconsistency. If RenderShadowResolutionScale was changed immediately following the graphics setting change, the subsequent call to LLPipeline::resizeShadowTexture (triggered via handleShadowsResized) would read these incorrect zero dimensions from mRT. This led to failed shadow buffer allocation (allocateShadowBuffer(0, 0)) and resulted in corrupted or missing shadows. This commit removes the erroneous mRT->width = 0 and mRT->height = 0 lines from the end of createGLBuffers. This ensures that the render target dimensions remain valid after buffer recreation. With this fix, resizeShadowTexture now correctly reads the valid screen dimensions immediately following a graphics setting change and successfully resizes the shadow buffers without delay or error. This eliminates the need for previous workarounds like guard conditions or forced shader recompiles. Ref: #3719
2025-03-27Allow QA workflow to run on Second_Life_X branchesAtlasLinden
Using the echos from the last run, it appears that the tagged builds have Workflow Head Branch = Second_Life_X. Edit made so the file looks for this rather than what was there previously.
2025-03-27Merge branch 'secondlife:develop' into fix/shadow-resolution-updateWilliam Weaver
2025-03-27#3829 WebRTC crash OnDataReceivedImplAndrey Kleshchev
2025-03-27Merge pull request #3821 from secondlife/atlas-qaworkflowAtlasLinden
Removed unnecessary comments in QA workflow file
2025-03-27Avoid recalculating pixel area when possibleAndrey Kleshchev
2025-03-27Use LLCachedControl in llviewerwindow and llappviewerAndrey Kleshchev
Getting from gSavedSettings is expensive to do so often
2025-03-27#3820 crash at LLNotificationTemplateMaxim Nikolenko
2025-03-27Removed unnecessary comments in QA workflow fileAtlasLinden
GHA does not like comments inside an if statement. These have been removed.
2025-03-26Merge pull request #3818 from secondlife/atlas-qaworkflowJonathan "Geenz" Goodman
Added QA workflow file
2025-03-26Merge pull request #3819 from secondlife/geenz/vram-divisor-1Jonathan "Geenz" Goodman
Mitigate some of the frame stuttering we're seeing by setting the VRAM divisor to 1
2025-03-26Mitigate some of the frame stuttering we're seeing by setting the VRAM ↵Jonathan "Geenz" Goodman
divisor to 1. tl;dr - this helps avoid frequent texture reuploads to VRAM in some texture heavy areas. This speaks to some bigger problems we're seeing in our texture streaming system however. You will see similar problems by manually setting the texture VRAM manually.
2025-03-26Added QA workflow fileAtlasLinden
Previously in the develop archive. Recent change is to only run the workflow for tagged builds. The code to running other builds has been commented out.
2025-03-26#3814 Out of range exception in TextCmdRemove::executeAndrey Kleshchev
2025-03-26#3803 Crash at LLTabContainer::setTabMaxim Nikolenko
2025-03-26Disable shoreline fade. (#3811)Jonathan "Geenz" Goodman
2025-03-25#3795 Fix macos shutdown crashAndrey Kleshchev
2025-03-25#3643 Make sure attribute names match between OSsAndrey Kleshchev
On Mac spaces aren't permitted.
2025-03-25#3596 Don't supress exceptions in WorkQueueAndrey Kleshchev
We need those to know about problems.
2025-03-25Merge pull request #3625 from secondlife/rider/bot_tattleRider Linden
Resubmit PR#2908+2951 Bot self identification and bug fix.
2025-03-25Merge remote-tracking branch 'remotes/origin/develop' into rider/bot_tattleRider Linden
Fix conflicts
2025-03-25#3798 Crash at getAvatar()Andrey Kleshchev
2025-03-24Readd probe count setting (#3793)Jonathan "Geenz" Goodman
* Readd max probe count. Disable dynamic probe allocation by default (for now).
2025-03-24#3796 Crash at assetRequestCoroAndrey Kleshchev
Coroutine doesn't own req pointer, don't use it
2025-03-24#3780 disable water exclusion if user applies PBR or MediaMaxim Nikolenko
2025-03-22Merge branch 'main' into 2025.03Erik Kundiman
2025-03-22Temporary fix for antialiasing causing lower performance on macmobserveur
Water exclusion seems to be at the origin of poor performance with antilasing combind with hdr mode. We remove this from pipeline.cpp for now as a temporary fix. Technically we revert pipeline.cpp to the previous version.
2025-03-22Merge tag 'Second_Life_Release#0ec9bfaa-2025.03' into 2025.03Erik Kundiman
2025-03-21tab_container.xml adjustmentsecretfoxtail
Slightly increase tab height.
2025-03-21#3713 Crash at updateGLTFMaterialsAndrey Kleshchev
2025-03-21prevent erroneous edit of wrong parcel (#3759)Andrew Meadows
* prevent erroneous edit of wrong parcel Fixes jira-archive-internal/issues/70771 [SL-20409] Erroneous Local Parcel Twins - Parcel Updates Across Region Borders - unrequested updateDatabaseParcel changes * remove unused argument in sendParcelPropertiesUpdate()
2025-03-21Dynamic Probe Allocation (#3787)Jonathan "Geenz" Goodman
* #3788 Support dynamic probe allocation. * #3738 Mitigate probe flashing * #3735 Mitigate realtime probes flashing