dfb08bd214f542742b99841efbfb88bcdb4f712a
[supertux.git] / src / video / gl_renderer.hpp
1 //  $Id: gl_renderer.hpp 4986 2007-04-16 17:48:28Z matzeb $
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 #include <config.h>
20
21 #ifdef HAVE_OPENGL
22
23 #ifndef SUPERTUX_GL_RENDERER_H
24 #define SUPERTUX_GL_RENDERER_H
25
26 #include "renderer.hpp"
27
28 namespace GL
29 {
30   class Renderer : public ::Renderer
31   {
32   private:
33     int desktop_width;
34     int desktop_height;
35
36   public:
37     Renderer();
38     ~Renderer();
39
40     void draw_surface(const DrawingRequest& request);
41     void draw_surface_part(const DrawingRequest& request);
42     void draw_text(const DrawingRequest& request);
43     void draw_gradient(const DrawingRequest& request);
44     void draw_filled_rect(const DrawingRequest& request);
45     void draw_inverse_ellipse(const DrawingRequest& request);
46     void do_take_screenshot();
47     void flip();
48     void resize(int w, int h);
49     void apply_config();
50   };
51 }
52
53 #endif
54
55 #endif