22 lines
273 B
C++
22 lines
273 B
C++
#pragma once
|
|
|
|
#include <cinttypes>
|
|
#include <array>
|
|
#include <string_view>
|
|
|
|
namespace shader_program::geometry
|
|
{
|
|
|
|
enum class types : std::uint8_t
|
|
{
|
|
mesh = 0,
|
|
point_cloud = 1
|
|
};
|
|
|
|
inline constexpr auto names = std::array<std::string_view, 2>{
|
|
"mesh", "point_cloud"
|
|
};
|
|
|
|
}
|
|
|