Browse Source

Removed deprecated Context::Flag::Robustness enum value.

Use Context::Flag::RobustAccess instead.
pull/107/head
Vladimír Vondruš 11 years ago
parent
commit
95247c7d0b
  1. 10
      src/Magnum/Context.h

10
src/Magnum/Context.h

@ -125,15 +125,7 @@ class MAGNUM_EXPORT Context {
* @todo In ES available under glGetIntegerv(CONTEXT_ROBUST_ACCESS_EXT),
* how to make it compatible?
*/
RobustAccess = GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB,
#ifdef MAGNUM_BUILD_DEPRECATED
/**
* @copybrief Flag::RobustAccess
* @deprecated Use @ref Flag::RobustAccess instead.
*/
Robustness = GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB
#endif
RobustAccess = GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB
#endif
};

Loading…
Cancel
Save