diff options
Diffstat (limited to 'OpenSim/Framework/OpenJpeg/pi.cs')
-rw-r--r-- | OpenSim/Framework/OpenJpeg/pi.cs | 48 |
1 files changed, 48 insertions, 0 deletions
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Framework.OpenJpeg | ||
6 | { | ||
7 | public static class pi | ||
8 | { | ||
9 | } | ||
10 | |||
11 | public struct opj_pi_resolution | ||
12 | { | ||
13 | public int pdx, pdy; | ||
14 | public int pw, ph; | ||
15 | } | ||
16 | |||
17 | public struct opj_pi_comp | ||
18 | { | ||
19 | public int dx, dy; | ||
20 | public int numresolutions; | ||
21 | public opj_pi_resolution resolutions; | ||
22 | } | ||
23 | |||
24 | public struct obj_pi_iterator | ||
25 | { | ||
26 | public sbyte tp_on; | ||
27 | public short include; | ||
28 | public int step_l; | ||
29 | public int step_r; | ||
30 | public int step_c; | ||
31 | public int step_p; | ||
32 | public int compno; | ||
33 | public int resno; | ||
34 | public int precno; | ||
35 | public int layno; | ||
36 | public int first; | ||
37 | public opj_poc poc; | ||
38 | public int numcomps; | ||
39 | public opj_pi_comp comps; | ||
40 | |||
41 | public int tx0, ty0, tx1, ty1; | ||
42 | public int x, y, dx, dy; | ||
43 | } | ||
44 | |||
45 | |||
46 | |||
47 | |||
48 | } | ||