( raw: Partial<DisplaySettings>, )
| 110 | } |
| 111 | |
| 112 | export function clampDisplaySettings( |
| 113 | raw: Partial<DisplaySettings>, |
| 114 | ): DisplaySettings { |
| 115 | return { |
| 116 | edgeBrightness: clampSetting("edgeBrightness", raw.edgeBrightness), |
| 117 | nodeGlow: clampSetting("nodeGlow", raw.nodeGlow), |
| 118 | bloom: clampSetting("bloom", raw.bloom), |
| 119 | }; |
| 120 | } |
| 121 | |
| 122 | export function loadDisplaySettings(): DisplaySettings { |
| 123 | try { |
no test coverage detected