diff options
author | Tobias Widner <kidinashell@protonmail.com> | 2022-09-18 20:12:25 +0200 |
---|---|---|
committer | Tobias Widner <kidinashell@protonmail.com> | 2022-09-19 17:18:45 +0200 |
commit | 422bacbfd1ef99e6d9a2b7a9953d0fcb159ae1cd (patch) | |
tree | adfcf91c903859b2f81242e81b9245498719b271 /servers/rendering/renderer_rd/storage_rd | |
parent | 57bdddce02370af3d13e6edc583afdc17264147d (diff) |
Fix Vulkan: SpotLight3D's and OmniLight3D's Projector doesn't work
Diffstat (limited to 'servers/rendering/renderer_rd/storage_rd')
-rw-r--r-- | servers/rendering/renderer_rd/storage_rd/light_storage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/servers/rendering/renderer_rd/storage_rd/light_storage.h b/servers/rendering/renderer_rd/storage_rd/light_storage.h index 82d609291c..4b34cc74cb 100644 --- a/servers/rendering/renderer_rd/storage_rd/light_storage.h +++ b/servers/rendering/renderer_rd/storage_rd/light_storage.h @@ -34,6 +34,7 @@ #include "core/templates/local_vector.h" #include "core/templates/rid_owner.h" #include "core/templates/self_list.h" +#include "servers/rendering/renderer_rd/storage_rd/texture_storage.h" #include "servers/rendering/storage/light_storage.h" #include "servers/rendering/storage/utilities.h" @@ -235,7 +236,7 @@ public: const Light *light = light_owner.get_or_null(p_light); ERR_FAIL_COND_V(!light, RS::LIGHT_DIRECTIONAL); - return light_owner.owns(light->projector); + return TextureStorage::get_singleton()->owns_texture(light->projector); } _FORCE_INLINE_ bool light_is_negative(RID p_light) const { |