Downgrade surface format message from warning to debug
[supertux.git] / src / video / renderer.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_VIDEO_RENDERER_HPP
18 #define HEADER_SUPERTUX_VIDEO_RENDERER_HPP
19
20 #include <memory>
21 #include <string>
22 #include <vector>
23
24 #include <SDL_video.h>
25 #include <assert.h>
26 #include <stdint.h>
27 #include <obstack.h>
28
29 #include "math/rectf.hpp"
30 #include "math/vector.hpp"
31 #include "video/color.hpp"
32 #include "video/font.hpp"
33 #include "video/glutil.hpp"
34 #include "video/surface.hpp"
35
36 class Surface;
37 class Texture;
38 struct DrawingRequest;
39
40 class Renderer
41 {
42 public:
43   Renderer();
44   virtual ~Renderer();
45
46   virtual void start_draw() = 0;
47   virtual void end_draw() = 0;
48   virtual void draw_surface(const DrawingRequest& request) = 0;
49   virtual void draw_surface_part(const DrawingRequest& request) = 0;
50   virtual void draw_gradient(const DrawingRequest& request) = 0;
51   virtual void draw_filled_rect(const DrawingRequest& request)= 0;
52   virtual void draw_inverse_ellipse(const DrawingRequest& request)= 0;
53   virtual void do_take_screenshot() = 0;
54   virtual void flip() = 0;
55   virtual void resize(int w, int h) = 0;
56   virtual void apply_config() = 0;
57   virtual Vector to_logical(int physical_x, int physical_y) = 0;
58   virtual void set_gamma(float gamma) = 0;
59   virtual SDL_Window* get_window() const = 0;
60 };
61
62 #endif
63
64 /* EOF */