Remove bogus assert
[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
28 #ifdef USE_GLBINDING
29
30 #include <glbinding/gl/gl.h>
31 using namespace gl;
32
33 #else
34
35 #ifndef GL_VERSION_ES_CM_1_0
36 #  include <GL/glew.h>
37 #endif
38
39 #if defined(MACOSX)
40 #  include <OpenGL/gl.h>
41 #  include <OpenGL/glext.h>
42 #elif defined(GL_VERSION_ES_CM_1_0)
43 #  include <GLES/gl.h>
44 #  include <GLES/glext.h>
45 #else
46 #  include <GL/gl.h>
47 #  include <GL/glext.h>
48 #endif
49
50 #endif
51
52 static inline void check_gl_error(const char* message)
53 {
54   GLenum error = glGetError();
55   if(error != GL_NO_ERROR) {
56     std::ostringstream msg;
57     msg << "OpenGLError while '" << message << "': ";
58     switch(error) {
59       case GL_INVALID_ENUM:
60         msg << "INVALID_ENUM: An unacceptable value is specified for an "
61           "enumerated argument.";
62         break;
63       case GL_INVALID_VALUE:
64         msg << "INVALID_VALUE: A numeric argument is out of range.";
65         break;
66       case GL_INVALID_OPERATION:
67         msg << "INVALID_OPERATION: The specified operation is not allowed "
68           "in the current state.";
69         break;
70       case GL_STACK_OVERFLOW:
71         msg << "STACK_OVERFLOW: This command would cause a stack overflow.";
72         break;
73       case GL_STACK_UNDERFLOW:
74         msg << "STACK_UNDERFLOW: This command would cause a stack underflow.";
75         break;
76       case GL_OUT_OF_MEMORY:
77         msg << "OUT_OF_MEMORY: There is not enough memory left to execute the "
78           "command.";
79         break;
80 #ifdef GL_TABLE_TOO_LARGE
81       case GL_TABLE_TOO_LARGE:
82         msg << "TABLE_TOO_LARGE: table is too large";
83         break;
84 #endif
85       default:
86         msg << "Unknown error (code " << error << ")";
87     }
88
89     throw std::runtime_error(msg.str());
90   }
91 }
92
93 static inline void assert_gl(const char* message)
94 {
95   check_gl_error(message);
96 }
97
98 #else
99
100 #define GLenum int
101 #define GLint int
102 #define GL_SRC_ALPHA 0
103 #define GL_ONE_MINUS_SRC_ALPHA 1
104 #define GL_RGBA 2
105 #define GL_ONE 3
106
107 #endif
108
109 #endif
110
111 /* EOF */