diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2010-06-03 14:08:22 -0600 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2010-06-03 14:08:22 -0600 |
commit | 29896d26c2ace6fb4db513c9d660e89168a736fc (patch) | |
tree | 93ccc5de19cafe76eebb85e5622c4bb5deac5e24 /indra/newview/llviewerregion.cpp | |
parent | 3df90898b18feeda876857acb00f1f3046793e69 (diff) |
EXT-7630: FIXED: turn on http texture fetching by default.
Diffstat (limited to 'indra/newview/llviewerregion.cpp')
-rw-r--r-- | indra/newview/llviewerregion.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index c48668df9a..da240cedbb 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -216,6 +216,7 @@ LLViewerRegion::LLViewerRegion(const U64 &handle, mColoName("unknown"), mProductSKU("unknown"), mProductName("unknown"), + mHttpUrl(""), mCacheLoaded(FALSE), mCacheEntriesCount(0), mCacheID(), @@ -1555,6 +1556,10 @@ void LLViewerRegion::setCapability(const std::string& name, const std::string& u else { mCapabilities[name] = url; + if(name == "GetTexture") + { + mHttpUrl = url ; + } } } |