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