aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewerimagelist.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2009-02-13 03:10:11 -0600
committerJacek Antonelli2009-02-13 03:10:37 -0600
commitae87a35efc761f1a317325c5286a0946992fc84b (patch)
tree526e23e01d3fc2bc65272f00798de5fee1d0350f /linden/indra/newview/llviewerimagelist.cpp
parentSecond Life viewer sources 1.22.8-RC (diff)
downloadmeta-impy-ae87a35efc761f1a317325c5286a0946992fc84b.zip
meta-impy-ae87a35efc761f1a317325c5286a0946992fc84b.tar.gz
meta-impy-ae87a35efc761f1a317325c5286a0946992fc84b.tar.bz2
meta-impy-ae87a35efc761f1a317325c5286a0946992fc84b.tar.xz
Second Life viewer sources 1.22.9-RC
Diffstat (limited to 'linden/indra/newview/llviewerimagelist.cpp')
-rw-r--r--linden/indra/newview/llviewerimagelist.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llviewerimagelist.cpp b/linden/indra/newview/llviewerimagelist.cpp
index e48f6ae..f6b1688 100644
--- a/linden/indra/newview/llviewerimagelist.cpp
+++ b/linden/indra/newview/llviewerimagelist.cpp
@@ -929,8 +929,8 @@ const S32 MAX_VIDEO_RAM = 512; // 512MB max for performance reasons.
929S32 LLViewerImageList::getMinVideoRamSetting() 929S32 LLViewerImageList::getMinVideoRamSetting()
930{ 930{
931 S32 system_ram = (S32)(gSysMemory.getPhysicalMemoryClamped() >> 20); 931 S32 system_ram = (S32)(gSysMemory.getPhysicalMemoryClamped() >> 20);
932 //min texture mem sets to 128M if total physical mem is more than 1.5GB 932 //min texture mem sets to 64M if total physical mem is more than 1.5GB
933 return (system_ram > 1500) ? 128 : MIN_VIDEO_RAM; 933 return (system_ram > 1500) ? 64 : MIN_VIDEO_RAM;
934} 934}
935 935
936//static 936//static