aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2012-04-24 13:57:02 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-04-24 13:57:02 -0700
commit22bcf1dad2be0fff58d67cb30599f6918a93baec (patch)
treead6dbc1f71a10fa9d20014fecaabe887d53ea4dc /android
parent6c6413d40ea9b8a658f4f1f2fa7303736fd156c6 (diff)
parentc135d75d5ae774d7349f1cf346eee03072047179 (diff)
downloadexternal_qemu-22bcf1dad2be0fff58d67cb30599f6918a93baec.zip
external_qemu-22bcf1dad2be0fff58d67cb30599f6918a93baec.tar.gz
external_qemu-22bcf1dad2be0fff58d67cb30599f6918a93baec.tar.bz2
am c135d75d: Merge "Reword -help-gpu text for clarity and accuracy"
* commit 'c135d75d5ae774d7349f1cf346eee03072047179': Reword -help-gpu text for clarity and accuracy
Diffstat (limited to 'android')
-rw-r--r--android/help.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/android/help.c b/android/help.c
index 20758c0..c6ffb87 100644
--- a/android/help.c
+++ b/android/help.c
@@ -1432,12 +1432,12 @@ static void
help_gpu(stralloc_t* out)
{
PRINTF(
- " Use -gpu <mode> to force the mode of hardware OpenGLES emulation.\n"
- " Valid values for <mode> are:\n\n"
+ " Use -gpu <mode> to override the mode of hardware OpenGL ES emulation\n"
+ " indicated by the AVD. Valid values for <mode> are:\n\n"
" on -> enable GPU emulation\n"
" off -> disable GPU emulation\n"
- " auto -> automatic detection\n"
+ " auto -> use the setting from the AVD\n"
" enabled -> same as 'on'\n"
" disabled -> same as 'off'\n\n"
@@ -1448,11 +1448,13 @@ help_gpu(stralloc_t* out)
" force the virtual device to use the slow software renderer instead.\n"
" Note that OpenGLES 2.0 is _not_ supported by it.\n\n"
- " The 'auto' mode is the default. It will only enable GPU emulation if the\n"
- " virtual device supports it, and the host-side OpenGLES emulation library\n"
- " could be properly initialized (this can fail when you run the emulator\n"
- " under certain restricted environments where the program can't access the\n"
- " graphics sub-system (e.g. head-less servers).\n"
+ " The 'auto' mode is the default. In this mode, the hw.gpu.enabled setting\n"
+ " in the AVD's hardware-qemu.ini file will determine whether GPU emulation\n"
+ " is enabled.\n\n"
+
+ " Even if hardware GPU emulation is enabled, if the host-side OpenGL ES\n"
+ " emulation library cannot be initialized, the emulator will run with GPU\n"
+ " emulation disabled rather than failing to start.\n"
);
}