Browse Source

Removed long-deprecated FramebufferTarget::ReadDraw enum value.

Use separate Read and Draw values instead.
pull/231/head
Vladimír Vondruš 8 years ago
parent
commit
f1ee5de9ea
  1. 16
      src/Magnum/AbstractFramebuffer.h

16
src/Magnum/AbstractFramebuffer.h

@ -30,7 +30,6 @@
*/
#include <Corrade/Containers/EnumSet.h>
#include <Corrade/Utility/Macros.h>
#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; }

Loading…
Cancel
Save