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