Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-02-02 11:30:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-02 11:34:47 +0300
commit1d77302fd9ea9b3892ebdcf28150b3f7d40aeb21 (patch)
treec7e30d0edd10ed47b2efcecb330127b911865ebf /source/blender/blenlib/intern
parentd917d7cf948579f6aee58863f16225ed6e5ec2a0 (diff)
creator: add missing '--debug-*' arguments under debugging options
Only print "Other Options" when the heading has content to show.
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/BLI_args.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/BLI_args.c b/source/blender/blenlib/intern/BLI_args.c
index 3d4521a3304..07ab4f407f2 100644
--- a/source/blender/blenlib/intern/BLI_args.c
+++ b/source/blender/blenlib/intern/BLI_args.c
@@ -275,6 +275,16 @@ void BLI_args_print_other_doc(struct bArgs *ba)
}
}
+bool BLI_args_has_other_doc(const struct bArgs *ba)
+{
+ for (const bArgDoc *d = ba->docs.first; d; d = d->next) {
+ if (d->done == 0) {
+ return true;
+ }
+ }
+ return false;
+}
+
void BLI_args_parse(struct bArgs *ba, int pass, BA_ArgCallback default_cb, void *default_data)
{
BLI_assert((pass != 0) && (pass >= -1));