diff options
| author | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-08-06 21:26:40 -0400 |
|---|---|---|
| committer | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-08-06 21:26:40 -0400 |
| commit | 598931c87995a9e2f3af045ca51c736729ae5197 (patch) | |
| tree | 95999a21ffd0b2ecb83c8b1b226aced4ddbbd171 /src/components/ConfigurationSection.tsx | |
| parent | 6435769b270c8f849839a971f21b802a3f70662e (diff) | |
| download | decky-lsfg-vk-598931c87995a9e2f3af045ca51c736729ae5197.tar.gz decky-lsfg-vk-598931c87995a9e2f3af045ca51c736729ae5197.zip | |
fix: expose runtime 1x passthrough in Decky
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 538975e..f332ad2 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -3,7 +3,7 @@ import { useState, useEffect } from "react"; import { RiArrowDownSFill, RiArrowUpSFill } from "react-icons/ri"; import { ConfigurationData } from "../config/configSchema"; import { - ACTIVE_IN, ALLOW_FP16, DISABLE_LSFGVK, DLL, FLOW_SCALE, GPU, + ACTIVE_IN, ALLOW_FP16, DLL, FLOW_SCALE, GPU, PERFORMANCE_MODE, USE_NATIVE_MATCHING, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE, MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, ENABLE_WSI, ENABLE_ZINK } from "../config/generatedConfigSchema"; @@ -136,15 +136,6 @@ export function ConfigurationSection({ <PanelSectionRow> <ToggleField - label="Disable Frame Generation" - description="Disables lsfg-vk on the next game launch. Requires a game restart." - checked={config.disable_lsfgvk} - onChange={(value) => onConfigChange(DISABLE_LSFGVK, value)} - /> - </PanelSectionRow> - - <PanelSectionRow> - <ToggleField label="Allow FP16" description="Improves performance on AMD; disable for older NVIDIA GPUs." checked={config.allow_fp16} |
