Pyrogenesis  trunk
Sampler.h
Go to the documentation of this file.
1 /* Copyright (C) 2022 Wildfire Games.
2  * This file is part of 0 A.D.
3  *
4  * 0 A.D. is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * 0 A.D. is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef INCLUDED_RENDERER_BACKEND_SAMPLER
19 #define INCLUDED_RENDERER_BACKEND_SAMPLER
20 
21 #include "graphics/Color.h"
23 
24 #include <cstdint>
25 
26 namespace Renderer
27 {
28 
29 namespace Backend
30 {
31 
32 namespace Sampler
33 {
34 
35 enum class Filter
36 {
37  NEAREST,
38  LINEAR
39 };
40 
41 enum class AddressMode
42 {
43  REPEAT,
47 };
48 
49 enum class BorderColor
50 {
54 };
55 
56 struct Desc
57 {
64  float mipLODBias;
67  // When some filter is CLAMP_TO_BORDER.
71 };
72 
73 Desc MakeDefaultSampler(Filter filter, AddressMode addressMode);
74 
75 } // namespace Sampler
76 
77 } // namespace Backend
78 
79 } // namespace Renderer
80 
81 #endif // INCLUDED_RENDERER_BACKEND_SAMPLER
Desc MakeDefaultSampler(Filter filter, AddressMode addressMode)
Definition: Sampler.cpp:31
bool compareEnabled
Definition: Sampler.h:69
CompareOp compareOp
Definition: Sampler.h:70
Filter minFilter
Definition: Sampler.h:59
Filter mipFilter
Definition: Sampler.h:60
AddressMode addressModeW
Definition: Sampler.h:63
float maxAnisotropy
Definition: Sampler.h:66
AddressMode
Definition: Sampler.h:41
Filter magFilter
Definition: Sampler.h:58
Backend
Definition: Backend.h:27
BorderColor
Definition: Sampler.h:49
float mipLODBias
Definition: Sampler.h:64
AddressMode addressModeV
Definition: Sampler.h:62
BorderColor borderColor
Definition: Sampler.h:68
CompareOp
Definition: CompareOp.h:31
Definition: VideoMode.h:28
AddressMode addressModeU
Definition: Sampler.h:61
Filter
Definition: Sampler.h:35
bool anisotropyEnabled
Definition: Sampler.h:65
Definition: Sampler.h:56