From 3234472d6203671a492a73042a0b56d6301903e0 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Wed, 19 Nov 2008 06:15:21 +0000 Subject: Reverting the texture sending patch and the new libOMV. This makes this release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366 --- OpenSim/Framework/Util.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Framework/Util.cs') diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index f0ad1d5..f72797f 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -185,7 +185,7 @@ namespace OpenSim.Framework public static ulong UIntsToLong(uint X, uint Y) { - return Utils.UIntsToLong(X, Y); + return Helpers.UIntsToLong(X, Y); } public static T Clamp(T x, T min, T max) @@ -783,9 +783,9 @@ namespace OpenSim.Framework public static void ParseFakeParcelID(UUID parcelID, out ulong regionHandle, out uint x, out uint y) { byte[] bytes = parcelID.GetBytes(); - regionHandle = Utils.BytesToUInt64(bytes); - x = Utils.BytesToUInt(bytes, 8); - y = Utils.BytesToUInt(bytes, 12); + regionHandle = Helpers.BytesToUInt64(bytes); + x = Helpers.BytesToUInt(bytes, 8); + y = Helpers.BytesToUInt(bytes, 12); } public static void FakeParcelIDToGlobalPosition(UUID parcelID, out uint x, out uint y) @@ -794,7 +794,7 @@ namespace OpenSim.Framework uint rx, ry; ParseFakeParcelID(parcelID, out regionHandle, out x, out y); - Utils.LongToUInts(regionHandle, out rx, out ry); + Helpers.LongToUInts(regionHandle, out rx, out ry); x += rx; y += ry; -- cgit v1.1