#ifndef GLBACKEND_DEFAULT_HPP_
#define GLBACKEND_DEFAULT_HPP_


#if defined(GLBACKEND_GLFW)
    #include "glbackend_glfw.hpp" // IWYU pragma: export
    using GLBackendDefault = GLBackendGLFW;
#else
    #error "No GLBackendDefault configured"
#endif


#endif