Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
Sampler.h
Go to the documentation of this file.
1/* Copyright (C) 2023 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
26namespace Renderer
27{
28
29namespace Backend
30{
31
32namespace Sampler
33{
34
35enum class Filter
36{
37 NEAREST,
38 LINEAR
39};
40
41enum class AddressMode
42{
43 REPEAT,
47};
48
49enum class BorderColor
50{
54};
55
56struct Desc
57{
67 // When at least one address mode is CLAMP_TO_BORDER.
71};
72
73Desc MakeDefaultSampler(Filter filter, AddressMode addressMode);
74
75} // namespace Sampler
76
77} // namespace Backend
78
79} // namespace Renderer
80
81#endif // INCLUDED_RENDERER_BACKEND_SAMPLER
Filter
Definition: Sampler.h:36
Desc MakeDefaultSampler(Filter filter, AddressMode addressMode)
Definition: Sampler.cpp:31
AddressMode
Definition: Sampler.h:42
BorderColor
Definition: Sampler.h:50
CompareOp
Definition: CompareOp.h:32
Backend
Definition: Backend.h:28
Definition: VideoMode.h:29
Definition: Sampler.h:57
Filter magFilter
Definition: Sampler.h:58
CompareOp compareOp
Definition: Sampler.h:70
float maxAnisotropy
Definition: Sampler.h:66
AddressMode addressModeU
Definition: Sampler.h:61
BorderColor borderColor
Definition: Sampler.h:68
Filter mipFilter
Definition: Sampler.h:60
AddressMode addressModeV
Definition: Sampler.h:62
float mipLODBias
Definition: Sampler.h:64
bool anisotropyEnabled
Definition: Sampler.h:65
bool compareEnabled
Definition: Sampler.h:69
Filter minFilter
Definition: Sampler.h:59
AddressMode addressModeW
Definition: Sampler.h:63