summaryrefslogtreecommitdiff
path: root/servers/rendering/dummy/storage
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-09-01 08:08:38 +0200
committerGitHub <noreply@github.com>2022-09-01 08:08:38 +0200
commite67c967cbcc4bc0ab20d4ae77d47d2812c6242e8 (patch)
tree660af7a9c6213342b751c27146444e8eb5399344 /servers/rendering/dummy/storage
parent1c037c89d4345789c17dfa19bf1e8bd67f702f09 (diff)
parent385ee5c70b110fc4e6a47c847428bfe3da89e18e (diff)
Merge pull request #63751 from clayjohn/physical_light_units
Implement Physical Light Units in Vulkan Renderers
Diffstat (limited to 'servers/rendering/dummy/storage')
-rw-r--r--servers/rendering/dummy/storage/light_storage.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/rendering/dummy/storage/light_storage.h b/servers/rendering/dummy/storage/light_storage.h
index 0c0ea61df5..79f484d513 100644
--- a/servers/rendering/dummy/storage/light_storage.h
+++ b/servers/rendering/dummy/storage/light_storage.h
@@ -119,6 +119,7 @@ public:
virtual void lightmap_set_probe_bounds(RID p_lightmap, const AABB &p_bounds) override {}
virtual void lightmap_set_probe_interior(RID p_lightmap, bool p_interior) override {}
virtual void lightmap_set_probe_capture_data(RID p_lightmap, const PackedVector3Array &p_points, const PackedColorArray &p_point_sh, const PackedInt32Array &p_tetrahedra, const PackedInt32Array &p_bsp_tree) override {}
+ virtual void lightmap_set_baked_exposure_normalization(RID p_lightmap, float p_exposure) override {}
virtual PackedVector3Array lightmap_get_probe_capture_points(RID p_lightmap) const override { return PackedVector3Array(); }
virtual PackedColorArray lightmap_get_probe_capture_sh(RID p_lightmap) const override { return PackedColorArray(); }
virtual PackedInt32Array lightmap_get_probe_capture_tetrahedra(RID p_lightmap) const override { return PackedInt32Array(); }