HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
UT_FilterType.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: UT_Filter.h ( UT Library, C++)
7  *
8  * COMMENTS: enum for filter types
9  */
10 
11 #ifndef __UT_FilterType__
12 #define __UT_FilterType__
13 
14 // #define UT_ALL_FILTERS
15 
16 typedef enum {
17  UT_FILTER_POINT, // Point filter must be first (for bkwd compat)
18  UT_FILTER_BOX, // Box filter must be second (for bkwd compat)
19 
21  UT_FILTER_CONE, // Also known as a Bartlett
23 
25 
28 
30 
31 #ifdef UT_ALL_FILTERS
32  UT_FILTER_CUBIC,
33  UT_FILTER_BESSEL,
34  UT_FILTER_HAMMING,
35 #endif
36 
39 
40 typedef enum {
41  UT_WRAP_REPEAT = 0, // Texture repeats
42  UT_WRAP_CLAMP = 1, // Texture coords are clamped
43  UT_WRAP_BORDER = 2 // Texture is clamped with border color
45 
46 #endif
UT_FilterWrap
Definition: UT_FilterType.h:40
UT_FilterType
Definition: UT_FilterType.h:16