Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-19 | BUILDFIX: fixed some units errors | Richard Linden | |
2013-08-19 | merge | Richard Linden | |
2013-08-18 | SH-4433 WIP: Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
continued conversion to units system made units perform type promotion correctly and preserve type in arithmetic e.g. can now do LLVector3 in units added typedefs for remaining common unit types, including implicits | |||
2013-08-16 | Automated merge with http://bitbucket.org/lindenlab/viewer-interesting | Xiaohong Bao | |
2013-08-16 | fix for SH-4297: interesting: viewer-interesting starts loading cached scene ↵ | Xiaohong Bao | |
late | |||
2013-08-16 | Automated merge with http://bitbucket.org/lindenlab/viewer-interesting | Richard Linden | |
2013-08-16 | SH-4433 WIP: Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
converted many values over to units system in effort to track down source of 0 ping | |||
2013-08-15 | BUILDFIX: mac | Richard Linden | |
2013-08-15 | removed bad XUI that was generating warnings | Richard Linden | |
2013-08-15 | MAINT-2938 FIXED [CHUI] crash in LLFloaterConversationPreview::showHistory() | maksymsproductengine | |
2013-08-15 | MAINT-3012 FIXED Don't show Destination Guide by default on first run. | Mnikolenko ProductEngine | |
2013-08-15 | moved unit types out of LLUnits namespace, since they are prefixed | Richard Linden | |
2013-08-14 | BUILDFIX: converted platform-specific files over to new LL_INFOS, etc macros | Richard Linden | |
fixed bad search and replace | |||
2013-08-14 | BUILDFIX: converted platform-specific files over to new LL_INFOS, etc macros | Richard Linden | |
2013-08-14 | BUILDFIX: converted platform-specific files over to new LL_INFOS, etc macros | Richard Linden | |
2013-08-14 | BUILDFIX: more gcc fixes | Richard Linden | |
2013-08-14 | BUILDFIX: gcc fixes | Richard Linden | |
2013-08-14 | BUILDFIX: removed problematic constants for linux build | Richard Linden | |
2013-08-14 | Automated merge with http://bitbucket.org/lindenlab/viewer-interesting | Richard Linden | |
2013-08-14 | Automated merge with http://bitbucket.org/lindenlab/viewer-interesting | Xiaohong Bao | |
2013-08-14 | enable far clip plane culling on object cache view culling | Xiaohong Bao | |
2013-08-14 | remove some code which has nagetive impact on memory footprint. | Xiaohong Bao | |
2013-08-14 | BUILDFIX: added header for numeric_limits support on gcc | Richard Linden | |
added convenience types for units F32Seconds, etc. | |||
2013-08-13 | SH-4346 FIX Interesting: some integer Statistics are displayed as floating ↵ | Richard Linden | |
point after crossing region boundary fine-tuned heuristics for switching between mean and current values in stat bar display added comments to LLUnits unit test | |||
2013-08-14 | BUG-3605 / CHUIBUG-197 Don't create excessive amounts of string objects in ↵ | Nicky | |
LLNormalTextSegment::getNumChars. | |||
2013-08-13 | MAINT-2937 FIXED [CHUI] crash in LLToastIMPanel | maksymsproductengine | |
2013-08-12 | Backed out changeset: ed09997b4652 | Richard Linden | |
2013-08-12 | merge | Richard Linden | |
2013-08-12 | disable scene load timing info by default | Richard Linden | |
2013-08-12 | SH-4399 FIX: Interesting: Texture console MB Bound 0/384 and texture queue ↵ | Richard Linden | |
bounces once per second SH-4346 FIX: Interesting: some integer Statistics are displayed as floating point after crossing region boundary made llerrs/infos/etc properly variadic wrt tags LL_INFOS("A", "B", "C") works, for example fixed unit tests remove llsimplestat | |||
2013-08-09 | second phase summer cleaning | Richard Linden | |
replace llinfos, lldebugs, etc with new LL_INFOS(), LL_DEBUGS(), etc. | |||
2013-08-09 | SH-4374 FIX Interesting: Statistics Object cache hit rate is always 100% | Richard Linden | |
moved object cache sampling code so that it actually gets executed default values for stats are NaN instead of 0 in many cases | |||
2013-08-09 | fix for SH-4394: Interesting: viewer culls lights behind the camera, ↵ | Xiaohong Bao | |
changing the scene lighting | |||
2013-08-08 | fix for SH-4402: interesting: lower FPS with lots of objects in view | Xiaohong Bao | |
2013-08-07 | more fix for SH-4397: Object cache occlusion culling results are not always ↵ | Xiaohong Bao | |
correct | |||
2013-08-07 | more fix for SH-4397: Object cache occlusion culling results are not always ↵ | Xiaohong Bao | |
correct | |||
2013-08-07 | merge changes for DRTVWR-333 | Oz Linden | |
2013-08-06 | fix for SH-4398: Interesting: viewer crash in ↵ | Xiaohong Bao | |
LLVOCacheEntry::updateParentBoundingInfo | |||
2013-08-06 | revert some LLUnit changes to temporarily fix SH-4399: Interesting: Texture ↵ | Xiaohong Bao | |
console MB Bound 0/384 and texture queue bounces once per second | |||
2013-08-05 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2013-08-05 | CHOP-951, IQA-1477: Validate args for numeric command-line switches. | Nat Goodspeed | |
The logic in llcommandlineparser.cpp's setControlValueCB() callback function for converting command-line switch argument values from string to the actual type of the map-to settings variable had a couple special cases for boolean and LLSD array. But for S32, U32 and F32, it simply used default LLSD string-to-numeric conversion. LLSD's string-to-numeric conversion is a bit lame: for non-numeric strings, it shrugs and returns 0. Introduce onevalue() and badvalue() helper functions that, like certain errors during command-line parsing, throw LLCLPError. Use them to streamline certain redundancies in setControlValueCB(). Introduce convertTo<T>() helper function that uses boost::lexical_cast() for slightly more stringent conversions. Add cases for U32, S32 and F32 targets. setControlValueCB() is actually called only by LLControlGroupCLP::notify(), not during actual command-line parsing. Make LLControlGroupCLP::notify() return bool. Make it catch LLCLPError, set the error for getErrorMessage() and return false on that exception. Package LLAppViewer::initConfiguration()'s response to initParseCommandLine() returning false as a new handleCommandLineError() function; invoke it both there and when LLControlGroupCLP::notify() returns false. | |||
2013-08-05 | Pull merge from lindenlab/viewer-release | Merov Linden | |
2013-08-05 | fix for SH-4397: Object cache occlusion culling results are not always correct | Xiaohong Bao | |
2013-08-05 | merge changes for 3.6.2-release | Oz Linden | |
2013-08-05 | correct coding standards problems | Oz Linden | |
2013-08-05 | Merge viewer-release with Vivox code | simon | |
2013-08-05 | merge changes for 3.6.2-release | Oz Linden | |
2013-08-05 | increment viewer version to 3.6.3 | Oz Linden | |
2013-08-05 | Added tag 3.6.2-release for changeset f6741d5fe8d6 | Oz Linden | |
2013-08-02 | CHOP-959: merge --graphicslevel fix up to tip | Nat Goodspeed | |