PrevUpHomeNext

Context profile bits

#include <oglplus/context_profile_bit.hpp>

enum class ContextProfileBit : GLbitfield
{
	Core          = GL_CONTEXT_CORE_PROFILE_BIT,
	Compatibility = GL_CONTEXT_COMPATIBILITY_PROFILE_BIT
};

template <>
Range<ContextProfileBit> EnumValueRange<ContextProfileBit>(void);

StrCRef EnumValueName(ContextProfileBit);

Bitfield<ContextProfileBit> operator | (ContextProfileBit b1, ContextProfileBit b2);

PrevUpHomeNext