回答編集履歴
2
コード修正
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
template <typename... Args>
|
20
20
|
|
21
|
-
Draw(const glm::vec2 pos, const char* font, unsigned short pixel,
|
21
|
+
void Draw(const glm::vec2 pos, const char* font, unsigned short pixel,
|
22
22
|
|
23
23
|
const glm::vec4 color, const char *str, const Args&... args) {
|
24
24
|
|
1
文言
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
`std::vformat()`というのもありますが、これは`va_list`を引数に取るわけではないので、やはり `Text::Draw()`から呼ぶことはできません。
|
9
|
+
`std::vformat()`というのもありますが、これは`va_list`を引数に取るわけではないので、やはり今のままでは `Text::Draw()`から呼ぶことはできません。
|
10
10
|
|
11
11
|
|
12
12
|
|
@@ -18,7 +18,9 @@
|
|
18
18
|
|
19
19
|
template <typename... Args>
|
20
20
|
|
21
|
+
Draw(const glm::vec2 pos, const char* font, unsigned short pixel,
|
22
|
+
|
21
|
-
|
23
|
+
const glm::vec4 color, const char *str, const Args&... args) {
|
22
24
|
|
23
25
|
...
|
24
26
|
|