OpenXrDisplayPlugin: Use C++20 std::format.

This commit is contained in:
Lubosz Sarnecki 2024-09-04 21:51:33 +02:00 committed by Ada
parent aa6facf7e6
commit 760b846bb1

View file

@ -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);
}
}