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