Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-03 | MAINT-9076 Improved support for Retina Displays | ruslantproductengine | |
2019-04-22 | SL-10828 [Dev tools] Scroll for fast timer | andreykproductengine | |
2019-04-06 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-04-06 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-04-06 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-04-02 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-03-01 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2019-02-25 | SL-10326 Restore ability to select own avatar and move it via manipulation ↵ | maxim_productengine | |
arrows | |||
2018-08-02 | merge | Brad Payne (Vir Linden) | |
2018-07-16 | MAINT-8844 Fixed selection inconsistancies (inworld manipulation vs tool ↵ | andreykproductengine | |
floater) | |||
2018-06-21 | merge | Brad Payne (Vir Linden) | |
2018-06-20 | MAINT-8764 FIXED Crash in LLViewerWindow::saveImageNumbered() | maxim_productengine | |
2018-06-01 | MAINT-8712 Crash on close in LLWindowWin32 | Andrey Kleshchev | |
2018-06-12 | MAINT-8727 FIXED Saving snapshot will cause disconnect if you do not choose ↵ | maxim_productengine | |
path in File picker quickly | |||
2018-05-03 | MAINT-1421 FIXED "Show Memory" doesn't display memory stats on mac | maxim_productengine | |
2018-05-18 | merge | Brad Payne (Vir Linden) | |
2018-04-25 | MAINT-8549 - more on animesh ARC and associated refactoring | Brad Payne (Vir Linden) | |
2018-03-02 | merge | Brad Payne (Vir Linden) | |
2018-02-15 | Fix batch display in avatar render info (%d is not for doubles). | Graham Linden graham@lindenlab.com | |
2018-02-15 | Add debug setting and code to allow nVidia nSight graphics debugging to ↵ | Graham Linden graham@lindenlab.com | |
capture SL frames. These changes are only enabled if RenderNsightDebugSupport is true and eliminate use of some OpenGL legacy functionality which is incompatible with nSight capture (mostly glReadPixels and other fixed-function pipe rendering calls). | |||
2018-01-30 | MAINT-8091 Removed deprecated and unused private memory pooling | Andrey Kleshchev | |
2018-01-17 | MAINT-8183 Additional logging | andreykproductengine | |
2018-01-17 | merge | Brad Payne (Vir Linden) | |
2018-01-17 | MAINT-8183 Additional logging | andreykproductengine | |
2018-01-17 | Merged in lindenlab/viewer-release | AndreyL ProductEngine | |
2017-12-19 | SL-713, MAINT-7709 - experimental setting to allow left-click interaction ↵ | Brad Payne (Vir Linden) | |
with animesh. Disabled by default. Still doesn't work in all cases and has significant performance impact | |||
2017-12-12 | MAINT-8071 Handle initialization crash better | andreykproductengine | |
2017-12-05 | Merged in lindenlab/viewer-bear | AndreyL ProductEngine | |
2017-12-05 | revert change for MAINT-8017 | Mnikolenko Productengine | |
2017-12-01 | MAINT-8036 Fixed Viewer freezing when overwriting existing snpshot with new one. | andreykproductengine | |
2017-11-29 | DRTVWR-418: Merge from latest viewer-release | Nat Goodspeed | |
2017-11-24 | MAINT-8017 Avatar walks in half-bent position , without disabling "away" status | Mnikolenko Productengine | |
2017-10-11 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2017-08-16 | merge changes for DRTVWR-439 | Oz Linden | |
2017-08-30 | MAINT-7757 FIXED [MAC] Crash in LLViewerWindow::saveImageNumbered | Mnikolenko Productengine | |
2017-06-09 | MAINT-7477 FIXED [viewer-neko] Viewer crashes when saving snapshot to disk ↵ | Mnikolenko Productengine | |
and closing file picker window | |||
2017-05-24 | MAINT-4375 Viewer saves an empty snapshots if disk is full | daianakproductengine | |
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. | |||
2017-04-21 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2017-09-26 | MAINT-1208 Fixed 'Save as' screenshot dialog doesn't allow to save ↵ | daianakproductengine | |
screenshot without automatically adding number to name of file | |||
2017-03-14 | MAINT-1800 Menu item appears at the top of the screen during teleporting | andreykproductengine | |
2017-02-03 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |
2016-12-20 | DRTVWR-418: Rationalize LLPipeline API. | Nat Goodspeed | |
Someone evidently figured every static LLPipeline method should have at least one void* parameter. There were methods requiring void* parameters that were completely ignored. More to the point, there were methods whose callers have a U32 in hand -- and which want to use a U32 -- but which bizarrely forced callers to cast to void* just so the method could cast back to U32. In a 64-bit compile, this isn't merely pointless, it's erroneous. Change all such methods to accept U32; remove (void*) casts from call sites. While at it, fix LLPipeline API to use bool, true, false rather than their obsolete all-caps predecessors. Once you eat that first potato chip... :-P | |||
2016-11-25 | Fix UI scaling changed notice showing up on startup if system UI scale ↵ | Ansariel | |
factor changed during last session | |||
2016-11-25 | Don't resize viewer window if UI scaling didn't change | Ansariel | |
2016-11-08 | MAINT-6914 Increase maximum UI size value to 4.0 | AndreyL ProductEngine | |
2016-11-14 | Merged in lindenlab/viewer-cleanup | AndreyL ProductEngine | |
2016-09-30 | MAINT-6786 scale gets out of bonds and causes crash | andreykproductengine | |
2016-09-26 | MAINT-6744 'System UI size factor has changed... ' shouldn't appear after ↵ | AndreyL ProductEngine | |
installation | |||
2016-09-16 | Automated merge with ssh://bitbucket.org/lindenlab/viewer-release | Nat Goodspeed | |