Minor cleanup
[supertux.git] / src / video / glutil.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_VIDEO_GLUTIL_HPP
18 #define HEADER_SUPERTUX_VIDEO_GLUTIL_HPP
19
20 #include <config.h>
21
22 #ifdef HAVE_OPENGL
23
24 #include <sstream>
25 #include <stdexcept>
26
27 #ifndef GL_VERSION_ES_CM_1_0
28 #  include <GL/glew.h>
29 #endif
30
31 #if defined(MACOSX)
32 #  include <OpenGL/gl.h>
33 #  include <OpenGL/glext.h>
34 #elif defined(GL_VERSION_ES_CM_1_0)
35 #  include <GLES/gl.h>
36 #  include <GLES/glext.h>
37 #else
38 #  include <GL/gl.h>
39 #  include <GL/glext.h>
40 #endif
41
42 static inline void check_gl_error(const char* message)
43 {
44   GLenum error = glGetError();
45   if(error != GL_NO_ERROR) {
46     std::ostringstream msg;
47     msg << "OpenGLError while '" << message << "': ";
48     switch(error) {
49       case GL_INVALID_ENUM:
50         msg << "INVALID_ENUM: An unacceptable value is specified for an "
51           "enumerated argument.";
52         break;
53       case GL_INVALID_VALUE:
54         msg << "INVALID_VALUE: A numeric argument is out of range.";
55         break;
56       case GL_INVALID_OPERATION:
57         msg << "INVALID_OPERATION: The specified operation is not allowed "
58           "in the current state.";
59         break;
60       case GL_STACK_OVERFLOW:
61         msg << "STACK_OVERFLOW: This command would cause a stack overflow.";
62         break;
63       case GL_STACK_UNDERFLOW:
64         msg << "STACK_UNDERFLOW: This command would cause a stack underflow.";
65         break;
66       case GL_OUT_OF_MEMORY:
67         msg << "OUT_OF_MEMORY: There is not enough memory left to execute the "
68           "command.";
69         break;
70 #ifdef GL_TABLE_TOO_LARGE
71       case GL_TABLE_TOO_LARGE:
72         msg << "TABLE_TOO_LARGE: table is too large";
73         break;
74 #endif
75       default:
76         msg << "Unknown error (code " << error << ")";
77     }
78
79     throw std::runtime_error(msg.str());
80   }
81 }
82
83 static inline void assert_gl(const char* message)
84 {
85   check_gl_error(message);
86 }
87
88 #else
89
90 #define GLenum int
91 #define GLint int
92 #define GL_SRC_ALPHA 0
93 #define GL_ONE_MINUS_SRC_ALPHA 1
94 #define GL_RGBA 2
95 #define GL_ONE 3
96
97 #endif
98
99 #endif
100
101 /* EOF */