]> git.cworth.org Git - apitrace/blobdiff - cli/cli_main.cpp
Add "apitrace trim" command.
[apitrace] / cli / cli_main.cpp
index a3abf54a0d6daab8aee1a5e09c71d6af6bdfeb48..a776107fd12a13c6ae2a01cff510245b096af115 100644 (file)
@@ -66,8 +66,14 @@ const Command help_command = {
 };
 
 static const Command * commands[] = {
+    &diff_command,
+    &diff_state_command,
+    &diff_images_command,
     &dump_command,
+    &pickle_command,
+    &repack_command,
     &trace_command,
+    &trim_command,
     &help_command
 };
 
@@ -181,5 +187,5 @@ main(int argc, char **argv)
     std::cerr << "Error: unknown command " << command_name
               << " (see \"apitrace help\").\n";
 
-    return 1;
+   return 1;
 }