diff --git a/src/Magnum/Platform/magnum-info.cpp b/src/Magnum/Platform/magnum-info.cpp index 6d38eb315..d06ee9911 100644 --- a/src/Magnum/Platform/magnum-info.cpp +++ b/src/Magnum/Platform/magnum-info.cpp @@ -275,6 +275,9 @@ MagnumInfo::MagnumInfo(const Arguments& arguments): Platform::WindowlessApplicat createContext(); Context& c = Context::current(); + #ifndef MAGNUM_TARGET_GLES + Debug() << "Core profile:" << (c.isCoreProfile() ? "yes" : "no"); + #endif Debug() << "Context flags:"; for(const auto flag: {Context::Flag::Debug, Context::Flag::NoError,