JKSV/include/graphics/targets.hpp
2026-03-20 12:41:04 -04:00

17 lines
366 B
C++

#pragma once
#include <string_view>
namespace graphics::targets
{
namespace names
{
inline constexpr std::string_view SECONDARY = "SecondaryTarget";
}
namespace dims
{
// Dimensions of the secondary render target.
inline constexpr int SECONDARY_WIDTH = 1080;
inline constexpr int SECONDARY_HEIGHT = 555;
}
}