source: NonGTP/Devil/include/IL/ilu_region.h @ 191

Revision 191, 589 bytes checked in by bittner, 19 years ago (diff)

basic sampling strategies

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
19typedef struct Edge
20{
21        ILint   yUpper;
22        ILfloat xIntersect, dxPerScan;
23        struct  Edge *next;
24} Edge;
25
26
27#endif//ILU_REGION_H
Note: See TracBrowser for help on using the repository browser.