diff --git a/doc/changelog.dox b/doc/changelog.dox index 00e714173..5399fb045 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -68,6 +68,7 @@ See also: - Don't assert in DPI scaling detection in @ref Platform::Sdl2Application and @ref Platform::GlfwApplication on X11 DEs that don't create any `RESOURCE_MANAGER` (see [mosra/magnum#290](https://github.com/mosra/magnum/issues/290)) +- The @ref GL::Context::States enum set was missing value combining operators @subsection changelog-latest-docs Documentation diff --git a/src/Magnum/GL/Context.h b/src/Magnum/GL/Context.h index c2a8777c9..72bcf5e7e 100644 --- a/src/Magnum/GL/Context.h +++ b/src/Magnum/GL/Context.h @@ -692,6 +692,7 @@ class MAGNUM_GL_EXPORT Context { CORRADE_ENUMSET_OPERATORS(Context::Flags) #endif CORRADE_ENUMSET_OPERATORS(Context::DetectedDrivers) +CORRADE_ENUMSET_OPERATORS(Context::States) #ifndef MAGNUM_TARGET_WEBGL /** @debugoperatorclassenum{Context,Context::Flag} */