blob: 4ce8ac95877034437fba3c9cf9365a138d0b76cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/////////////////////////////////////////////////////////////////////////////////
// Paint.NET //
// Copyright (C) dotPDN LLC, Rick Brewster, Tom Jackson, and contributors. //
// Portions Copyright (C) Microsoft Corporation. All Rights Reserved. //
// See src/Resources/Files/License.txt for full licensing and attribution //
// details. //
// . //
/////////////////////////////////////////////////////////////////////////////////
using System;
using System.Drawing;
namespace Tango.RemoteDesktop.Quantization
{
internal struct Scanline
{
private int x;
private int y;
private int length;
public int X
{
get
{
return x;
}
}
public int Y
{
get
{
return y;
}
}
public int Length
{
get
{
return length;
}
}
public override int GetHashCode()
{
unchecked
{
return length.GetHashCode() + x.GetHashCode() + y.GetHashCode();
}
}
public override bool Equals(object obj)
{
if (obj is Scanline)
{
Scanline rhs = (Scanline)obj;
return x == rhs.x && y == rhs.y && length == rhs.length;
}
else
{
return false;
}
}
public static bool operator== (Scanline lhs, Scanline rhs)
{
return lhs.x == rhs.x && lhs.y == rhs.y && lhs.length == rhs.length;
}
public static bool operator!= (Scanline lhs, Scanline rhs)
{
return !(lhs == rhs);
}
public override string ToString()
{
return "(" + x + "," + y + "):[" + length.ToString() + "]";
}
public Scanline(int x, int y, int length)
{
this.x = x;
this.y = y;
this.length = length;
}
}
}
|