(on: boolean)
| 210 | |
| 211 | /** Toggle temporal anti-aliasing (sub-pixel jitter + reprojected history blend). */ |
| 212 | export function setTaaEnabled(on: boolean): void { |
| 213 | bloom_set_taa_enabled(on ? 1 : 0); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Render-resolution multiplier. 0.5 = quarter-pixel shading (cheap, soft); |
no test coverage detected