diff options
| author | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2016-08-05 17:21:22 +0300 | 
|---|---|---|
| committer | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2016-08-05 17:21:22 +0300 | 
| commit | 25c20f98a88a457b5fa865e8dc302b24378bc842 (patch) | |
| tree | 19c8c9ec08302c6f59c56676dfaf04967b582f28 /indra/newview | |
| parent | 22238182c67b3d322e82bb042ad1d618c733a36d (diff) | |
MAINT-5018 crashing when touching mesh
Fix #1 Disable FSAA for drawing selected objects (it help to avoid crash on
old ATI cards (in my case it's a HD3800)).
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llselectmgr.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index 323689b788..0838c6c824 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -6244,6 +6244,9 @@ void pushWireframe(LLDrawable* drawable)  void LLSelectNode::renderOneWireframe(const LLColor4& color)  { +	//Need to because crash on ATI 3800 (and similar cards) MAINT-5018  +	LLGLDisable multisample(LLPipeline::RenderFSAASamples > 0 ? GL_MULTISAMPLE_ARB : 0); +  	LLViewerObject* objectp = getObject();  	if (!objectp)  	{ | 
