mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[WIN32SS]
* Remove unused CompareSpans(). svn path=/trunk/; revision=64110
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user