Merge pull request #25134 from staddy/master

Check for null pointer in RasterizerSceneGLES2::render_shadow
This commit is contained in:
Juan Linietsky
2019-02-12 07:04:12 -03:00
committed by GitHub
+3 -1
View File
@@ -3041,7 +3041,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);
}