2026-04-29 10:25:11 -07:00
|
|
|
/* Copyright (C) 2026 Wildfire Games.
|
2023-12-02 16:30:12 -08:00
|
|
|
* This file is part of 0 A.D.
|
2021-12-24 16:26:10 -08:00
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
2021-12-24 16:26:10 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
2023-12-02 16:30:12 -08:00
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
2021-12-24 16:26:10 -08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2023-12-02 16:30:12 -08:00
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
2021-12-24 16:26:10 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INCLUDED_RENDERER_BACKEND_FORMAT
|
|
|
|
|
#define INCLUDED_RENDERER_BACKEND_FORMAT
|
|
|
|
|
|
|
|
|
|
namespace Renderer
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
namespace Backend
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
enum class Format
|
|
|
|
|
{
|
|
|
|
|
UNDEFINED,
|
2022-05-26 09:36:57 -07:00
|
|
|
R8_UNORM,
|
2022-03-06 18:21:05 -08:00
|
|
|
R8G8_UNORM,
|
|
|
|
|
R8G8_UINT,
|
2022-03-06 14:14:57 -08:00
|
|
|
R8G8B8_UNORM,
|
|
|
|
|
R8G8B8A8_UNORM,
|
2022-03-06 18:21:05 -08:00
|
|
|
R8G8B8A8_UINT,
|
2023-02-17 09:36:10 -08:00
|
|
|
B8G8R8A8_UNORM,
|
2022-02-13 11:30:28 -08:00
|
|
|
|
2022-05-26 09:36:57 -07:00
|
|
|
// TODO: we need to drop legacy A8 and L8 formats as soon as we have proper
|
|
|
|
|
// channel swizzling.
|
2022-03-06 14:14:57 -08:00
|
|
|
A8_UNORM,
|
|
|
|
|
L8_UNORM,
|
|
|
|
|
|
2022-03-08 15:28:31 -08:00
|
|
|
R16_UNORM,
|
|
|
|
|
R16_UINT,
|
2022-03-06 18:21:05 -08:00
|
|
|
R16_SINT,
|
2024-12-09 13:47:15 -08:00
|
|
|
R16_SFLOAT,
|
2022-03-08 15:28:31 -08:00
|
|
|
R16G16_UNORM,
|
|
|
|
|
R16G16_UINT,
|
2022-03-06 18:21:05 -08:00
|
|
|
R16G16_SINT,
|
2024-12-09 13:47:15 -08:00
|
|
|
R16G16_SFLOAT,
|
|
|
|
|
R16G16B16_SFLOAT,
|
|
|
|
|
R16G16B16A16_SFLOAT,
|
2022-03-06 18:21:05 -08:00
|
|
|
|
2022-03-06 14:14:57 -08:00
|
|
|
R32_SFLOAT,
|
|
|
|
|
R32G32_SFLOAT,
|
|
|
|
|
R32G32B32_SFLOAT,
|
|
|
|
|
R32G32B32A32_SFLOAT,
|
2022-02-13 11:30:28 -08:00
|
|
|
|
2026-04-29 10:25:11 -07:00
|
|
|
B10G11R11_UFLOAT,
|
|
|
|
|
|
2023-01-11 22:32:52 -08:00
|
|
|
D16_UNORM,
|
|
|
|
|
D24_UNORM,
|
|
|
|
|
D24_UNORM_S8_UINT,
|
|
|
|
|
D32_SFLOAT,
|
|
|
|
|
D32_SFLOAT_S8_UINT,
|
2022-02-13 11:30:28 -08:00
|
|
|
|
2022-03-06 14:14:57 -08:00
|
|
|
BC1_RGB_UNORM,
|
|
|
|
|
BC1_RGBA_UNORM,
|
|
|
|
|
BC2_UNORM,
|
|
|
|
|
BC3_UNORM
|
2021-12-24 16:26:10 -08:00
|
|
|
};
|
|
|
|
|
|
2023-01-10 12:22:20 -08:00
|
|
|
inline bool IsDepthFormat(const Format format)
|
|
|
|
|
{
|
|
|
|
|
return
|
2023-01-11 22:32:52 -08:00
|
|
|
format == Format::D16_UNORM ||
|
|
|
|
|
format == Format::D24_UNORM ||
|
|
|
|
|
format == Format::D24_UNORM_S8_UINT ||
|
|
|
|
|
format == Format::D32_SFLOAT ||
|
|
|
|
|
format == Format::D32_SFLOAT_S8_UINT;
|
2023-01-10 12:22:20 -08:00
|
|
|
}
|
|
|
|
|
|
2021-12-24 16:26:10 -08:00
|
|
|
} // namespace Backend
|
|
|
|
|
|
|
|
|
|
} // namespace Renderer
|
|
|
|
|
|
|
|
|
|
#endif // INCLUDED_RENDERER_BACKEND_FORMAT
|