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