Fixed resize handling of lightmaps, they are now recreated on resize()
[supertux.git] / src / video / gl / gl_video_system.cpp
1 //  SuperTux
2 //  Copyright (C) 2014 Ingo Ruhnke <grumbel@gmail.com>
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 #include "video/gl/gl_video_system.hpp"
18
19 #include "video/gl/gl_lightmap.hpp"
20 #include "video/gl/gl_renderer.hpp"
21 #include "video/gl/gl_surface_data.hpp"
22 #include "video/gl/gl_texture.hpp"
23 #include "video/texture_manager.hpp"
24
25 GLVideoSystem::GLVideoSystem() :
26   m_texture_manager(new TextureManager),
27   m_renderer(new GLRenderer),
28   m_lightmap(new GLLightmap)
29 {
30 }
31
32 Renderer&
33 GLVideoSystem::get_renderer()
34 {
35   return *m_renderer;
36 }
37
38 Lightmap&
39 GLVideoSystem::get_lightmap()
40 {
41   return *m_lightmap;
42 }
43
44 TexturePtr
45 GLVideoSystem::new_texture(SDL_Surface* image)
46 {
47   return TexturePtr(new GLTexture(image));
48 }
49
50 SurfaceData*
51 GLVideoSystem::new_surface_data(const Surface& surface)
52 {
53   return new GLSurfaceData(surface);
54 }
55
56 void
57 GLVideoSystem::free_surface_data(SurfaceData* surface_data)
58 {
59   delete surface_data;
60 }
61
62 void
63 GLVideoSystem::apply_config()
64 {
65   m_renderer->apply_config();
66 }
67
68 void
69 GLVideoSystem::resize(int w, int h)
70 {
71   m_renderer->resize(w, h);
72   m_lightmap.reset(new GLLightmap);
73 }
74
75 /* EOF */