PrevUpHomeNext

Reset notification strategy

#include <oglplus/reset_notif_strategy.hpp>

enum class ResetNotificationStrategy : GLenum
{
	NoResetNotification = GL_NO_RESET_NOTIFICATION,
	LoseContextOnReset  = GL_LOSE_CONTEXT_ON_RESET
};

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

StrCRef EnumValueName(ResetNotificationStrategy);

PrevUpHomeNext