// Wavefront miss: runs in SHADE for rays that hit nothing. Accumulate the
// white background directly.
fn miss_main(ray: RayDesc, payload: ptr<function, Payload>) {
rtAccumulate(vec3<f32>(1.0, 1.0, 1.0));
}