0.8.2 API documentation
filter.hpp
Go to the documentation of this file.
1 
4 #pragma once
5 
6 namespace gli
7 {
9  enum filter
10  {
11  FILTER_NONE = 0,
12  FILTER_NEAREST, FILTER_FIRST = FILTER_NEAREST,
13  FILTER_LINEAR, FILTER_LAST = FILTER_LINEAR
14  };
15 
16  enum
17  {
18  FILTER_COUNT = FILTER_LAST - FILTER_FIRST + 1,
19  FILTER_INVALID = -1
20  };
21 }//namespace gli
22 
23 #include "filter.inl"
filter
Texture filtring modes.
Definition: filter.hpp:9
Namespace where all the classes and functions provided by GLI are exposed.
Definition: clear.hpp:6