EEVEE-Next: Fix ObjectHandle::recalc #115243

Merged
Miguel Pozo merged 3 commits from pragma37/blender:pull-recalc-last_update-eevee into main 2023-11-27 12:23:27 +01:00
1 changed files with 0 additions and 6 deletions
Showing only changes of commit 156a342690 - Show all commits

View File

@ -52,12 +52,6 @@ ObjectHandle &SyncModule::sync_object(const ObjectRef &ob_ref)
handle.recalc = inst_.get_recalc_flags(ob_ref);
printf("%s | %u | %u | %u\n",
ob_ref.object->id.name,
(handle.recalc & ID_RECALC_TRANSFORM) != 0,
(handle.recalc & ID_RECALC_GEOMETRY) != 0,
(handle.recalc & ID_RECALC_SHADING) != 0);
if (handle.recalc != 0) {
inst_.sampling.reset();
}