summaryrefslogtreecommitdiff
path: root/src/compositor.c
diff options
context:
space:
mode:
authorDerek Foreman <derekf@osg.samsung.com>2015-06-10 16:57:09 -0500
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-06-22 14:56:04 +0300
commit4fa7b7f06ef11e0515760a94e2fdb75a9db9794f (patch)
tree4a8a3c26ff1feb3c5520c4a9a6e2695a2cb7667d /src/compositor.c
parent360cfb017e281c1f605dce4b77a557f11660f085 (diff)
downloadweston-4fa7b7f06ef11e0515760a94e2fdb75a9db9794f.tar.gz
compositor: Add missing help text
Help messages were missing for some command line options. Signed-off-by: Derek Foreman <derekf@osg.samsung.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'src/compositor.c')
-rw-r--r--src/compositor.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compositor.c b/src/compositor.c
index 2f89b398..ee6120b1 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -5069,7 +5069,8 @@ usage(int error_code)
fprintf(stderr,
"Options for fbdev-backend.so:\n\n"
" --tty=TTY\t\tThe tty to use\n"
- " --device=DEVICE\tThe framebuffer device to use\n\n");
+ " --device=DEVICE\tThe framebuffer device to use\n"
+ " --use-gl\t\tUse the GL renderer\n\n");
#endif
#if defined(BUILD_X11_COMPOSITOR)
@@ -5077,6 +5078,7 @@ usage(int error_code)
"Options for x11-backend.so:\n\n"
" --width=WIDTH\t\tWidth of X window\n"
" --height=HEIGHT\tHeight of X window\n"
+ " --scale=SCALE\t\tScale factor of output\n"
" --fullscreen\t\tRun in fullscreen mode\n"
" --use-pixman\t\tUse the pixman (CPU) renderer\n"
" --output-count=COUNT\tCreate multiple outputs\n"