summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-24 21:40:28 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-24 21:40:28 -0400
commita3c964c997f0dafca5f502b28fc76f1827fcb29d (patch)
tree603399c43659e2e9c2dede3fe249ae9a5feba9d1
parent16f93f51f805a3c8a6ee976a708e83952c824c36 (diff)
downloaddecky-lsfg-vk-a3c964c997f0dafca5f502b28fc76f1827fcb29d.tar.gz
decky-lsfg-vk-a3c964c997f0dafca5f502b28fc76f1827fcb29d.zip
re-expose fp16 toggle global
-rw-r--r--package.json2
-rw-r--r--src/components/ConfigurationSection.tsx6
2 files changed, 4 insertions, 4 deletions
diff --git a/package.json b/package.json
index 2419f96..c5b58ee 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "decky-lossless-scaling-vk",
- "version": "0.10.4",
+ "version": "0.10.5",
"description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer",
"type": "module",
"scripts": {
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index c14a2fd..0f1f02a 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -4,7 +4,7 @@ import { RiArrowDownSFill, RiArrowUpSFill } from "react-icons/ri";
import { ConfigurationData } from "../config/configSchema";
import { FpsMultiplierControl } from "./FpsMultiplierControl";
import {
- FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE,
+ NO_FP16, FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE,
EXPERIMENTAL_PRESENT_MODE, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE,
MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, ENABLE_WSI
} from "../config/generatedConfigSchema";
@@ -97,14 +97,14 @@ export function ConfigurationSection({
/>
</PanelSectionRow>
- {/* <PanelSectionRow>
+ <PanelSectionRow>
<ToggleField
label="Force Disable FP16"
description="Force-disable FP16 acceleration"
checked={config.no_fp16}
onChange={(value) => onConfigChange(NO_FP16, value)}
/>
- </PanelSectionRow> */}
+ </PanelSectionRow>
<PanelSectionRow>
<ToggleField