Browse Source

gl-info: print more compact driver and flags info.

pull/578/head
Vladimír Vondruš 4 years ago
parent
commit
59a973c678
  1. 4
      src/Magnum/Platform/gl-info.cpp

4
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());

Loading…
Cancel
Save