summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiaohong Bao <bao@lindenlab.com>2011-02-23 20:11:01 -0700
committerXiaohong Bao <bao@lindenlab.com>2011-02-23 20:11:01 -0700
commitae65347e3391be56b8919349a269e0abe52cf656 (patch)
tree3e6caf8bae518326cd4e2cbf0294c856adbea92f
parent844bf22d250833b000d306b9179580d6e032a632 (diff)
fix an exit crash.
-rw-r--r--indra/llrender/llrender.cpp1
-rw-r--r--indra/newview/llviewerwindow.cpp8
2 files changed, 6 insertions, 3 deletions
diff --git a/indra/llrender/llrender.cpp b/indra/llrender/llrender.cpp
index efd0a11b88..fd899d7f87 100644
--- a/indra/llrender/llrender.cpp
+++ b/indra/llrender/llrender.cpp
@@ -800,6 +800,7 @@ void LLRender::shutdown()
mTexUnits.clear();
delete mDummyTexUnit;
mDummyTexUnit = NULL;
+ mBuffer = NULL ;
}
void LLRender::refreshState(void)
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 8ce367efd2..b8f70e1705 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -1877,9 +1877,7 @@ void LLViewerWindow::shutdownGL()
llinfos << "All textures and llimagegl images are destroyed!" << llendl ;
llinfos << "Cleaning up select manager" << llendl;
- LLSelectMgr::getInstance()->cleanup();
-
- LLVertexBuffer::cleanupClass();
+ LLSelectMgr::getInstance()->cleanup();
llinfos << "Stopping GL during shutdown" << llendl;
if (!gNoRender)
@@ -1889,6 +1887,10 @@ void LLViewerWindow::shutdownGL()
}
gGL.shutdown();
+
+ LLVertexBuffer::cleanupClass();
+
+ llinfos << "LLVertexBuffer cleaned." << llendl ;
}
// shutdownViews() and shutdownGL() need to be called first