mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[WIN32SS]
* Remove unused CompareSpans(). svn path=/trunk/; revision=64110
This commit is contained in:
parent
2d5c0c6269
commit
63012a3b59
1 changed files with 0 additions and 34 deletions
|
@ -153,40 +153,6 @@ CompareLeftUp(
|
|||
return Cmp;
|
||||
}
|
||||
|
||||
static __inline int
|
||||
CompareSpans(
|
||||
const SPAN *Span1,
|
||||
const SPAN *Span2)
|
||||
{
|
||||
int Cmp;
|
||||
|
||||
if (Span1->Y < Span2->Y)
|
||||
{
|
||||
Cmp = -1;
|
||||
}
|
||||
else if (Span2->Y < Span1->Y)
|
||||
{
|
||||
Cmp = +1;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (Span1->X < Span2->X)
|
||||
{
|
||||
Cmp = -1;
|
||||
}
|
||||
else if (Span2->X < Span1->X)
|
||||
{
|
||||
Cmp = +1;
|
||||
}
|
||||
else
|
||||
{
|
||||
Cmp = 0;
|
||||
}
|
||||
}
|
||||
|
||||
return Cmp;
|
||||
}
|
||||
|
||||
VOID
|
||||
FASTCALL
|
||||
IntEngInitClipObj(XCLIPOBJ *Clip)
|
||||
|
|
Loading…
Reference in a new issue