diff options
| author | Charles Giessen <charles@lunarg.com> | 2024-10-11 12:26:50 -0500 |
|---|---|---|
| committer | Charles Giessen <46324611+charles-lunarg@users.noreply.github.com> | 2024-10-11 12:09:38 -0600 |
| commit | eb9b6043be165f06c7ec78fadbb1ff773c5fc19c (patch) | |
| tree | cb4eccab36dbeef53fdd00efe3ad97aa8201bcde /cube/cube.c | |
| parent | f8259b0718af105bbd0764145564558d38a640ec (diff) | |
| download | usermoji-eb9b6043be165f06c7ec78fadbb1ff773c5fc19c.tar.xz | |
vkcube: Remove unused command line option
The --validate-checks-disabled flag was unused, so will be removed.
Diffstat (limited to 'cube/cube.c')
| -rw-r--r-- | cube/cube.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cube/cube.c b/cube/cube.c index 78d0bb55..4879317c 100644 --- a/cube/cube.c +++ b/cube/cube.c @@ -437,7 +437,6 @@ struct demo { int32_t curFrame; int32_t frameCount; bool validate; - bool validate_checks_disabled; bool use_break; bool suppress_popups; bool force_errors; @@ -4223,11 +4222,6 @@ static void demo_init(struct demo *demo, int argc, char **argv) { demo->validate = true; continue; } - if (strcmp(argv[i], "--validate-checks-disabled") == 0) { - demo->validate = true; - demo->validate_checks_disabled = true; - continue; - } if (strcmp(argv[i], "--xlib") == 0) { fprintf(stderr, "--xlib is deprecated and no longer does anything"); continue; @@ -4286,7 +4280,7 @@ static void demo_init(struct demo *demo, int argc, char **argv) { ERR_EXIT("Usage: vkcube [--validate]\n", "Usage"); #else char *message = - "Usage:\n %s\t[--use_staging] [--validate] [--validate-checks-disabled]\n" + "Usage:\n %s\t[--use_staging] [--validate]\n" "\t[--break] [--c <framecount>] [--suppress_popups]\n" "\t[--incremental_present] [--display_timing]\n" "\t[--gpu_number <index of physical device>]\n" |
