]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/scout-gfx/include/sky_texture
Update
[l4.git] / l4 / pkg / scout-gfx / include / sky_texture
1 // vi:ft=cpp
2 /*
3  * (c) 2010 Alexander Warg <warg@os.inf.tu-dresden.de>
4  *     economic rights: Technische Universität Dresden (Germany)
5  *
6  * This file is part of TUD:OS and distributed under the terms of the
7  * GNU General Public License 2.
8  * Please see the COPYING-GPL-2 file for details.
9  */
10 #pragma once
11
12 #include <l4/scout-gfx/widget>
13
14 namespace Scout_gfx {
15
16 class Sky_texture : public Widget
17 {
18 public:
19   virtual void generate(Mag_gfx::Area const &size, bool detailed = true) = 0;
20 };
21
22 }