diff options
author | Lionel Landwerlin <[email protected]> | 2019-02-28 16:47:56 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-05-02 17:02:06 +0100 |
commit | 9eddceef446ec90bcbd7a6239a54772b32d47f2e (patch) | |
tree | 7b56120a23acbd35b08139e18ccec3027f8c546e /src/vulkan/overlay-layer/overlay_params.c | |
parent | a1e6b5e9be4ca4a1e76a1e93e1ee4366d731ae19 (diff) |
vulkan/overlay: update help printout
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/vulkan/overlay-layer/overlay_params.c')
-rw-r--r-- | src/vulkan/overlay-layer/overlay_params.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vulkan/overlay-layer/overlay_params.c b/src/vulkan/overlay-layer/overlay_params.c index 36819659c6f..51f85309574 100644 --- a/src/vulkan/overlay-layer/overlay_params.c +++ b/src/vulkan/overlay-layer/overlay_params.c @@ -58,13 +58,13 @@ parse_help(const char *str) { fprintf(stderr, "Layer params using VK_LAYER_MESA_OVERLAY_CONFIG=\n"); #define OVERLAY_PARAM_BOOL(name) \ - fprintf(stderr, "\t%s=0/1\n", #name); + fprintf(stderr, "\t%s=0|1\n", #name); #define OVERLAY_PARAM_CUSTOM(name) OVERLAY_PARAMS #undef OVERLAY_PARAM_BOOL #undef OVERLAY_PARAM_CUSTOM fprintf(stderr, "\tposition=top-left|top-right|bottom-left|bottom-right\n"); - fprintf(stderr, "\tfps_sampling_period=number of milliseconds\n"); + fprintf(stderr, "\tfps_sampling_period=number-of-milliseconds\n"); return true; } |