summaryrefslogtreecommitdiff
path: root/indra/llcharacter
AgeCommit message (Collapse)Author
2011-08-31MergeXiaohong Bao
2011-08-17convert tabs to spaces where they are forbiddenOz Linden
2011-07-15Merge from viewer-developmentXiaohong Bao
2011-06-30merge changes for shining branchOz Linden
2011-06-28Crashfix for SEC-906Aura Linden
2011-06-21fix for SH-369: [PUBLIC-JIRA-USERS] [crashhunters] ↵Xiaohong Bao
LLVOAvatar::updateImpostors crash
2011-05-02mergeDave Parks
2011-03-12Switched to using *_SQUARED constants instead of multiplied constants, and ↵Ricky Curtice
cleaned up a few other minor issues noted during review.
2011-03-10Squared all dist_vec() based comparisons and other dist_vec() operations ↵Ricky Curtice
where sensible. Not all instances of dist_vec() were squared, only those where it wouldn't (hopefully) change the functionality.
2011-02-23MergeXiaohong Bao
2011-02-16Fix for SH-816prep
2011-02-10Automated merge up from viewer-development into mesh-developmentLoren Shih
2011-02-05Introduces a LLThreadLocalData class that can beAleric Inglewood
accessed through the static LLThread::tldata(). Currently this object contains two (public) thread-local objects: a LLAPRRootPool and a LLVolatileAPRPool. The first is the general memory pool used by this thread (and this thread alone), while the second is intended for short lived memory allocations (needed for APR). The advantages of not mixing those two is that the latter is used most frequently, and as a result of it's nature can be destroyed and reconstructed on a "regular" basis. This patch adds LLAPRPool (completely replacing the old one), which is a wrapper around apr_pool_t* and has complete thread-safity checking. Whenever an apr call requires memory for some resource, a memory pool in the form of an LLAPRPool object can be created with the same life-time as this resource; assuring clean up of the memory no sooner, but also not much later than the life-time of the resource that needs the memory. Many, many function calls and constructors had the pool parameter simply removed (it is no longer the concern of the developer, if you don't write code that actually does an libapr call then you are no longer bothered with memory pools at all). However, I kept the notion of short-lived and long-lived allocations alive (see my remark in the jira here: https://jira.secondlife.com/browse/STORM-864?focusedCommentId=235356&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-235356 which requires that the LLAPRFile API needs to allow the user to specify how long they think a file will stay open. By choosing 'short_lived' as default for the constructor that immediately opens a file, the number of instances where this needs to be specified is drastically reduced however (obviously, any automatic LLAPRFile is short lived). *** Addressed Boroondas remarks in https://codereview.secondlife.com/r/99/ regarding (doxygen) comments. This patch effectively only changes comments. Includes some 'merge' stuff that ended up in llvocache.cpp (while starting as a bug fix, now only resulting in a cleanup). *** Added comment 'The use of apr_pool_t is OK here'. Added this comment on every line where apr_pool_t is correctly being used. This should make it easier to spot (future) errors where someone started to use apr_pool_t; you can just grep all sources for 'apr_pool_t' and immediately see where it's being used while LLAPRPool should have been used. Note that merging this patch is very easy: If there are no other uses of apr_pool_t in the code (one grep) and it compiles, then it will work. *** Second Merge (needed to remove 'delete mCreationMutex' from LLImageDecodeThread::~LLImageDecodeThread). *** Added back #include <apr_pools.h>. Apparently that is needed on libapr version 1.2.8., the version used by Linden Lab, for calls to apr_queue_*. This is a bug in libapr (we also include <apr_queue.h>, that is fixed in (at least) 1.3.7. Note that 1.2.8 is VERY old. Even 1.3.x is old. *** License fixes (GPL -> LGPL). And typo in comments. Addresses merov's comments on the review board. *** Added Merov's compile fixes for windows.
2010-12-30STORM-955: VWR-24312: Massively duplicated objectsAleric Inglewood
Turns out that most of my SNOW-800 patch was included in Viewer 2 (albeit without crediting me). However, not everything was used and some more cleaning up was possible. After this patch, and when compiling with optimization, there are no duplicates left anymore that shouldn't be there in the first place. Apart from the debug stream iostream guard variable, there are several static variables with the same name (r, r1, r2, etc) but that indeed actually different symbol objects. Then there are a few constant POD arrays that are duplicated a hand full of times because they are accessed with a variable index (so optimizing them away is not possible). I left them like that (although defining those as extern as well would have been more consistent and not slower; in fact it would be faster theoretically because those arrays could share the same cache page then).
2010-12-03Fix for SH-479prep linden
2010-10-13correct licenses (fix problem with license change merge)Oz Linden
2010-10-05Reset joint positions after detaching a rigged modelprep linden
2010-09-30Put some errant tests under if (LL_TESTS) conditional.Dave Parks
2010-09-27mergeDave Parks
2010-09-24Added support for joint offsetsprep linden
2010-09-21Fix for build failures - disabling tcmalloc for nowBrad Payne (Vir Linden)
2010-08-25mergeDave Parks
2010-08-24standardizing test suite names as class name under testAaron Terrell (Enus)
2010-08-19Integrate SIMD API from oreh/server-trunk-orehDave Parks
2010-08-18VWR-20768 (SNOW-507) FIXED Missing LL_TEST conditions in cmake filesAimee Linden
2010-08-13Change license from GPL to LGPL (version 2.1)Oz Linden
2010-08-05EXT-8304 FIXED [crashhunters] crash in LLKeyframeMotion::deserializeTofu Linden
Speculative bunch of robustification. Reviewed by Soft.
2010-08-02Redo the same merge as in changeset "2026f824953f", but this time with ↵Christian Goetze (CG)
feeeeling.
2010-07-30Merge from q/viewer-release to dessie/viewer-release for 2.1.1 beta 1Kent Quirk
2010-07-27Backed out changeset: 58571b4e704bRichard Linden
2010-07-15Reverted changeset 2bb10eae42bfDessie Linden
2010-07-15EXT-8374 FIXED Added possibility to localize "None" action value for ↵Mike Antipov
Animation and Sound Actions. Also changed hardcoded "until animations are done" value for Wait with label from the appropriate Floater checkbox. Reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/762/ --HG-- branch : product-engine
2010-07-12SNOW-484/DEV-51808 FIXED Recursive animations can crash viewerAimee Linden
2010-06-30EXT-8177 FIX avatar walk/run animation periodically stops when going down a ↵Richard Linden
steep hill
2010-06-24EXT-7838 FIX - viewer 2.1 avatars look ruth-shaped to viewer-2 usersNyx (Neal Orman)
Added a third visual param group VISUAL_PARAM_GROUP_TWEAKABLE_NO_TRANSMIT to specify visual params that are user-tweakable, but should not be sent over the network. We should have this group *only* for new user-tweakable visual parameters that should not be sent over the network. These should only be used for *new* parameters that only contribute to the generation of baked textures. Code reviewed by Richard
2010-06-17EXT-7916 FIXED Miscllaneous UI issues with Preview Gesture FloaterLoren Shih
See subtasks for complete lists of fixes. The preview gesture floater had some major issues and regressions.
2010-06-15EXT-6953 WIP fixed walk cycle foot slip feedback to not speed up animation ↵Richard Linden
so much also, made camera default target and offset live-settable for debugging reviewed by vir
2010-06-01EXT-7499 WIP Prevent other avatars from remaining with a ruth shapeTofu Linden
to be reviewed by nyx.
2010-05-27EXT-6953 WIP - pre-push cleanup after review. Accumulated EXT-6953 commits ↵Brad Payne (Vir Linden)
reviewed by Nyx.
2010-05-27EXT-6953 WIP - cleanupBrad Payne (Vir Linden)
2010-05-07For EXT-6953: Evaluate and implement Richard's improved default animations. ↵Brad Payne (Vir Linden)
Cleanup and log spam reduction.
2010-05-06Improved default animations - work in progressBrad Payne (Vir Linden)
2010-04-30For EXT-6953: Evaluate and implement Richard's improved default animations. ↵Brad Payne (Vir Linden)
Diagnostic info.
2010-04-29For EXT-6953: Evaluate and implement Richard's improved default animations. ↵Brad Payne (Vir Linden)
New versions of animations fix looping and other problems, reduced log spam.
2010-04-27work in progress on improved default animationsBrad Payne (Vir Linden)
2010-04-26Improved default animations - work in progressBrad Payne (Vir Linden)
2010-04-23Improved default animations - work in progressBrad Payne (Vir Linden)
2010-04-21For EXT-6953: improved default animations.Brad Payne (Vir Linden)
2010-04-20For EXT-6953: improved default animations. Moved LLUUID values to .cpp fileBrad Payne (Vir Linden)
2010-04-09EXT-6422 Infinite loop in LLMotionController::activateMotionInstanceRichard Nelson
reviewed by monroe