Banuba SDK
Loading...
Searching...
No Matches
libs
types
bnb
types
interfaces
render_backend_type.hpp
Go to the documentation of this file.
1
/// \file
2
/// \addtogroup Types
3
/// @{
4
///
5
// AUTOGENERATED FILE - DO NOT MODIFY!
6
// This file was generated by Djinni from types.djinni
7
8
#pragma once
9
10
#include <functional>
11
12
namespace
bnb {
namespace
interfaces {
13
14
enum class
render_backend_type :
int
{
15
opengl,
16
metal,
17
};
18
19
} }
// namespace bnb::interfaces
20
21
namespace
std {
22
23
template
<>
24
struct
hash<::bnb::interfaces::render_backend_type> {
25
size_t
operator()(::bnb::interfaces::render_backend_type type)
const
{
26
return
std::hash<int>()(
static_cast<
int
>
(type));
27
}
28
};
29
30
}
// namespace std
31
/// @}
32
Generated by
1.15.0