Check for null pointer in RasterizerSceneGLES2::render_shadow
Fixes #25131
This commit is contained in:
parent
7f9209781c
commit
dc7d9f8868
1 changed files with 3 additions and 1 deletions
|
@ -3015,7 +3015,9 @@ void RasterizerSceneGLES2::render_shadow(RID p_light, RID p_shadow_atlas, int p_
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
glViewport(0, 0, storage->frame.current_rt->width, storage->frame.current_rt->height);
|
if (storage->frame.current_rt) {
|
||||||
|
glViewport(0, 0, storage->frame.current_rt->width, storage->frame.current_rt->height);
|
||||||
|
}
|
||||||
glColorMask(1, 1, 1, 1);
|
glColorMask(1, 1, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue