1 #ifndef MSP_GL_BACKEND_H_
2 #define MSP_GL_BACKEND_H_
18 unsigned short major = 0;
19 unsigned short minor = 0;
22 Version(unsigned short, unsigned short);
23 Version(const std::string &);
25 bool operator>=(const Version &) const;
26 bool operator<(const Version &o) const { return !(*this>=o); }
27 operator bool() const { return major || minor; }
30 /** Returns the backend for which the library was compiled. */
31 GraphicsApi get_backend_api();