diff options
author | Richard Linden <none@none> | 2013-10-01 13:46:43 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-10-01 13:46:43 -0700 |
commit | 12f0f8cb72f789e21b01b45063dcc5f1f5292087 (patch) | |
tree | d8777341699dcea574e261da8c982ad22860de13 /indra/newview/skins | |
parent | a96da325564f4e9769e85ad006f98a4ac08d4a47 (diff) |
changed over to manual naming of MemTrackable stats
changed claimMem and disclaimMem behavior to not pass through argument
added more mem tracking stats to floater_stats
Diffstat (limited to 'indra/newview/skins')
-rwxr-xr-x | indra/newview/skins/default/xui/en/floater_stats.xml | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/indra/newview/skins/default/xui/en/floater_stats.xml b/indra/newview/skins/default/xui/en/floater_stats.xml index f0a464dfc9..d4decf383d 100755 --- a/indra/newview/skins/default/xui/en/floater_stats.xml +++ b/indra/newview/skins/default/xui/en/floater_stats.xml @@ -111,25 +111,32 @@ <stat_view name="memory" label="Memory Usage"> <stat_bar name="LLView" - label="LLView Memory" - stat="class LLView" - show_history="true"/> + label="UI" + stat="LLView"/> + <stat_bar name="LLFontFreetype" + label="Fonts" + stat="LLFontFreetype"/> + <stat_bar name="LLInventoryObject" + label="Inventory" + stat="LLInventoryObject"/> <stat_bar name="LLViewerObject" - label="LLViewerObject Memory" - stat="class LLViewerObject" - show_history="true"/> + label="Viewer Objects" + stat="LLViewerObject"/> <stat_bar name="LLVOCacheEntry" - label="LLVOCacheEntry Memory" - stat="class LLVOCacheEntry" - show_history="true"/> + label="Viewer Object Cache" + stat="LLVOCacheEntry"/> <stat_bar name="LLDrawable" - label="LLDrawable Memory" - stat="class LLDrawable" - show_history="true"/> + label="Drawables" + stat="LLDrawable"/> <stat_bar name="LLImage" - label="LLImage Memory" - stat="class LLImageBase" - show_history="true"/> + label="Image Data" + stat="LLImage"/> + <stat_bar name="LLImageGL" + label="GL Image Data" + stat="LLImageGL"/> + <stat_bar name="LLVertexBuffer" + label="Vertex Buffers" + stat="LLVertexBuffer"/> </stat_view> <stat_view name="network" label="Network" |