(on: boolean)
| 205 | |
| 206 | /** Toggle physically-based auto-exposure. 18% gray target, log-average metered. */ |
| 207 | export function setAutoExposure(on: boolean): void { |
| 208 | bloom_set_auto_exposure(on ? 1 : 0); |
| 209 | } |
| 210 | |
| 211 | /** Toggle temporal anti-aliasing (sub-pixel jitter + reprojected history blend). */ |
| 212 | export function setTaaEnabled(on: boolean): void { |
no test coverage detected