summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.cpp
AgeCommit message (Collapse)Author
2011-08-31MergeXiaohong Bao
2011-08-08mergeDave Parks
2011-07-29SH-2181 Fix for alpha flickering when basic shaders enabled (don't use ↵Dave Parks
glAlphaFunc when shaders are available). Reviewed by Leslie
2011-07-15Merge from viewer-developmentXiaohong Bao
2011-07-14Potential fix for SH-1854 and SH-1125 (caps issues)Don Kjer
2011-07-09mergeBrad Payne (Vir Linden)
2011-07-07Merge latest from viewer trunksimon@lindenlab.com
2011-07-01merge viewer-development -> mesh-developmentBrad Payne (Vir Linden)
2011-06-21fix for SH-369: [PUBLIC-JIRA-USERS] [crashhunters] ↵Xiaohong Bao
LLVOAvatar::updateImpostors crash
2011-06-21Merge with latest lindenlab/viewer-developmentsimon@lindenlab.com
2011-06-18Fix for annoying assert that gets triggered when your first login attempt fails.Dave Parks
2011-06-07SH-1595 Make rigged attachment selection more reliable (never selectable ↵Dave Parks
when not in edit mode, always accurately selectable while in edit mode).
2011-06-01SH-812 Fix for rigged meshes not showing up as rigged until LoD switch.Dave Parks
2011-05-24Merge latest from lindenlab/viewer-developmentDave SIMmONs
2011-05-23Fix for sh-788prep
2011-05-16mergeDave Parks
2011-05-13Merge latest from lindenlab/viewer-developmentDave SIMmONs
2011-05-05Work in progress on CHOP-609 / CHOP-624 build time improvements. Eliminated ↵brad kittenbrink
a bunch of unnecesary header dependencies.
2011-05-03Fix minor indentation issueDave SIMmONs
2011-04-05merge changes for STORM-1051Oz Linden
2011-03-17Work in progress. Big code cleanup ported from TheShining/avatar-physics ↵Loren Shih
(defunct branch). Added butt and belly.
2011-04-19mergeDave Parks
2011-04-04Automated merge up from viewer-development into mesh-developmentLoren Shih
2011-03-28Fix for issue caused by uploading the TurboSquid book collection (that ↵prep
avatar was having it's joints reet)
2011-03-24Crash fix for SH-1176 and WIP for pelvis z offsetprep
2011-03-16WIP:Manual pelvis offsetprep linden
2011-03-09SH-1063 Fix for some rigged attachments preventing avatars from impostoring ↵Dave Parks
(don't let rigged attachments stretch avatar bounding box beyond avatar skeleton).
2011-03-03SH-1085 Fix for crash when unchecking "mirror." Basically got LLFace to be ↵Dave Parks
paranoid about who gets to touch its LLVertexBuffer members. Reviewed by Nyx.
2011-02-23MergeXiaohong Bao
2011-02-19Automated merge with file:///Users/oz/Work/V-DOz Linden
2011-02-19Merge of ssh://hg.lindenlab.com/nat/viewer-eventapi2/Don Kjer
2011-02-18Cleanup of headless client (was: DisableRendering mode)Don Kjer
* Now called 'HeadlessClient' instead of 'DisableRendering' * Removed most cases where we skipped certain behaviors in the client when in this mode. This gets us closer to a 'true' client, for testing purposes.
2011-02-18Code cleanup and removed hacky code support for some old legacy rig typesprep linden
2011-02-17Another part of the pelvis fix. Sh-634prep
2011-02-16Fix for problem with pelvis offsetprep
2011-02-16Fix for SH-816prep
2011-02-11SH-912 Fix for avatar impostors glitching out at weird angles.Dave Parks
2011-02-10Automated merge up from viewer-development into mesh-developmentLoren Shih
2011-02-07SH-930 FIX revert ARC algorithm for merge to viewer-developmentNyx (Neal Orman)
Reverting incomplete changes to ARC so that we don't change RC when we merge down.
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.
2011-01-28SH-808 making sure the 10m vs. 64m scale limit switch happens for both the ↵leyla_linden
spinner and the manipulation tools etc.
2011-01-27Renamed functionprep linden
2011-01-27Renamed functionprep linden
2011-01-27Optimization so that updateRiggedAttachments is not called every frame - ↵prep linden
still a WIP.
2011-01-27Rebuild attached rigs during attachObjectprep linden
2011-01-14mergeprep linden
2011-01-14voice dot is positioned consistentlyprep linden
2011-01-13merge up to latest viewer-developmentOz Linden
2011-01-13Automated merge up from viewer-developmentLoren Shih
2011-01-12Fix for Sh-780 and tweak for nametag height (Sh-638).prep linden