forked from blender/blender
Cleanup: Reduce use and scope of templates in vertex paint #2
@ -1023,7 +1023,7 @@ static void ccgDM_release(DerivedMesh *dm)
|
||||
if (ccgdm->multires.modified_flags) {
|
||||
/* Check that mmd still exists */
|
||||
if (!ccgdm->multires.local_mmd &&
|
||||
BLI_findindex(&ccgdm->multires.ob->modifiers, ccgdm->multires.mmd) < 0)
|
||||
BLI_findindex(&ccgdm->multires.ob->modifiers, ccgdm->multires.mmd) == -1)
|
||||
{
|
||||
ccgdm->multires.mmd = nullptr;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -658,7 +658,7 @@ static void rna_ArmatureConstraint_target_remove(
|
||||
bArmatureConstraint *acon = static_cast<bArmatureConstraint *>(con->data);
|
||||
bConstraintTarget *tgt = static_cast<bConstraintTarget *>(target_ptr->data);
|
||||
|
||||
if (BLI_findindex(&acon->targets, tgt) < 0) {
|
||||
if (BLI_findindex(&acon->targets, tgt) == -1) {
|
||||
BKE_report(reports, RPT_ERROR, "Target is not in the constraint target list");
|
||||
return;
|
||||
}
|
||||
|
@ -1474,8 +1474,9 @@ static Sequence *rna_SeqTimelineChannel_owner_get(Editing *ed, SeqTimelineChanne
|
||||
if (seq->type != SEQ_TYPE_META) {
|
||||
continue;
|
||||
}
|
||||
if (BLI_findindex(&seq->channels, channel) >= 0) {
|
||||
if (BLI_findindex(&seq->channels, channel) != -1) {
|
||||
channel_owner = seq;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -280,7 +280,8 @@ int seq_get_shown_sequences(const Scene *scene,
|
||||
scene, channels, seqbase, timeline_frame, chanshown);
|
||||
const int strip_count = BLI_gset_len(collection->set);
|
||||
|
||||
if (strip_count > MAXSEQ) {
|
||||
if (UNLIKELY(strip_count > MAXSEQ)) {
|
||||
SEQ_collection_free(collection);
|
||||
BLI_assert_msg(0, "Too many strips, this shouldn't happen");
|
||||
return 0;
|
||||
}
|
||||
@ -1878,7 +1879,7 @@ static ImBuf *seq_render_strip_stack(const SeqRenderData *context,
|
||||
ImBuf *out = NULL;
|
||||
|
||||
count = seq_get_shown_sequences(
|
||||
context->scene, channels, seqbasep, timeline_frame, chanshown, (Sequence **)&seq_arr);
|
||||
context->scene, channels, seqbasep, timeline_frame, chanshown, seq_arr);
|
||||
|
||||
if (count == 0) {
|
||||
return NULL;
|
||||
|
@ -377,7 +377,7 @@ ListBase *SEQ_get_seqbase_by_seq(const Scene *scene, Sequence *seq)
|
||||
if (seq_meta != NULL) {
|
||||
return &seq_meta->seqbase;
|
||||
}
|
||||
if (BLI_findindex(main_seqbase, seq) >= 0) {
|
||||
if (BLI_findindex(main_seqbase, seq) != -1) {
|
||||
return main_seqbase;
|
||||
}
|
||||
return NULL;
|
||||
|
@ -1950,7 +1950,7 @@ void wm_window_delete_removed_timers(wmWindowManager *wm)
|
||||
void WM_event_remove_timer(wmWindowManager *wm, wmWindow *UNUSED(win), wmTimer *timer)
|
||||
{
|
||||
/* Extra security check. */
|
||||
if (BLI_findindex(&wm->timers, timer) < 0) {
|
||||
if (BLI_findindex(&wm->timers, timer) == -1) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user