diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2009-07-25 17:48:02 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-07-25 17:48:02 -0700 |
commit | 6cfe67b3b6c6827a1fca860a36bbb8cda6d2056b (patch) | |
tree | 256687529fcf5e6adc8798878d899143077714de /android/hw-lcd.h | |
parent | 2b8ea29e2bd12f876a4d06647e6077bf72de567e (diff) | |
parent | c5b127050f2dbed015d6b01703a33062d6910d4a (diff) | |
download | external_qemu-6cfe67b3b6c6827a1fca860a36bbb8cda6d2056b.zip external_qemu-6cfe67b3b6c6827a1fca860a36bbb8cda6d2056b.tar.gz external_qemu-6cfe67b3b6c6827a1fca860a36bbb8cda6d2056b.tar.bz2 |
Merge korg/donut into korg/master
Diffstat (limited to 'android/hw-lcd.h')
-rw-r--r-- | android/hw-lcd.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/android/hw-lcd.h b/android/hw-lcd.h new file mode 100644 index 0000000..b9fdb72 --- /dev/null +++ b/android/hw-lcd.h @@ -0,0 +1,23 @@ +/* Copyright (C) 2009 The Android Open Source Project +** +** This software is licensed under the terms of the GNU General Public +** License version 2, as published by the Free Software Foundation, and +** may be copied, distributed, and modified under those terms. +** +** This program is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +** GNU General Public License for more details. +*/ +#ifndef _ANDROID_HW_LCD_H +#define _ANDROID_HW_LCD_H + +#define LCD_DENSITY_MIN 120 +#define LCD_DENSITY_DEFAULT 160 +#define LCD_DENSITY_MAX 240 + +/* Sets the boot property corresponding to the emulated abstract LCD density */ +extern void hwLcd_setBootProperty(int density); + +#endif /* _ANDROID_HW_LCD_H */ + |