Skip to content

Commit 1ab3eeb

Browse files
committed
shadow mapping stub
1 parent a062d62 commit 1ab3eeb

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

crates/renderling/src/light/cpu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ mod test {
6666
#[test]
6767
fn shadow_mapping_sanity() {
6868
let ctx = crate::Context::headless(1024, 800);
69-
let mut stage = ctx.new_stage().with_lighting(false);
69+
let mut stage = ctx.new_stage();
7070
let camera = stage.new_value(Camera::default());
7171
let doc = stage
7272
.load_gltf_document_from_path(

crates/renderling/src/stage/gltf_support.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,15 @@ impl GltfDocument {
10041004
let light = stage.new_value(DirectionalLight {
10051005
direction: Vec3::NEG_Z,
10061006
color,
1007-
intensity,
1007+
// TODO: Set a unit for lighting.
1008+
// We don't yet use a unit for our lighting, and we should.
1009+
// NOTE:
1010+
// glTF spec [1] says directional light is in lux, whereas spot and point are
1011+
// in candelas. I haven't really set a unit, it's implicit in the shader, but it seems we
1012+
// can roughly get candelas from lux by dividing by 683 [2].
1013+
// 1. https://github.com/KhronosGroup/glTF/blob/main/extensions/2.0/Khronos/KHR_lights_punctual/README.md
1014+
// 2. https://depts.washington.edu/mictech/optics/me557/Radiometry.pdf
1015+
intensity: intensity / 683.0,
10081016
});
10091017

10101018
(light.id().into(), LightDetails::Directional(light))

gltf/shadow_mapping_sanity.gltf

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1,
1919
1
2020
],
21-
"intensity":683000,
21+
"intensity":6830,
2222
"type":"directional",
2323
"name":"Light"
2424
}

0 commit comments

Comments
 (0)