summaryrefslogtreecommitdiff
path: root/indra/newview/llnetmap.cpp
AgeCommit message (Collapse)Author
2022-10-20SL-18423 Post-merge: restore RyeMutt's fix from SL-18412Andrey Lihatskiy
2022-10-20Merge branch 'master' into DRTVWR-570-maint-QAndrey Lihatskiy
# Conflicts: # indra/newview/llnetmap.cpp # indra/newview/llnetmap.h
2022-10-19Fix various menu leaks and lazy creation in chiclets, bump floater, media ↵Rye Mutt
controls, and the mini map
2022-05-26Merge branch 'master' into DRTVWR-548-maint-NAndrey Lihatskiy
2022-05-20SL-17463: Set the default for MiniMapRotate back to true (enable minimap ↵Cosmic Linden
rotation by default), but set MiniMapRotate to false for new installs
2022-04-05SL-17058: Remove redundant minimap frustum color, hopefully fixing mac build.Cosmic Linden
So THAT's why the frustum transparency was different when rotating...
2022-04-05SL-17058: Convert frustum on minimap to arc from triangleCosmic Linden
2022-04-05SL-16916: Grey out "About Land" button in minimap context menu when land ↵Cosmic Linden
info is likely unavailable
2022-04-05SL-16916: Update minimap context menu with new options and reworded existing ↵Cosmic Linden
options Map rotation: Split minimap "Rotate Map" context menu option into two options: "North at top" and "Camera at top" Zoom: - Adjust minimap context menu zoom presets: New presets are "far", "medium", "close", and "very close" - Change default minimap zoom level from 128 to 64 - Currently selected minimap zoom level is now checked About Land: Add "About Land" button to minimap context menu Reword: Rearrange and adjust capitalization of the various context menu options Code change: Remove unused zoom handling code in LLFloaterMap
2022-04-05SL-16918: Fix unneeded assignment to centered in LLNetMap::draw()Cosmic Linden
2022-03-03SL-16918: Re-add "Auto-center map" button to minimap context menu, enable ↵Cosmic Linden
minimap auto-center by default again
2022-03-03SL-16918: Minimap navigation improvements: Drag without holding shift, ↵Cosmic Linden
remove auto center, click button to re-center
2022-03-03SL-16824: Fix minimap tooltip hint not updating until viewer restart (double ↵Cosmic Linden
click to show map vs double click to teleport)
2022-03-03SL-16824: Change minimap hover tooltip. Show parcel name, owner name, and/or ↵Cosmic Linden
for sale info when available. Remove "shift-drag to pan" hint.
2022-02-23SL-16857: Display parcel borders on the minimap, enable by default, right ↵Cosmic Linden
click context menu option to disable
2022-02-21SL-16887 FIXED Crash in LLNetMap::drawMnikolenko Productengine
2021-11-30SL-16386 replace gutted LLRender::setAlphaRejectSettings() with explicit flush()Dave Houlton
2021-10-11SL-16099 Multi-threaded OpenGL usage on Windows, enable Core Profile and ↵Dave Parks
VAOs by default.
2019-11-12Downstream merge from lindenlab/viewer-servalAndreyL ProductEngine
2019-09-26SL-12016 Mini-map avatar icon (Z-position) fixAndreyL ProductEngine
2019-08-10DRTVWR-493 LLUI to LLParamSingletonandreykproductengine
2016-12-20DRTVWR-418: Fix API for LLTracker::stopTracking().Nat Goodspeed
The signature for LLTracker::stopTracking() was silly: it accepted a void* for the sole purpose of testing whether it was NULL. In other words, the parameter was really a bool in void* clothing. Most callers passed NULL. What got ugly was when you wanted to pass 'true', or a variable bool value. Such values had to be cast to void*. In 64-bit land, the compiler correctly flags that as extremely dubious practice. But it's entirely unnecessary. Since stopTracking() wants a bool, change its parameter to bool. Everybody wins. (While at it, change a few related method params from BOOL to builtin bool.)
2016-04-22x64: Do not use a union of LLColor4U. Especially having the two pointer in ↵Nicky
there will blow up the struct to at least 8 byte, which will break VBO packing as this class needs to be 4 byte in size. (transplanted from 847df86d6b5daa69dcfc428df18876a9c1e8bef6)
2016-03-07merge DRTVWR-398 build cleanup fixesOz Linden
2015-11-10remove execute permission from many files that should not have itOz Linden
2015-07-30merge changes for other open sourc contributionsOz Linden
2014-12-10Rename llround(..) to ll_round(..) because of a collision with MS llround ↵callum_linden
(long long round) in VS2013
2014-12-05STORM-2088 Minimap no longer remembers zoom setting between sessionsJonathan Yap
2014-10-19Update to build on Xcode 6.0: removal of some unused variablescallum_linden
2013-11-06merge with releaseRichard Linden
2013-07-23STORM-1958: Only draw the user's netmap dot onceCinder Roxley
2013-06-05merge with viewer-releaseRichard Linden
2013-04-19merge changes for DRTVWR-294Oz Linden
2013-03-29Update Mac and Windows breakpad builds to latestGraham Madarasz
2013-03-18SH-3931 WIP Interesting: Add graphs to visualize scene load metricsRichard Linden
changed LLCriticalDamp to LLSmoothInterpolation and sped up interpolator lookup improvements to stats display of llstatbar added scene load stats floater accessed with ctrl|shift|2
2012-10-11Updating linux build to gcc4.6Don Kjer
2012-01-27STORM-1793 1) Treat all mini-map altitudes above 1020 m as the same height ↵Jonathan Yap
2) Improve z-level accuracy With help from Aleric Inglewood
2011-09-14SH-2243 work in progress -- application side matrix stack managementDave Parks
2011-04-29Merged with viewer-development.Ricky Curtice
The reason was to manually resolve a couple of merge problems, as upstream has had several changes since this was applied, and some of the changes overlapped.
2011-03-21merge changes for storm-971Oz Linden
2011-03-14STORM-971 FIXED Disable the 'Stop Tracking' menu item in Mini-map floater ↵Vadim ProductEngine
when tracking gets stopped. - Removed the menu from LLFloaterMap (the mini-map floater) that had conflicted with the one in the LLNetMap widget. - Fixed updating of the "Stop Tracking" menu item; moved that code out of draw() to avoid excessive updates. - Preventively fixed LLTracker::isTracking() to return strictly 1 or 0 (BOOL is known to cause hard-to-debug side effects with values > 1 because it's essentially just an int and thus doesn't enforce any limitations on the value).
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-03-02SOCIAL-622 FIX Double clicking on mini map in people panel places a red ↵Richard Linden
circle that cannot be removed and tooltip references opening world map
2011-03-01SOCIAL-612 FIX Double Click on mini-map in People Nearby tab opens world mapRichard Linden
double click does nothing now
2011-01-26Embed Minimap into the Nearby list of the People SidebarTwisted Laws
2010-12-18STORM-467 Fix for minimap zoom does not persist to the next sessionJonathan Yap
2010-09-07VWR-17653 (SNOW-734) FIXED Show inspectors for avatars on the MiniMapAimee Linden
Reworked, as the original version clashed with the display names merge.
2010-09-03Post-convert merge by convert_monolith.py from ↵Aimee Linden
/Users/Aimee/Documents/Work/Linden-Lab/Development/viewer/convert/viewer-identity-evolution
2010-09-01VWR-13221 (SNOW-188) SUPPLEMENTARY Allow panning of the minimapAimee Linden
Fix Linux build.