blob: bf9cb5c2692b61f1b4df1a9510176170b88889fc [file] [log] [blame]
Robert Hak4db2ded2002-08-13 09:19:21 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Robert E. Hak <rhak@ramapo.edu>
11 *
12 * Windows Copyright (C) 2002 by Felix Arends
13 * X11 Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
14 *
15 * All files in this archive are subject to the GNU General Public License.
16 * See the file COPYING in the source tree root for full license agreement.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ****************************************************************************/
22
23#include "lcd-common.h"
Robert Hake7a6a822002-08-13 09:32:56 +000024#include "lcd.h"
Linus Nielsen Feltzingfc72c532006-02-03 15:19:58 +000025#include "lcd-sdl.h"
Daniel Stenberg41cfe302003-12-15 10:25:51 +000026
Jens Arnold3be6cf12005-11-15 23:37:21 +000027void lcd_blit(const fb_data* p_data, int x, int y, int width, int height,
Daniel Stenberg41cfe302003-12-15 10:25:51 +000028 int stride)
29{
30 (void)p_data;
31 (void)x;
32 (void)y;
33 (void)width;
34 (void)height;
35 (void)stride;
36}
37
Jörg Hohensohna5e1d062003-12-20 10:00:37 +000038void lcd_set_flip(bool yesno)
39{
40 (void)yesno;
Jens Arnolde8bb31e2004-04-21 09:44:07 +000041}
42
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000043void lcd_set_invert_display(bool invert)
44{
45 (void)invert;
46}
47
Jens Arnold9051afa2006-07-25 11:15:50 +000048int lcd_default_contrast(void)
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000049{
Jens Arnold9051afa2006-07-25 11:15:50 +000050 return 28;
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000051}
52
Michael Sevakis979c2b72007-07-08 13:13:25 +000053void lcd_sleep(void)
54{
55}
56
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000057#ifdef HAVE_REMOTE_LCD
58void lcd_remote_set_contrast(int val)
59{
60 (void)val;
61}
62void lcd_remote_backlight_on(int val)
63{
64 (void)val;
65}
66void lcd_remote_backlight_off(int val)
67{
68 (void)val;
69}
Jens Arnold22c15b72005-06-17 22:03:56 +000070
71void lcd_remote_set_flip(bool yesno)
72{
73 (void)yesno;
74}
Jens Arnold9051afa2006-07-25 11:15:50 +000075
76void lcd_remote_set_invert_display(bool invert)
77{
78 (void)invert;
79}
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000080#endif