Cleaned up VideoSystem initalisation
[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
24 GLVideoSystem::GLVideoSystem() :
25   m_renderer(new GLRenderer),
26   m_lightmap(new GLLightmap)
27 {
28 }
29
30 Renderer&
31 GLVideoSystem::get_renderer()
32 {
33   return *m_renderer;
34 }
35
36 Lightmap&
37 GLVideoSystem::get_lightmap()
38 {
39   return *m_lightmap;
40 }
41
42 TexturePtr
43 GLVideoSystem::new_texture(SDL_Surface* image)
44 {
45   return TexturePtr(new GLTexture(image));
46 }
47
48 SurfaceData*
49 GLVideoSystem::new_surface_data(const Surface& surface)
50 {
51   return new GLSurfaceData(surface);
52 }
53
54 void
55 GLVideoSystem::free_surface_data(SurfaceData* surface_data)
56 {
57   delete surface_data;
58 }
59
60 /* EOF */