Massive copyright update. I'm sorry if I'm crediting Matze for something he didn...
[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
20 #ifndef __GLUTIL_HPP__
21 #define __GLUTIL_HPP__
22
23 #include <sstream>
24 #include <stdexcept>
25 #include <GL/gl.h>
26
27 static inline void assert_gl(const char* message)
28 {
29 #ifdef DEBUG
30   GLenum error = glGetError();
31   if(error != GL_NO_ERROR) {
32     std::ostringstream msg;
33     msg << "OpenGLError while '" << message << "': ";
34     switch(error) {
35       case GL_INVALID_ENUM:
36         msg << "INVALID_ENUM: An unacceptable value is specified for an "
37                "enumerated argument.";
38         break;
39       case GL_INVALID_VALUE:
40         msg << "INVALID_VALUE: A numeric argument is out of range.";
41         break;
42       case GL_INVALID_OPERATION:
43         msg << "INVALID_OPERATION: The specified operation is not allowed "
44                "in the current state.";
45         break;
46       case GL_STACK_OVERFLOW:
47         msg << "STACK_OVERFLOW: This command would cause a stack overflow.";
48         break;
49       case GL_STACK_UNDERFLOW:
50         msg << "STACK_UNDERFLOW: This command would cause a stack underflow.";
51         break;
52       case GL_OUT_OF_MEMORY:
53         msg << "OUT_OF_MEMORY: There is not enough memory left to execute the "
54                "command.";
55         break;
56       default:
57         msg << "Unknown error (code " << error << ")";
58     }
59         
60     throw std::runtime_error(msg.str());
61   }
62 #endif
63 }
64
65 #endif
66