Skip to content

Commit

Permalink
fix misc-only single test info print
Browse files Browse the repository at this point in the history
  • Loading branch information
zmike committed Feb 1, 2023
1 parent c651052 commit f69c00a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vkoverhead.c
Original file line number Diff line number Diff line change
Expand Up @@ -3173,9 +3173,9 @@ main(int argc, char *argv[])
if (!output_only) {
if (!draw_only && !descriptor_only && !misc_only)
printf("\t* submit numbers are reported as operations per second\n");
if (!draw_only && !submit_only && !misc_only)
printf("\t* descriptor numbers are reported as thousands of operations per second\n");
if (!draw_only && !submit_only && !descriptor_only)
printf("\t* descriptor numbers are reported as thousands of operations per second\n");
if (!draw_only && !submit_only && !misc_only)
printf("\t* misc numbers are reported as thousands of operations per second\n"
"\t* percentages for misc cases should be ignored\n");
}
Expand Down

0 comments on commit f69c00a

Please sign in to comment.