refactor logger
[simavr] / examples / parts / hd44780_glut.h
1 /*
2         hd44780_glut.h
3
4         Copyright Luki <humbell@ethz.ch>
5         Copyright 2011 Michel Pollet <buserror@gmail.com>
6
7         This file is part of simavr.
8
9         simavr is free software: you can redistribute it and/or modify
10         it under the terms of the GNU General Public License as published by
11         the Free Software Foundation, either version 3 of the License, or
12         (at your option) any later version.
13
14         simavr is distributed in the hope that it will be useful,
15         but WITHOUT ANY WARRANTY; without even the implied warranty of
16         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17         GNU General Public License for more details.
18
19         You should have received a copy of the GNU General Public License
20         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
21  */
22 #ifndef __HD44780_GLUT_H__
23 #define __HD44780_GLUT_H__
24
25 #include "hd44780.h"
26
27 void
28 hd44780_gl_draw(
29                 hd44780_t *b,
30                 uint32_t background,
31                 uint32_t character,
32                 uint32_t text,
33                 uint32_t shadow);
34
35 void
36 hd44780_gl_init();
37
38 #endif