0ccb63006bf66e9cd2ac4a09026465e596075787
[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 <sstream>
23 #include <stdexcept>
24 #include <GL/gl.h>
25
26 static inline void check_gl_error(const char* message)
27 {
28 #ifdef DEBUG
29   GLenum error = glGetError();
30   if(error != GL_NO_ERROR) {
31     std::ostringstream msg;
32     msg << "OpenGLError while '" << message << "': ";
33     switch(error) {
34       case GL_INVALID_ENUM:
35         msg << "INVALID_ENUM: An unacceptable value is specified for an "
36                "enumerated argument.";
37         break;
38       case GL_INVALID_VALUE:
39         msg << "INVALID_VALUE: A numeric argument is out of range.";
40         break;
41       case GL_INVALID_OPERATION:
42         msg << "INVALID_OPERATION: The specified operation is not allowed "
43                "in the current state.";
44         break;
45       case GL_STACK_OVERFLOW:
46         msg << "STACK_OVERFLOW: This command would cause a stack overflow.";
47         break;
48       case GL_STACK_UNDERFLOW:
49         msg << "STACK_UNDERFLOW: This command would cause a stack underflow.";
50         break;
51       case GL_OUT_OF_MEMORY:
52         msg << "OUT_OF_MEMORY: There is not enough memory left to execute the "
53                "command.";
54         break;
55 #ifdef GL_TABLE_TOO_LARGE
56       case GL_TABLE_TOO_LARGE:
57         msg << "TABLE_TOO_LARGE: table is too large";
58         break;
59 #endif                        
60       default:
61         msg << "Unknown error (code " << error << ")";
62     }
63         
64     throw std::runtime_error(msg.str());
65   }
66 #endif
67 }
68
69 static inline void assert_gl(const char* message)
70 {
71 #ifdef DEBUG
72   check_gl_error(message);
73 #else
74   (void) message;
75 #endif
76 }
77
78 #endif