0.8.0 API documentation
filter.hpp
Go to the documentation of this file.
1 
4 #pragma once
5 
6 namespace gli{
7 namespace detail
8 {
9  enum dimension
10  {
11  DIMENSION_1D,
12  DIMENSION_2D,
13  DIMENSION_3D
14  };
15 }//namespace detail
16 
18  enum filter
19  {
20  FILTER_NONE = 0,
21  FILTER_NEAREST, FILTER_FIRST = FILTER_NEAREST,
22  FILTER_LINEAR, FILTER_LAST = FILTER_LINEAR
23  };
24 
25  enum
26  {
27  FILTER_COUNT = FILTER_LAST - FILTER_FIRST + 1,
28  FILTER_INVALID = -1
29  };
30 }//namespace gli
31 
32 #include "./core/filter.inl"
Namespace where all the classes and functions provided by GLI are exposed.
Definition: comparison.hpp:15
filter
Texture filtring modes.
Definition: filter.hpp:18