diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-21 16:09:22 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-21 16:09:22 +0100 |
commit | c4d3682f07858a0ffada55e456357ff8192a7db1 (patch) | |
tree | 174f9f8aece3d8f64fa9798f10bfad54b441af98 /indra | |
parent | ab31e3bb217089e0cc28ca57bb5c4e46c06789dd (diff) |
Avoid potentially loading the standard bumpmap list twice during startup.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lldrawpoolbump.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/lldrawpoolbump.cpp b/indra/newview/lldrawpoolbump.cpp index 1fae8e518c..b7092f32a2 100644 --- a/indra/newview/lldrawpoolbump.cpp +++ b/indra/newview/lldrawpoolbump.cpp @@ -82,7 +82,7 @@ static S32 bump_channel = -1; // static void LLStandardBumpmap::init() { - LLStandardBumpmap::restoreGL(); + // do nothing } // static @@ -876,6 +876,8 @@ void LLBumpImageList::clear() // these will be re-populated on-demand mBrightnessEntries.clear(); mDarknessEntries.clear(); + + LLStandardBumpmap::clear(); } void LLBumpImageList::shutdown() @@ -892,8 +894,8 @@ void LLBumpImageList::destroyGL() void LLBumpImageList::restoreGL() { - // Images will be recreated as they are needed. LLStandardBumpmap::restoreGL(); + // Images will be recreated as they are needed. } |