Browse Source

Platform: minor cosmetic changes.

pull/364/head
Vladimír Vondruš 7 years ago
parent
commit
51ff5644f0
  1. 10
      src/Magnum/Platform/Screen.h

10
src/Magnum/Platform/Screen.h

@ -36,13 +36,15 @@
namespace Magnum { namespace Platform { namespace Magnum { namespace Platform {
namespace Implementation { namespace Implementation {
enum class PropagatedScreenEvent: UnsignedByte {
enum class PropagatedScreenEvent: UnsignedByte {
Draw = 1 << 0, Draw = 1 << 0,
Input = 1 << 1 Input = 1 << 1
}; };
typedef Containers::EnumSet<PropagatedScreenEvent> PropagatedScreenEvents;
CORRADE_ENUMSET_OPERATORS(PropagatedScreenEvents)
typedef Containers::EnumSet<PropagatedScreenEvent> PropagatedScreenEvents;
CORRADE_ENUMSET_OPERATORS(PropagatedScreenEvents)
} }
/** /**

Loading…
Cancel
Save