Skip to content

Commit

Permalink
Create graphics_api.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-johansson committed Dec 8, 2023
1 parent e80bb13 commit dbac901
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions modules/core/inc/tactile/core/render/graphics_api.hpp
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit dbac901

Please sign in to comment.