Add a note about Rockbox not running on Sansas v2 (FS#8477 by Marc Guay).
[Rockbox.git] / uisimulator / common / lcd-common.c
blobbf9cb5c2692b61f1b4df1a9510176170b88889fc
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Robert E. Hak <rhak@ramapo.edu>
12 * Windows Copyright (C) 2002 by Felix Arends
13 * X11 Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
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.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #include "lcd-common.h"
24 #include "lcd.h"
25 #include "lcd-sdl.h"
27 void lcd_blit(const fb_data* p_data, int x, int y, int width, int height,
28 int stride)
30 (void)p_data;
31 (void)x;
32 (void)y;
33 (void)width;
34 (void)height;
35 (void)stride;
38 void lcd_set_flip(bool yesno)
40 (void)yesno;
43 void lcd_set_invert_display(bool invert)
45 (void)invert;
48 int lcd_default_contrast(void)
50 return 28;
53 void lcd_sleep(void)
57 #ifdef HAVE_REMOTE_LCD
58 void lcd_remote_set_contrast(int val)
60 (void)val;
62 void lcd_remote_backlight_on(int val)
64 (void)val;
66 void lcd_remote_backlight_off(int val)
68 (void)val;
71 void lcd_remote_set_flip(bool yesno)
73 (void)yesno;
76 void lcd_remote_set_invert_display(bool invert)
78 (void)invert;
80 #endif