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
commit 7713ec8637
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
}