PrevUpHomeNext

OpenGL reset notification strategy

#include <eglplus/opengl_rns.hpp>

enum class OpenGLResetNotificationStrategy : EGLenum
{
	NoResetNotification = EGL_NO_RESET_NOTIFICATION,
	LoseContextOnReset  = EGL_LOSE_CONTEXT_ON_RESET
};

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

StrCRef EnumValueName(OpenGLResetNotificationStrategy);

PrevUpHomeNext