Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
EmptyTexture.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <entt/core/hashed_string.hpp>
4#include <string_view>
5
6namespace Graphic::Utils {
7static inline constexpr std::string_view EMPTY_TEXTURE_NAME = "EMPTY_TEXTURE";
8static inline const entt::hashed_string EMPTY_TEXTURE_ID{EMPTY_TEXTURE_NAME.data(), EMPTY_TEXTURE_NAME.size()};
9} // namespace Graphic::Utils
Definition DefaultSampler.hpp:6
static const entt::hashed_string EMPTY_TEXTURE_ID
Definition EmptyTexture.hpp:8
static constexpr std::string_view EMPTY_TEXTURE_NAME
Definition EmptyTexture.hpp:7