diff --git a/src/Magnum/AbstractFramebuffer.h b/src/Magnum/AbstractFramebuffer.h index 763d1a382..e86ea8185 100644 --- a/src/Magnum/AbstractFramebuffer.h +++ b/src/Magnum/AbstractFramebuffer.h @@ -30,7 +30,6 @@ */ #include -#include #include "Magnum/AbstractObject.h" #include "Magnum/Math/Range.h" @@ -134,21 +133,6 @@ enum class FramebufferTarget: GLenum { #else Draw, #endif - - #ifdef MAGNUM_BUILD_DEPRECATED - /** - * Framebuffer drawing target - * @deprecated Use @ref FramebufferTarget::Draw instead. - */ - ReadDraw CORRADE_DEPRECATED_ENUM("use FramebufferTarget::Draw instead") = - #ifndef MAGNUM_TARGET_GLES2 - GL_DRAW_FRAMEBUFFER - #elif !defined(MAGNUM_TARGET_WEBGL) - GL_DRAW_FRAMEBUFFER_APPLE - #else - 1 - #endif - #endif }; namespace Implementation { struct FramebufferState; }