27 static constexpr glm::vec4
WHITE_4 = { 1.0F, 1.0F, 1.0F, 1.0F };
28 static constexpr VkClearColorValue
WHITE_V = { { 1.0F, 1.0F, 1.0F, 1.0F } };
30 static constexpr glm::vec3
BLACK_3 = glm::vec3(0.0F);
31 static constexpr glm::vec4
BLACK_4 = { 0.0F, 0.0F, 0.0F, 1.0F };
32 static constexpr VkClearColorValue
BLACK_V = { { 0.0F, 0.0F, 0.0F, 1.0F } };
35 static constexpr glm::vec4
RED_4 = { 1.0F, 0.0F, 0.0F, 1.0F };
36 static constexpr VkClearColorValue
RED_V = { { 1.0F, 0.0F, 0.0F, 1.0F } };
39 static constexpr glm::vec4
GREEN_4 = { 0.0F, 1.0F, 0.0F, 1.0F };
40 static constexpr VkClearColorValue
GREEN_V = { { 0.0F, 1.0F, 0.0F, 1.0F } };
43 static constexpr glm::vec4
BLUE_4 = { 0.0F, 0.0F, 1.0F, 1.0F };
44 static constexpr VkClearColorValue
BLUE_V = { { 0.0F, 0.0F, 1.0F, 1.0F } };
47 static constexpr glm::vec4
YELLOW_4 = { 1.0F, 1.0F, 0.0F, 1.0F };
48 static constexpr VkClearColorValue
YELLOW_V = { { 1.0F, 1.0F, 0.0F, 1.0F } };
51 static constexpr glm::vec4
CYAN_4 = { 0.0F, 1.0F, 1.0F, 1.0F };
52 static constexpr VkClearColorValue
CYAN_V = { { 0.0F, 1.0F, 1.0F, 1.0F } };
55 static constexpr glm::vec4
MAGENTA_4 = { 1.0F, 0.0F, 1.0F, 1.0F };
56 static constexpr VkClearColorValue
MAGENTA_V = { { 1.0F, 0.0F, 1.0F, 1.0F } };
59 static constexpr glm::vec4
SILVER_4 = { 0.75F, 0.75F, 0.75F, 1.0F };
60 static constexpr VkClearColorValue
SILVER_V = { { 0.75F, 0.75F, 0.75F, 1.0F } };
62 static constexpr glm::vec3
GRAY_3 = glm::vec3(128.0F, 128.0F, 128.0F) /
COLOR_MAX;
63 static constexpr glm::vec4
GRAY_4 = { 0.5F, 0.5F, 0.5F, 1.0F };
64 static constexpr VkClearColorValue
GRAY_V = { { 0.5F, 0.5F, 0.5F, 1.0F } };
67 static constexpr glm::vec4
MAROON_4 = { 0.5F, 0.0F, 0.0F, 1.0F };
68 static constexpr VkClearColorValue
MAROON_V = { { 0.5F, 0.0F, 0.0F, 1.0F } };
71 static constexpr glm::vec4
OLIVE_4 = { 0.5F, 0.5F, 0.0F, 1.0F };
72 static constexpr VkClearColorValue
OLIVE_V = { { 0.5F, 0.5F, 0.0F, 1.0F } };
75 static constexpr glm::vec4
LIME_4 = { 0.0F, 1.0F, 0.0F, 1.0F };
76 static constexpr VkClearColorValue
LIME_V = { { 0.0F, 1.0F, 0.0F, 1.0F } };
79 static constexpr glm::vec4
AQUA_4 = { 0.0F, 1.0F, 1.0F, 1.0F };
80 static constexpr VkClearColorValue
AQUA_V = { { 0.0F, 1.0F, 1.0F, 1.0F } };
83 static constexpr glm::vec4
TEAL_4 = { 0.0F, 0.5F, 0.5F, 1.0F };
84 static constexpr VkClearColorValue
TEAL_V = { { 0.0F, 0.5F, 0.5F, 1.0F } };
87 static constexpr glm::vec4
NAVY_4 = { 0.0F, 0.0F, 0.5F, 1.0F };
88 static constexpr VkClearColorValue
NAVY_V = { { 0.0F, 0.0F, 0.5F, 1.0F } };
91 static constexpr glm::vec4
FUCHSIA_4 = { 1.0F, 0.0F, 1.0F, 1.0F };
92 static constexpr VkClearColorValue
FUCHSIA_V = { { 1.0F, 0.0F, 1.0F, 1.0F } };
95 static constexpr glm::vec4
NIGHT_BLUE_4 = { 0.098F, 0.098F, 0.439F, 1.0F };
96 static constexpr VkClearColorValue
NIGHT_BLUE_V = { { 0.098F, 0.098F, 0.439F, 1.0F } };
99 static constexpr glm::vec4
SKY_BLUE_4 = { 0.4F, 0.698F, 1.0F, 1.0F };
100 static constexpr VkClearColorValue
SKY_BLUE_V = { { 0.4F, 0.698F, 1.0F, 1.0F } };
103 static constexpr glm::vec4
SUNSET_4 = { 1.0F, 0.5F, 0.0F, 1.0F };
104 static constexpr VkClearColorValue
SUNSET_V = { { 1.0F, 0.5F, 0.0F, 1.0F } };
107 static constexpr std::array<std::pair<const char *, glm::vec3>, 20>
COLOR_PRESETS_3 = {{
130 static constexpr std::array<std::pair<const char *, glm::vec4>, 20>
COLOR_PRESETS_4 = {{
153 static constexpr std::array<std::pair<const char *, VkClearColorValue>, 20>
COLOR_PRESETS_VK = {{