summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerobject.cpp
AgeCommit message (Collapse)Author
2018-06-05MergeAnchor Linden
2018-05-21MergeAnchor Linden
2018-05-18Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2018-03-28MAINT-8438,8446: fix bakes on child primsAnchor Linden
2018-03-26MAINT-8436,8412,8411,8446,8438: fixed attach/detachAnchor Linden
2018-03-07Merged lindenlab/viewer-release into defaultAnkur Ahlawat
2018-03-02[MAINT-8081] - update mesh visibility on tex changeAnchor Linden
2018-03-02[MAINT 8081] - show/hide avatar base mesh regions if avatar joint ↵Anchor Linden
attachments are using server bakes. pass the magic ids correctly across ui and texture entry.
2018-03-02Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2018-02-28MergeAnchor Linden
2018-02-28[MAINT-8081] - bakes on mesh. 1st pass. changed texture panel to select ↵Anchor Linden
bakes on objects. handle magic bake ids in LLViewerObject.
2018-03-06MAINT-6363 Normal and specular maps should not be downloaded if ALM is offAndrey Kleshchev
2018-01-17Merged in lindenlab/viewer-releaseAndreyL ProductEngine
2017-12-05MAINT-2880 Particle generator object doesn't start displaying particles, ↵Mnikolenko Productengine
when unblocking the owner of this object
2017-11-29DRTVWR-418: Merge from latest viewer-releaseNat Goodspeed
2017-11-09MAINT-2880 Particle generator object doesn't start displaying particles, ↵Mnikolenko Productengine
when unblocking the owner of this object
2017-10-23MAINT-5261 The "Ping Interpolate the object position" seems to no longer workandreykproductengine
2017-10-11Automated merge with ssh://bitbucket.org/lindenlab/viewer-releaseNat Goodspeed
2017-09-07MAINT-2047 FIXED Avatar follows the object only once if change object's ↵Mnikolenko Productengine
location in Edit mode
2017-05-23DRTVWR-418: Reconcile new code with new Alex Ivy LLPipeline API.Nat Goodspeed
2017-04-18MAINT-1086 FIXED Cannot select a fully transparent object with Beacon HighlightMnikolenko Productengine
2017-01-24MAINT-6645 - Improvement - Agents that render as jelly dolls should have ↵ruslantproductengine
their attachments render at 0 LoD to prevent loading higher LoD complexity in memory thus deterring crashes. Comments: - Fix based on "RenderAutoMuteByteLimit" setting. - File indra/llxml/llcontrol.h - add all signals to 0 group. It garanty that handlers (in indra/newview/llviewercontrol.cpp) will be called last.
2016-12-05Merged in lindenlab/viewer-releaseAndreyL ProductEngine
DRTVWR-412 Bento (avatar skeleton extensions)
2016-11-16mergeBrad Payne (Vir Linden)
2016-11-14Merged in lindenlab/viewer-cleanupAndreyL ProductEngine
2016-10-12MAINT-6487 Viewer Objects should not queue too many downloadsandreykproductengine
2016-10-07MAINT-6792 Improvements for HUD warningandreykproductengine
2016-08-30Automated merge with ssh://bitbucket.org/lindenlab/viewer-releaseNat Goodspeed
2016-07-19MAINT-6574 object's text was not fading out over distance after lod info ↵andreykproductengine
debugging
2016-06-24MAINT-6487 After editing an object with a large number of contents, contents ↵andreykproductengine
in any object will not load until relog.
2016-06-22MAINT-6515 Viewer doesn't store scripted null string settext updates for ↵andreykproductengine
Metadata close refreshing.
2016-06-07SL-395 - support scale overrides (currently no way to get these into a dae, ↵Brad Payne (Vir Linden)
so the actual scale values are fabricated at run-time based on the joint name)
2016-04-04merge with 4.0.3-releaseOz Linden
2016-03-07merge DRTVWR-398 build cleanup fixesOz Linden
2016-02-19Restore cached mute check for improved performanceAnsariel
2016-01-15merge changes for 4.0.1-releaseOz Linden
2016-01-15Merge VRRider Linden
2015-11-17MAINT-5837 FIXED Hovering text is displayed when the avatar is blockedMnikolenko ProductEngine
2015-11-11Backed out changeset: a79540758404ruslantproductengine
Need backed out this changes because it influence on material update see: MAINT-5818 Also this lead to the following: UserA and UserB logged in same location. UserA edit normal/specular map texture offsets while UserB is not observe this changes.
2016-01-19correct merge problemsOz Linden
2016-01-16attempted fix for hud text mergeOz Linden
2016-01-15merge changes for 4.0.1-releaseOz Linden
2015-11-10remove execute permission from many files that should not have itOz Linden
2015-11-04MAINT-5755 FIXED Activating Show Avatar Complexity disables all llSetText ↵Mnikolenko ProductEngine
(hovertext) until relog
2015-11-02Automated merge with ssh://bitbucket.org/lindenlab/viewer-releaseNat Goodspeed
2015-10-19Merge from viewer release.Rider Linden
2015-10-13merge changes for 3.8.5-releaseOz Linden
2015-09-04MAINT-5416 FIXED Cannot right-click a rigged mesh that's wornAndreyL ProductEngine
--HG-- branch : maint-5416
2015-08-25MAINT-5547 FIXED errors when texturing a linkset "Unable to add texture. ↵andreykproductengine
Please wait a few seconds and try again."
2015-08-18MAINT-5506: Fix ugly timing bug in llurlentry static initialization.Nat Goodspeed
The problem was that class-static LLUrlEntryParcel::sRegionHost was being initialized by copying class-static LLHost::invalid. Naturally, these two statics are initialized in different source files. Since C++ makes no promises about the relative order in which objects in different object files are initialized, it seems we hit a case in which we were trying to initialize sRegionHost by copying a completely uninitialized LLHost::invalid. In general we might attempt to address such cross-translation-unit issues by introducing an LLSingleton. But in this particular case, the punch line is that LLHost::invalid is explicitly constructed identically to a default-constructed LLHost! In other words, LLHost::invalid provides nothing we couldn't get from LLHost(). All it gives us is an opportunity for glitches such as the above. Remove LLHost::invalid and all references, replacing with LLHost().