mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-21 17:24:37 -05:00
17 lines
366 B
C++
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;
|
|
}
|
|
} |