1
0
Fork 0

Merge pull request #11959 from hi-ogawa/fix-shadow-atlas-invalidation

Track LightInstance::shadow_atlases so that it will be freed properly
This commit is contained in:
Andreas Haas 2017-10-10 20:57:09 +02:00 committed by GitHub
commit dda64a3de6
1 changed files with 2 additions and 0 deletions

View File

@ -379,6 +379,7 @@ bool RasterizerSceneGLES3::shadow_atlas_update_light(RID p_atlas, RID p_light_in
sh->owner = p_light_intance;
sh->alloc_tick = tick;
sh->version = p_light_version;
li->shadow_atlases.insert(p_atlas);
//make new key
key = new_quadrant << ShadowAtlas::QUADRANT_SHIFT;
@ -414,6 +415,7 @@ bool RasterizerSceneGLES3::shadow_atlas_update_light(RID p_atlas, RID p_light_in
sh->owner = p_light_intance;
sh->alloc_tick = tick;
sh->version = p_light_version;
li->shadow_atlases.insert(p_atlas);
//make new key
uint32_t key = new_quadrant << ShadowAtlas::QUADRANT_SHIFT;