()
| 226 | bloom_set_render_scale(Math.min(1.0, Math.max(0.5, scale))); |
| 227 | } |
| 228 | export function getRenderScale(): number { return bloom_get_render_scale(); } |
| 229 | |
| 230 | /** Upscale filter when render_scale < 1 and TAA is off. "bilinear" = cheap/soft, "catmull-rom" = sharper (default). */ |
| 231 | export type UpscaleMode = "bilinear" | "catmull-rom"; |
nothing calls this directly
no test coverage detected