FastUIDraw
gl_header.hpp
Go to the documentation of this file.
1 /*!
2  * \file gl_header.hpp
3  * \brief file gl_header.hpp
4  *
5  * Copyright 2016 by Intel.
6  *
7  * Contact: kevin.rogovin@gmail.com
8  *
9  * This Source Code Form is subject to the
10  * terms of the Mozilla Public License, v. 2.0.
11  * If a copy of the MPL was not distributed with
12  * this file, You can obtain one at
13  * http://mozilla.org/MPL/2.0/.
14  *
15  * \author Kevin Rogovin <kevin.rogovin@gmail.com>
16  *
17  */
18 
19 #ifdef __EMSCRIPTEN__
20  #include <GLES3/gl3.h>
21 #elif defined(FASTUIDRAW_GL_USE_GLES)
22  #include <GLES3/gl3platform.h>
23  #include <GLES3/gl3.h>
24  #include <GLES3/gl31.h>
25  #include <GLES3/gl32.h>
26  #include <GLES2/gl2ext.h>
27 #else
28  #include <GL/glcorearb.h>
29 #endif