[SCM] A client for connecting to 3D metaverses such as Linden Labs Secondlife(tm) and OpenSim grids branch, master, updated. upstream/1.20.14-59-gf82ac3f

Robin Cornelius robin.cornelius at gmail.com
Sun Jul 20 09:25:35 UTC 2008


The following commit has been merged in the master branch:
commit f82ac3f7f351bbff500b5f9db88a0545da6b6f98
Author: Robin Cornelius <robin.cornelius at gmail.com>
Date:   Sun Jul 20 11:25:16 2008 +0200

    Add in broken nvidia driver patch

diff --git a/debian/changelog b/debian/changelog
index 885c753..8f01635 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ omvviewer (1.20.14-1) experimental; urgency=low
     + New patch VWR-5917_multiple_user_day_cycles_in_rw_area.dpatch 
     + Modify VWR-4981_save_windlight_settings_in_user_rw_area.dpatch 
     + Bump artwork dependencies
+    + New patch VWR-8194_clamp_outline_for_broken_nvidia.dpatch
 
  -- Robin Cornelius <robin.cornelius at gmail.com>  Wed, 16 Jul 2008 23:11:35 +0200
 
diff --git a/debian/patches/00list b/debian/patches/00list
index c9b1dc0..35d0c86 100644
--- a/debian/patches/00list
+++ b/debian/patches/00list
@@ -79,3 +79,4 @@ VWR-7831_smart_pointer_explicit_casting.dpatch
 VWR-5082_set_bulk_inv_permissions.dpatch
 VWR-4981_save_windlight_settings_in_user_rw_area.dpatch
 VWR-5917_multiple_user_day_cycles_in_rw_area.dpatch
+VWR-8194_clamp_outline_for_broken_nvidia.dpatch
diff --git a/debian/patches/VWR-8194_clamp_outline_for_broken_nvidia.dpatch b/debian/patches/VWR-8194_clamp_outline_for_broken_nvidia.dpatch
new file mode 100644
index 0000000..2b5a769
--- /dev/null
+++ b/debian/patches/VWR-8194_clamp_outline_for_broken_nvidia.dpatch
@@ -0,0 +1,21 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## VWR-8194 fix.dpatch by  <robin.cornelius at gmail.com>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Clamp selection outline to 660 nodes
+
+ at DPATCH@
+
+diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp
+index 75e1fcc..9e93bd1 100644
+--- a/indra/newview/llselectmgr.cpp
++++ b/indra/newview/llselectmgr.cpp
+@@ -5303,7 +5303,7 @@ void LLSelectNode::renderOneSilhouette(const LLColor4 &color)
+ 		gGL.begin(LLVertexBuffer::TRIANGLES);
+ 		{
+ 			S32 i = 0;
+-			for (S32 seg_num = 0; seg_num < (S32)mSilhouetteSegments.size(); seg_num++)
++			for (S32 seg_num = 0; seg_num < ((S32)mSilhouetteSegments.size()>660?660:(S32)mSilhouetteSegments.size()); seg_num++)
+ 			{
+ 				S32 first_i = i;
+ 				LLVector3 v;

-- 
A client for connecting to 3D metaverses such as Linden Labs Secondlife(tm) and OpenSim grids



More information about the Pkg-games-commits mailing list