Cleanup: quest unused argument warnings without FFMpeg

This commit is contained in:
Campbell Barton
2024-02-22 22:35:39 +11:00
parent 5782555c47
commit da40fcdd15

View File

@@ -1323,7 +1323,7 @@ void IMB_anim_index_rebuild(IndexBuildContext *context,
}
}
#endif
UNUSED_VARS(stop, do_update, progress);
UNUSED_VARS(context, stop, do_update, progress);
}
void IMB_anim_index_rebuild_finish(IndexBuildContext *context, const bool stop)
@@ -1334,7 +1334,7 @@ void IMB_anim_index_rebuild_finish(IndexBuildContext *context, const bool stop)
}
#endif
/* static defined at top of the file */
UNUSED_VARS(stop, proxy_sizes);
UNUSED_VARS(context, stop, proxy_sizes);
}
void IMB_free_indices(ImBufAnim *anim)