blob: b9fdb7222f11b347a759a1565574dd7da910de1b [file] [log] [blame]
David 'Digit' Turnerc5b12702009-06-19 00:36:12 +02001/* Copyright (C) 2009 The Android Open Source Project
2**
3** This software is licensed under the terms of the GNU General Public
4** License version 2, as published by the Free Software Foundation, and
5** may be copied, distributed, and modified under those terms.
6**
7** This program is distributed in the hope that it will be useful,
8** but WITHOUT ANY WARRANTY; without even the implied warranty of
9** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10** GNU General Public License for more details.
11*/
12#ifndef _ANDROID_HW_LCD_H
13#define _ANDROID_HW_LCD_H
14
15#define LCD_DENSITY_MIN 120
16#define LCD_DENSITY_DEFAULT 160
17#define LCD_DENSITY_MAX 240
18
19/* Sets the boot property corresponding to the emulated abstract LCD density */
20extern void hwLcd_setBootProperty(int density);
21
22#endif /* _ANDROID_HW_LCD_H */
23