From 74304944bb92bee47052713f737b6dcb0a211f48 Mon Sep 17 00:00:00 2001 From: Locke Lin Date: Fri, 21 Feb 2025 00:33:49 -0700 Subject: [PATCH] Remove duplicated --dump-resources --- android/scripts/gfxrecon.py | 1 - 1 file changed, 1 deletion(-) diff --git a/android/scripts/gfxrecon.py b/android/scripts/gfxrecon.py index ee9d1dbaa9..1b71c2538c 100644 --- a/android/scripts/gfxrecon.py +++ b/android/scripts/gfxrecon.py @@ -125,7 +125,6 @@ def CreateReplayParser(): parser.add_argument('--use-captured-swapchain-indices', action='store_true', default=False, help='Same as "--swapchain captured". Ignored if the "--swapchain" option is used.') parser.add_argument('file', nargs='?', help='File on device to play (forwarded to replay tool)') parser.add_argument('--dump-resources', metavar='DUMP_RESOURCES', help='The capture file will be examined, and will be converted to as used in --dump-resources . The converted args will be used used as the args for dump resources.') - parser.add_argument('--dump-resources', metavar='DUMP_RESOURCES', help='Extract --dump-resources block indices args from the specified file.') parser.add_argument('--dump-resources-before-draw', action='store_true', default=False, help= 'In addition to dumping gpu resources after the Vulkan draw calls specified by the --dump-resources argument, also dump resources before the draw calls.') parser.add_argument('--dump-resources-image-format', metavar='FORMAT', choices=['bmp', 'png'], help='Image file format to use when dumping image resources. Available formats are: bmp, png') parser.add_argument('--dump-resources-scale', metavar='DR_SCALE', help='tScale images generated by dump resources by the given scale factor. The scale factor must be a floating point number greater than 0. Values greater than 10 are capped at 10. Default value is 1.0.')