summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-11-13Drtvwr 596 11/8/2023 (#501)RunitaiLinden
* SL-20570 Fix for lossy (and square) normal maps when importing GLTF materials. * SL-20582 Fix for overriding to alpha mode blend not working. Incidental decruft of dead code (thanks, Rye!)
2023-11-10SL-20591 Update viewer-manager to v3.0.0395b15Andrey Lihatskiy
2023-11-07Merge branch 'main' into DRTVWR-559Erik Kundiman
2023-11-07EXTERNAL_TOS on macOS too, for nowErik Kundiman
since we don't have any web browser there either.
2023-11-07Merge remote-tracking branch 'secondlife/DRTVWR-559' into DRTVWR-559Erik Kundiman
2023-11-06SL-19968 disabled pump_idle_network for now due to it causing several ↵Brad Linden
failures during login also added suggested continue statements, and removed obsolete LLInventoryItem::fromLLSD deserialization codepath.
2023-11-06Revert "SL-20185 Fix connection issues (#490)"Andrey Kleshchev
Issue reproed again, restoring.
2023-11-06SL-20523 Ensure override gets updated before render materialAndrey Kleshchev
2023-11-06SL-20523 Local textures not updating on PBR Materials #5Andrey Kleshchev
2023-11-06SL-20523 Local textures not updating on PBR Materials #4Andrey Kleshchev
2023-11-06SL-20523 Local textures not updating on PBR Materials #3Andrey Kleshchev
2023-11-06SL-20523 Local textures not updating on PBR Materials #2Andrey Kleshchev
2023-11-06SL-20523 Local textures not updating on PBR Materials #1Andrey Kleshchev
Update editor in which texture changed to local
2023-11-06Merge remote-tracking branch 'secondlife/DRTVWR-559' into DRTVWR-559Erik Kundiman
2023-11-06Merge branch 'main' into DRTVWR-559Erik Kundiman
2023-11-06Merge commit '439d26ccdc2864794036a8f6432664755f2b8234' into testErik Kundiman
2023-11-05Require SSE2 only on x86Erik Kundiman
2023-11-05Black background for first time loginErik Kundiman
2023-11-03Merge branch brad/SL-19968-inventory-skel-background into ↵Brad Linden
'origin/DRTVWR-559' (#489)
2023-11-03Fix build error from overly fancy tracy macro usage that nobody else is ↵Brad Linden
using for DRTVWR-559
2023-11-03Fixed INV_THUMBNAIL_LABEL handling missed in rebase for SL-19968 workBrad Linden
2023-11-03Fix for SL-19968 objects missing timing bug due to stall during loginBrad Kittenbrink (Brad Linden)
ensure inventory skeleton loading doesn't block the message system from processing packets.
2023-11-03Merge branch 'DRTVWR-559' of ssh://github.com/secondlife/viewer into DRTVWR-559Dave Parks
2023-11-03DRTVWR-559 Fix for mac build.Dave Parks
2023-11-03Merge branch 'DRTVWR-559' of github.com:secondlife/viewer into DRTVWR-559RunitaiLinden
2023-11-03SL-20567 Default HiDPI off (mac performance improvement)RunitaiLinden
2023-11-03SL-20185 Fix connection issues (#490)akleshchev
2023-11-02SL-20561 Rename Blinn Phong to Textures in the build floaterMnikolenko Productengine
2023-11-02Merge branch 'DRTVWR-559' of ssh://github.com/secondlife/viewer into DRTVWR-559Dave Parks
2023-11-02SL-19979 Fix for frame stalls on mac with shadows enabled. Also fix ↵Dave Parks
multihreaded GL not working on mac (thanks, Rye!)
2023-11-01Merge pull request #486 from secondlife/SL-20397cosmic-linden
SL-20397: Fix material set from script not updating when the GLTF material has non-default texture transforms
2023-10-31SL-20397: Fix material set from script not updating when the GLTF material ↵Cosmic Linden
has non-default texture transforms
2023-10-31SL-20548 Fix revert of materials not working properly in some casesAndrey Kleshchev
2023-10-31SL-20549 Blank no-copy materials are not moved into scripted objectsAndrey Kleshchev
2023-10-31SL-19979 Temporary hack "fix" for performance issues on Mac -- never ↵Dave Parks
implicitly enable reflection probes or shadows.
2023-10-31SL-19592 Fix for PBR alpha HUDs sometimes using wrong texture on OSXDave Parks
2023-10-31DRTVWR-587: Update viewer-manager to v3.0-074736e.Nat Goodspeed
This is viewer-manager's DRTVWR-587-actions branch updated from the new master branch.
2023-10-31SL-20031: Reintroduce newest viewer-manager build.Nat Goodspeed
2023-10-30Revert "DRTVWR-587 Bring back the previously reverted change"Andrey Lihatskiy
This reverts commit 9d49edbc48d81f820870d43edb2c975beffa5485.
2023-10-30DRTVWR-587 Bring back the previously reverted changeAndrey Lihatskiy
2023-10-30SL-20541 Reorder radio buttons in Edit tools Texture tab to match order in a ↵Maxim Nikolenko
Material
2023-10-29DRTVWR-587: Fix LL::apply(function, LLSD array).Nat Goodspeed
We define a specialization of LLSDParam<const char*> to support passing an LLSD object to a const char* function parameter. Needless to remark, passing object.asString().c_str() would be Bad: destroying the temporary std::string returned by asString() would immediately invalidate the pointer returned by its c_str(). But when you pass LLSDParam<const char*>(object) as the parameter, that specialization itself stores the std::string so the c_str() pointer remains valid as long as the LLSDParam object does. Then there's LLSDParam<LLSD>, used when we don't have the parameter type available to select the LLSDParam specialization. LLSDParam<LLSD> defines a templated conversion operator T() that constructs an LLSDParam<T> to provide the actual parameter value. So far, so good. The trouble was with the implementation of LLSDParam<LLSD>: it constructed a _temporary_ LLSDParam<T>, implicitly called its operator T() and immediately destroyed it. Destroying LLSDParam<const char*> destroyed its stored string, thus invalidating the c_str() pointer before the target function was entered. Instead, make LLSDParam<LLSD>::operator T() capture each LLSDParam<T> it constructs, extending its lifespan to the lifespan of the LLSDParam<LLSD> instance. For this, derive each LLSDParam specialization from LLSDParamBase, a trivial base class that simply establishes the virtual destructor. We can then capture any specialization as a pointer to LLSDParamBase. Also restore LazyEventAPI tests on Mac.
2023-10-27DRTVWR-587: Skip Visual Studio LLSDParam<const char*> tests for now.Nat Goodspeed
They do work fine on clang... unblocking the rest of the team during diagnosis.
2023-10-26Merge pull request #478 from secondlife/SL-20536cosmic-linden
SL-20536: Fix build error C1128 on Windows RelWithDebInfo
2023-10-26SL-20536: Fix build error C1128. secondlife-bin object file too big. Compile ↵Cosmic Linden
with /bigobj
2023-10-26Fix build.yaml line that got dropped in the merge.Brad Linden
2023-10-26Merge branch 'main' into DRTVWR-559Erik Kundiman
2023-10-26Merge remote-tracking branch 'secondlife/DRTVWR-559' into DRTVWR-559Erik Kundiman
2023-10-26Revert "Boost since 1.76 already internally includes v5"Erik Kundiman
This reverts commit 658ff1a0a14af93b96de22d3def56b93c0a5abd2.
2023-10-26Revert "OpenAL createDefaultStreamingAudioImpl stub"Erik Kundiman
This reverts commit b6574337ed3fd7749db6185501cd444305d44905.