EEVEE-Next: Jittered Soft Shadows #119753

Closed
Miguel Pozo wants to merge 46 commits from pragma37/blender:pull-eevee-jittered-shoft-shadows into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 1 deletions
Showing only changes of commit a4dcf3ee2e - Show all commits

View File

@ -44,7 +44,7 @@ struct Light : public LightData, NonCopyable {
public:
bool initialized = false;
bool used = false;
bool do_jittering;
bool do_jittering = false;
/** Pointers to source Shadow. Type depends on `LightData::type`. */
ShadowDirectional *directional = nullptr;
@ -64,6 +64,7 @@ struct Light : public LightData, NonCopyable {
*static_cast<LightData *>(this) = other;
this->initialized = other.initialized;
this->used = other.used;
this->do_jittering = other.do_jittering;
this->directional = other.directional;
this->punctual = other.punctual;
other.directional = nullptr;