From 4d26da545d8df85917b06cd603ffa6e92fd431e5 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 20 Dec 2008 01:20:40 +0000 Subject: * ReCommit the OpenID patch with a few less dependencies. * Removes all references to ASP.NET (System.Web.UI,*) * Removes all references to System.Web.Mobile --- OpenSim/Framework/OpenJpeg/pi.cs | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 OpenSim/Framework/OpenJpeg/pi.cs (limited to 'OpenSim/Framework/OpenJpeg/pi.cs') diff --git a/OpenSim/Framework/OpenJpeg/pi.cs b/OpenSim/Framework/OpenJpeg/pi.cs new file mode 100644 index 0000000..f7e211f --- /dev/null +++ b/OpenSim/Framework/OpenJpeg/pi.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Framework.OpenJpeg +{ + public static class pi + { + } + + public struct opj_pi_resolution + { + public int pdx, pdy; + public int pw, ph; + } + + public struct opj_pi_comp + { + public int dx, dy; + public int numresolutions; + public opj_pi_resolution resolutions; + } + + public struct obj_pi_iterator + { + public sbyte tp_on; + public short include; + public int step_l; + public int step_r; + public int step_c; + public int step_p; + public int compno; + public int resno; + public int precno; + public int layno; + public int first; + public opj_poc poc; + public int numcomps; + public opj_pi_comp comps; + + public int tx0, ty0, tx1, ty1; + public int x, y, dx, dy; + } + + + + +} -- cgit v1.1