mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
OpenXrDisplayPlugin: Use C++20 std::format.
This commit is contained in:
parent
ebbd4725d6
commit
25b006f8f0
1 changed files with 3 additions and 6 deletions
|
@ -16,6 +16,7 @@
|
||||||
#include <glm/gtx/string_cast.hpp>
|
#include <glm/gtx/string_cast.hpp>
|
||||||
#include <glm/gtx/transform.hpp>
|
#include <glm/gtx/transform.hpp>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
#include <format>
|
||||||
|
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
#undef near
|
#undef near
|
||||||
|
@ -133,12 +134,8 @@ static std::string glFormatStr(GLenum source) {
|
||||||
ENUM_TO_STR(GL_RGBA16);
|
ENUM_TO_STR(GL_RGBA16);
|
||||||
ENUM_TO_STR(GL_RGBA16F);
|
ENUM_TO_STR(GL_RGBA16F);
|
||||||
ENUM_TO_STR(GL_SRGB8_ALPHA8);
|
ENUM_TO_STR(GL_SRGB8_ALPHA8);
|
||||||
default: {
|
default:
|
||||||
// TODO: Enable C++20 for std::format
|
return std::format("0x{:X}", source);
|
||||||
std::ostringstream ss;
|
|
||||||
ss << "0x" << std::hex << source;
|
|
||||||
return ss.str();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue