Merge 'remotes/trunk'
[0ad.git] / source / renderer / backend / Sampler.h
blob6a4a2f009e8b3d68fe763b45d7914e2588bda2e3
1 /* Copyright (C) 2023 Wildfire Games.
2 * This file is part of 0 A.D.
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.
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.
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/>.
18 #ifndef INCLUDED_RENDERER_BACKEND_SAMPLER
19 #define INCLUDED_RENDERER_BACKEND_SAMPLER
21 #include "graphics/Color.h"
22 #include "renderer/backend/CompareOp.h"
24 #include <cstdint>
26 namespace Renderer
29 namespace Backend
32 namespace Sampler
35 enum class Filter
37 NEAREST,
38 LINEAR
41 enum class AddressMode
43 REPEAT,
44 MIRRORED_REPEAT,
45 CLAMP_TO_EDGE,
46 CLAMP_TO_BORDER,
49 enum class BorderColor
51 TRANSPARENT_BLACK,
52 OPAQUE_BLACK,
53 OPAQUE_WHITE
56 struct Desc
58 Filter magFilter;
59 Filter minFilter;
60 Filter mipFilter;
61 AddressMode addressModeU;
62 AddressMode addressModeV;
63 AddressMode addressModeW;
64 float mipLODBias;
65 bool anisotropyEnabled;
66 float maxAnisotropy;
67 // When at least one address mode is CLAMP_TO_BORDER.
68 BorderColor borderColor;
69 bool compareEnabled;
70 CompareOp compareOp;
73 Desc MakeDefaultSampler(Filter filter, AddressMode addressMode);
75 } // namespace Sampler
77 } // namespace Backend
79 } // namespace Renderer
81 #endif // INCLUDED_RENDERER_BACKEND_SAMPLER