Merge pull request #30570 from SonerSound/gles2_inconsistent_fix
Fix inconsistent lighting in GLES2
This commit is contained in:
commit
1d13567345
1 changed files with 2 additions and 2 deletions
|
@ -1133,8 +1133,8 @@ void RasterizerSceneGLES2::_add_geometry_with_material(RasterizerStorageGLES2::G
|
||||||
|
|
||||||
LightInstance *li = light_instance_owner.getornull(e->instance->light_instances[i]);
|
LightInstance *li = light_instance_owner.getornull(e->instance->light_instances[i]);
|
||||||
|
|
||||||
if (li->light_index >= render_light_instance_count) {
|
if (li->light_index >= render_light_instance_count || render_light_instances[li->light_index] != li) {
|
||||||
continue; // too many
|
continue; // too many or light_index did not correspond to the light instances to be rendered
|
||||||
}
|
}
|
||||||
|
|
||||||
if (copy) {
|
if (copy) {
|
||||||
|
|
Loading…
Reference in a new issue