From 59a973c678ed669045765174aad66b09ce92e138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 12 Jul 2022 13:38:32 +0200 Subject: [PATCH] gl-info: print more compact driver and flags info. --- src/Magnum/Platform/gl-info.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Platform/gl-info.cpp b/src/Magnum/Platform/gl-info.cpp index cd0d8534e..d0a317823 100644 --- a/src/Magnum/Platform/gl-info.cpp +++ b/src/Magnum/Platform/gl-info.cpp @@ -413,9 +413,9 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat Debug{} << "Core profile:" << (c.isCoreProfile() ? "yes" : "no"); #endif #ifndef MAGNUM_TARGET_WEBGL - Debug{} << "Context flags:" << c.flags(); + Debug{} << "Context flags:" << Debug::packed << c.flags(); #endif - Debug{} << "Detected driver:" << c.detectedDriver(); + Debug{} << "Detected driver:" << Debug::packed << c.detectedDriver(); Debug{} << "Supported GLSL versions:"; Debug{} << " " << ", "_s.joinWithoutEmptyParts(c.shadingLanguageVersionStrings());