]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/mag-gfx/lib/canvas.cc
3f78c24bde34f9ca40db3b5dc58907fd791b607e
[l4.git] / l4 / pkg / mag-gfx / lib / canvas.cc
1 /*
2  * (c) 2009 Alexander Warg <warg@os.inf.tu-dresden.de>
3  *     economic rights: Technische Universität Dresden (Germany)
4  *
5  * This file is part of TUD:OS and distributed under the terms of the
6  * GNU General Public License 2.
7  * Please see the COPYING-GPL-2 file for details.
8  */
9 #include <l4/mag-gfx/canvas>
10
11 namespace Mag_gfx {
12
13 void
14 Canvas::draw_rect(Rect const &r, Rgba32::Color color)
15 {
16   draw_box(r.top(1), color);
17   draw_box(r.bottom(1), color);
18   draw_box(r.left(1), color);
19   draw_box(r.right(1), color);
20 }
21
22 }