X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fvideo%2Frenderer.hpp;h=5d4580798ebb99125b52057336192430941fc267;hb=d9ec4134c6d3a1c444199ba894bf5e9c084185f3;hp=b04d0dca43019d3be52b5f23d61095917d22724e;hpb=7a0031e8f250c852743709ab06ecafe1896eefbe;p=supertux.git diff --git a/src/video/renderer.hpp b/src/video/renderer.hpp index b04d0dca4..5d4580798 100644 --- a/src/video/renderer.hpp +++ b/src/video/renderer.hpp @@ -1,12 +1,10 @@ -// $Id: drawing_context.hpp 4986 2007-04-16 17:48:28Z matzeb $ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,27 +12,26 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// along with this program. If not, see . -#ifndef SUPERTUX_RENDERER_H -#define SUPERTUX_RENDERER_H +#ifndef HEADER_SUPERTUX_VIDEO_RENDERER_HPP +#define HEADER_SUPERTUX_VIDEO_RENDERER_HPP -#include -#include #include +#include +#include -#include -#include #include +#include +#include -#include "glutil.hpp" -#include "obstack/obstack.h" -#include "math/vector.hpp" #include "math/rect.hpp" -#include "surface.hpp" -#include "font.hpp" -#include "color.hpp" +#include "math/vector.hpp" +#include "obstack/obstack.h" +#include "video/color.hpp" +#include "video/font.hpp" +#include "video/glutil.hpp" +#include "video/surface.hpp" class Surface; class Texture; @@ -55,7 +52,13 @@ public: virtual void flip() = 0; virtual void resize(int w, int h) = 0; virtual void apply_config() = 0; + + static Renderer* instance() { assert(instance_); return instance_; } + +protected: + static Renderer* instance_; }; #endif +/* EOF */