]> git.tdb.fi Git - libs/gl.git/blob - source/backends/opengl/backend_opengl.cpp
Move backend information into Device
[libs/gl.git] / source / backends / opengl / backend_opengl.cpp
1 #include "backend.h"
2
3 namespace Msp {
4 namespace GL {
5
6 GraphicsApi get_backend_api()
7 {
8 #ifdef GL_ES_VERSION_2_0
9         return OPENGL_ES;
10 #else
11         return OPENGL;
12 #endif
13 }
14
15 } // namespace GL
16 } // namespace Msp