Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-09 | MAINT-8974 Reduce default settings for intel GPUs in case of failed benchmark | andreykproductengine | |
2018-08-06 | MAINT-8197 Compliment benchmark crash processing with SEH handling | andreykproductengine | |
2018-06-11 | Merged lindenlab/viewer-neko into default | Andrey Lihatskiy | |
2018-06-07 | MAINT-8730 Remove unused fetchFeatureTable code | andreykproductengine | |
2018-06-04 | MAINT-8721 Enabled benchmarking for Intel GPUs | AndreyL ProductEngine | |
2018-01-17 | merge 5.1.0-release | Oz Linden | |
2017-10-11 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2017-10-11 | merge changes for 5.0.8-release | Oz Linden | |
2017-07-12 | add logging for skipping benchmark (and fixed some log tags) | Oz Linden | |
2017-07-06 | fix missing declaration | Glenn Glazer | |
2017-07-06 | upgrade to VMP package 507104 | Glenn Glazer | |
2017-08-25 | MAINT-7739 Make LLOSInfo a Singleton | andreykproductengine | |
2017-05-15 | add some extra logging to feature table parsing | Oz Linden | |
2017-05-02 | DRTVWR-418, MAINT-6996: Rationalize LLMemory wrt 64-bit support. | Nat Goodspeed | |
There were two distinct LLMemory methods getCurrentRSS() and getWorkingSetSize(). It was pointless to have both: on Windows they were completely redundant; on other platforms getWorkingSetSize() always returned 0. (Amusingly, though the Windows implementations both made exactly the same GetProcessMemoryInfo() call and used exactly the same logic, the code was different in the two -- as though the second was implemented without awareness of the first, even though they were adjacent in the source file.) One of the actual MAINT-6996 problems was due to the fact that getWorkingSetSize() returned U32, where getCurrentRSS() returns U64. In other words, getWorkingSetSize() was both useless *and* wrong. Remove it, and change its one call to getCurrentRSS() instead. The other culprit was that in several places, the 64-bit WorkingSetSize returned by the Windows GetProcessMemoryInfo() call (and by getCurrentRSS()) was explicitly cast to a 32-bit data type. That works only when explicitly or implicitly (using LLUnits type conversion) scaling the value to kilobytes or megabytes. When the size in bytes is desired, use 64-bit types instead. In addition to the symptoms, LLMemory was overdue for a bit of cleanup. There was a 16K block of memory called reserveMem, the comment on which read: "reserve 16K for out of memory error handling." Yet *nothing* was ever done with that block! If it were going to be useful, one would think someone would at some point explicitly free the block. In fact there was a method freeReserve(), apparently for just that purpose -- which was never called. As things stood, reserveMem served only to *prevent* the viewer from ever using that chunk of memory. Remove reserveMem and the unused freeReserve(). The only function of initClass() and cleanupClass() was to allocate and free reserveMem. Remove initClass(), cleanupClass() and the LLCommon calls to them. In a similar vein, there was an LLMemoryInfo::getPhysicalMemoryClamped() method that returned U32Bytes. Its job was simply to return a size in bytes that could fit into a U32 data type, returning U32_MAX if the 64-bit value exceeded 4GB. Eliminate that; change all its calls to getPhysicalMemoryKB() (which getPhysicalMemoryClamped() used internally anyway). We no longer care about any platform that cannot handle 64-bit data types. | |||
2016-05-27 | MAINT-6435 Deafult preset should set the same settings as the "Reset to ↵ | AndreyL ProductEngine | |
recommended settings" button | |||
2016-05-02 | Fixed startup crash on Windows | Ansariel Hiller | |
2016-04-29 | Adjust some avatar complexity defaults (mostly slightly upwards) | Oz Linden | |
Make more settings between mac and windows the same Remove solaris and xp featuretables, since we don't support them any more | |||
2016-04-04 | merge with 4.0.3-release | Oz Linden | |
2016-03-07 | merge DRTVWR-398 build cleanup fixes | Oz Linden | |
2016-01-15 | merge changes for 4.0.1-release | Oz Linden | |
2016-01-15 | Merge VR | Rider Linden | |
2016-01-15 | merge changes for 4.0.1-release | Oz Linden | |
2015-11-10 | remove execute permission from many files that should not have it | Oz Linden | |
2015-11-02 | MAINT-5743 Fixed Remove gpu_table and references to it from viewer packaging | andreykproductengine | |
2015-09-18 | Set consistent terminology for yield/wait -> suspend for coroutines. | Rider Linden | |
2015-09-03 | Correct use of filename vs. path in llfeaturemanager coroutine. | Rider Linden | |
2015-08-31 | add some debug logging, fix broken indentation | Oz Linden | |
2015-07-10 | Backed out changeset bab1000e1b2d: restore 'selfless' changes | Nat Goodspeed | |
2015-07-07 | Backout selfles merge 738255dbbfd679d9e615baab3398e5e345bbb3c5 | Rider Linden | |
2015-07-01 | MAINT-5351: Remove 'self' parameter from coroutine functions. | Nat Goodspeed | |
lleventcoro_test.cpp runs clean (as modified for new API), and all the rest builds clean, but the resulting viewer is as yet untested. | |||
2015-06-15 | merge changes for 3.7.30-release | Oz Linden | |
2015-06-03 | Remove vestigial httpclient.h include from files that no longer need it. | Rider Linden | |
2015-05-15 | Address Nat's concerns about the const_cast<> and modification of a binary ↵ | Rider Linden | |
object wrapped in an LLSD object. | |||
2015-05-11 | table -> tableName for non windows builds. | Rider Linden | |
2015-05-11 | Updated feature manager downloader to coroutine. | Rider Linden | |
Added "raw" coroutine handler (returns raw result as LLSD::Binary) and split out the guts of the get, put, etc methods. Moved getStatusFromLLSD from HttpCoroHandler into HttpCorutineAdapter | |||
2015-04-10 | restore the ll[io]fstream because we need them as wrappers on Windows for ↵ | Oz Linden | |
wide char paths; on other platforms they are now just typedefs to the std classes | |||
2015-04-07 | replace llifstream and llofstream with std::ifstream and std::ofstream ↵ | Oz Linden | |
respectively | |||
2015-04-07 | convert llifstream and llofstream to std::ifstream and std::ofstream ↵ | Oz Linden | |
respectively | |||
2015-02-20 | Clean up impostors and visual muting | Oz Linden | |
Rename the settings that control them to be more descriptive Remove the separate boolean setting (RenderUseImpostors) that governed both Establish default values based on gpu class for impostors and visual muting | |||
2014-12-15 | merge changes for 3.7.22-release | Oz Linden | |
2014-12-01 | remove unused gpu table code, improve logging for gpu benchmarks | Oz Linden | |
2014-11-24 | Attempt to thread needle for guesstimation phase of GPU classification | Graham Linden | |
2014-11-21 | Tweak conversion from tested bandwidth to get better reads on low-end systems | Graham Linden | |
2014-11-20 | Put back old thresholds to try to get better match on old/new identification ↵ | Graham Linden | |
per-card | |||
2014-11-18 | Adjust gpu_bench thresholds and move VB set outside loop again for speed | Graham Linden | |
2014-11-14 | Comment out now-unused GPU_TABLE_FILENAME in llfeaturemanager.cpp. | Nat Goodspeed | |
The "death to the GPU table" change has commented out the only references to the GPU_TABLE_FILENAME constant, and Xcode 6.x regards that as an error. | |||
2014-09-19 | MAINT-3131 Discard improbably high memory bandwidth measurements on OSX and ↵ | davep | |
default to Class 3 | |||
2014-06-19 | Automated merge with http://bitbucket.org/lindenlab/viewer-release | Dave Parks | |
2014-05-14 | v-r -> s-e merge WIP | Brad Payne (Vir Linden) | |
2014-05-13 | sunshine-external merge WIP | Brad Payne (Vir Linden) | |