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