summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playergfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/playergfx.h')
-rw-r--r--apps/plugins/lib/playergfx.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/apps/plugins/lib/playergfx.h b/apps/plugins/lib/playergfx.h
deleted file mode 100644
index 9f1305af12..0000000000
--- a/apps/plugins/lib/playergfx.h
+++ /dev/null
@@ -1,55 +0,0 @@
1/***************************************************************************
2* __________ __ ___.
3* Open \______ \ ____ ____ | | _\_ |__ _______ ___
4* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7* \/ \/ \/ \/ \/
8* $Id$
9*
10* Bitmap graphics on player LCD!
11*
12* Copyright (C) 2005 Jens Arnold
13*
14* This program is free software; you can redistribute it and/or
15* modify it under the terms of the GNU General Public License
16* as published by the Free Software Foundation; either version 2
17* of the License, or (at your option) any later version.
18*
19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20* KIND, either express or implied.
21*
22****************************************************************************/
23
24#ifndef __PGFX_H__
25#define __PGFX_H__
26
27#include "plugin.h"
28
29#ifdef HAVE_LCD_CHARCELLS /* Player only :) */
30
31bool pgfx_init(int cwidth, int cheight);
32void pgfx_release(void);
33void pgfx_display(int cx, int cy);
34void pgfx_display_block(int cx, int cy, int x, int y);
35void pgfx_update(void);
36
37void pgfx_set_drawmode(int mode);
38int pgfx_get_drawmode(void);
39
40void pgfx_clear_display(void);
41void pgfx_drawpixel(int x, int y);
42void pgfx_drawline(int x1, int y1, int x2, int y2);
43void pgfx_hline(int x1, int x2, int y);
44void pgfx_vline(int x, int y1, int y2);
45void pgfx_drawrect(int x, int y, int width, int height);
46void pgfx_fillrect(int x, int y, int width, int height);
47void pgfx_bitmap_part(const unsigned char *src, int src_x, int src_y,
48 int stride, int x, int y, int width, int height);
49void pgfx_bitmap(const unsigned char *src, int x, int y, int width, int height);
50
51#define pgfx_mono_bitmap_part pgfx_bitmap_part
52#define pgfx_mono_bitmap pgfx_bitmap
53
54#endif /* HAVE_LCD_CHARCELLS */
55#endif /* __PGFX_H__ */