From dbac901da77d144f536ee69d88e03039fa672f64 Mon Sep 17 00:00:00 2001 From: Albin Johansson Date: Fri, 8 Dec 2023 23:10:09 +0100 Subject: [PATCH] Create graphics_api.hpp --- .../inc/tactile/core/render/graphics_api.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/core/inc/tactile/core/render/graphics_api.hpp diff --git a/modules/core/inc/tactile/core/render/graphics_api.hpp b/modules/core/inc/tactile/core/render/graphics_api.hpp new file mode 100644 index 0000000000..e65716bf46 --- /dev/null +++ b/modules/core/inc/tactile/core/render/graphics_api.hpp @@ -0,0 +1,18 @@ +// Copyright (C) 2023 Albin Johansson (GNU General Public License v3.0) + +#pragma once + +#include "tactile/core/prelude.hpp" + +namespace tactile { + +/** + * \brief Represents the possible graphics APIs. + */ +enum class GraphicsAPI : int8 { + kUnknown, + kOpenGL, + kVulkan +}; + +} // namespace tactile