@@ -306,8 +306,8 @@ class LightStorage : public RendererLightStorage {
306
306
307
307
/* Light API */
308
308
309
- Light *get_light (RID p_rid) { return light_owner.get_or_null (p_rid); };
310
- bool owns_light (RID p_rid) { return light_owner.owns (p_rid); };
309
+ Light *get_light (RID p_rid) { return light_owner.get_or_null (p_rid); }
310
+ bool owns_light (RID p_rid) { return light_owner.owns (p_rid); }
311
311
312
312
void _light_initialize (RID p_rid, RS::LightType p_type);
313
313
@@ -434,8 +434,8 @@ class LightStorage : public RendererLightStorage {
434
434
435
435
/* LIGHT INSTANCE API */
436
436
437
- LightInstance *get_light_instance (RID p_rid) { return light_instance_owner.get_or_null (p_rid); };
438
- bool owns_light_instance (RID p_rid) { return light_instance_owner.owns (p_rid); };
437
+ LightInstance *get_light_instance (RID p_rid) { return light_instance_owner.get_or_null (p_rid); }
438
+ bool owns_light_instance (RID p_rid) { return light_instance_owner.owns (p_rid); }
439
439
440
440
virtual RID light_instance_create (RID p_light) override ;
441
441
virtual void light_instance_free (RID p_light_instance) override ;
@@ -633,8 +633,8 @@ class LightStorage : public RendererLightStorage {
633
633
634
634
/* PROBE API */
635
635
636
- ReflectionProbe *get_reflection_probe (RID p_rid) { return reflection_probe_owner.get_or_null (p_rid); };
637
- bool owns_reflection_probe (RID p_rid) { return reflection_probe_owner.owns (p_rid); };
636
+ ReflectionProbe *get_reflection_probe (RID p_rid) { return reflection_probe_owner.get_or_null (p_rid); }
637
+ bool owns_reflection_probe (RID p_rid) { return reflection_probe_owner.owns (p_rid); }
638
638
639
639
virtual RID reflection_probe_allocate () override ;
640
640
virtual void reflection_probe_initialize (RID p_rid) override ;
@@ -715,8 +715,8 @@ class LightStorage : public RendererLightStorage {
715
715
716
716
/* LIGHTMAP CAPTURE */
717
717
718
- Lightmap *get_lightmap (RID p_rid) { return lightmap_owner.get_or_null (p_rid); };
719
- bool owns_lightmap (RID p_rid) { return lightmap_owner.owns (p_rid); };
718
+ Lightmap *get_lightmap (RID p_rid) { return lightmap_owner.get_or_null (p_rid); }
719
+ bool owns_lightmap (RID p_rid) { return lightmap_owner.owns (p_rid); }
720
720
721
721
virtual RID lightmap_allocate () override ;
722
722
virtual void lightmap_initialize (RID p_rid) override ;
@@ -739,15 +739,15 @@ class LightStorage : public RendererLightStorage {
739
739
740
740
/* LIGHTMAP INSTANCE */
741
741
742
- LightmapInstance *get_lightmap_instance (RID p_rid) { return lightmap_instance_owner.get_or_null (p_rid); };
743
- bool owns_lightmap_instance (RID p_rid) { return lightmap_instance_owner.owns (p_rid); };
742
+ LightmapInstance *get_lightmap_instance (RID p_rid) { return lightmap_instance_owner.get_or_null (p_rid); }
743
+ bool owns_lightmap_instance (RID p_rid) { return lightmap_instance_owner.owns (p_rid); }
744
744
745
745
virtual RID lightmap_instance_create (RID p_lightmap) override ;
746
746
virtual void lightmap_instance_free (RID p_lightmap) override ;
747
747
virtual void lightmap_instance_set_transform (RID p_lightmap, const Transform3D &p_transform) override ;
748
748
749
749
/* SHADOW ATLAS API */
750
- bool owns_shadow_atlas (RID p_rid) { return shadow_atlas_owner.owns (p_rid); };
750
+ bool owns_shadow_atlas (RID p_rid) { return shadow_atlas_owner.owns (p_rid); }
751
751
752
752
virtual RID shadow_atlas_create () override ;
753
753
virtual void shadow_atlas_free (RID p_atlas) override ;
0 commit comments