You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-26 15:46:23 +00:00
Avoid crash when allocating specular and normal-roughness buffers when render buffers aren't available
This commit is contained in:
@@ -1903,11 +1903,11 @@ void RenderForwardClustered::_render_scene(RenderDataRD *p_render_data, const Co
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Ensure this is allocated so we don't get a stutter the first time an object with SSS appears on screen.
|
// Ensure this is allocated so we don't get a stutter the first time an object with SSS appears on screen.
|
||||||
if (global_surface_data.sss_used) {
|
if (global_surface_data.sss_used && !is_reflection_probe) {
|
||||||
rb_data->ensure_specular();
|
rb_data->ensure_specular();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (global_surface_data.normal_texture_used) {
|
if (global_surface_data.normal_texture_used && !is_reflection_probe) {
|
||||||
rb_data->ensure_normal_roughness_texture();
|
rb_data->ensure_normal_roughness_texture();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user