Revision 692,
593 bytes
checked in by mattausch, 19 years ago
(diff) |
adding ogre 1.2 and dependencies
|
Line | |
---|
1 | //-----------------------------------------------------------------------------
|
---|
2 | //
|
---|
3 | // ImageLib Utility Sources
|
---|
4 | // Copyright (C) 2000-2002 by Denton Woods
|
---|
5 | // Last modified: 07/09/2002 <--Y2K Compliant! =]
|
---|
6 | //
|
---|
7 | // Filename: src-ILU/src/ilu_region.h
|
---|
8 | //
|
---|
9 | // Description: Creates an image region.
|
---|
10 | //
|
---|
11 | //-----------------------------------------------------------------------------
|
---|
12 |
|
---|
13 | #ifndef ILU_REGION_H
|
---|
14 | #define ILU_REGION_H
|
---|
15 |
|
---|
16 | #include "ilu_internal.h"
|
---|
17 |
|
---|
18 |
|
---|
19 | typedef struct Edge
|
---|
20 | {
|
---|
21 | ILint yUpper;
|
---|
22 | ILfloat xIntersect, dxPerScan;
|
---|
23 | struct Edge *next;
|
---|
24 | } Edge;
|
---|
25 |
|
---|
26 |
|
---|
27 | #endif//ILU_REGION_H
|
---|
28 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.