From 45e7952ad49bc8f7c0d6345312146bebeacd0c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 21 Jun 2026 14:26:41 +0200 Subject: [PATCH] doc: list GL::Context::supportedExtensions() among deprecated APIs. Not sure why I didn't do that in deddda418e4003f79bf292baea1ea4d0a731e58c. --- doc/changelog.dox | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/changelog.dox b/doc/changelog.dox index bd855e362..cf14aae83 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -1449,6 +1449,11 @@ See also: particular, if `BUILD_DEPRECATED` is set but `MAGNUM_BUILD_DEPRECATED` not, the unprefixed options are also recognized. See also [mosra/corrade#139](https://github.com/mosra/corrade/issues/139). +- @cpp GL::Context::supportedExtensions() @ce is deprecated as it doesn't + provide anything that @ref GL::Context::extensionStrings(), + @ref GL::Extension::extensions() and @ref GL::Context::isExtensionSupported() + wouldn't provide already and only causes extra overhead during context + creation - @ref GL::DebugOutput::setCallback() taking a @ref std::string in the callback function pointer is deprecated in favor of a version taking a @relativeref{Corrade,Containers::StringView}. See also