diff options
Diffstat (limited to 'linden/indra/newview/llviewerimagelist.cpp')
-rw-r--r-- | linden/indra/newview/llviewerimagelist.cpp | 4 |
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. | |||
929 | S32 LLViewerImageList::getMinVideoRamSetting() | 929 | S32 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 |