blob: 0a0b50280a4ab9c320cd53fdc4607240f48566fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
import { callable } from "@decky/api";
// Type definitions for API responses
export interface InstallationResult {
success: boolean;
error?: string;
message?: string;
removed_files?: string[];
}
export interface InstallationStatus {
installed: boolean;
lib_exists: boolean;
json_exists: boolean;
script_exists: boolean;
lib_path: string;
json_path: string;
script_path: string;
error?: string;
}
export interface DllDetectionResult {
detected: boolean;
path?: string;
source?: string;
message?: string;
error?: string;
}
export interface LsfgConfig {
enable_lsfg: boolean;
multiplier: number;
flow_scale: number;
hdr: boolean;
perf_mode: boolean;
immediate_mode: boolean;
disable_vkbasalt: boolean;
}
export interface ConfigResult {
success: boolean;
config?: LsfgConfig;
error?: string;
}
export interface ConfigUpdateResult {
success: boolean;
message?: string;
error?: string;
}
// API functions
export const installLsfgVk = callable<[], InstallationResult>("install_lsfg_vk");
export const uninstallLsfgVk = callable<[], InstallationResult>("uninstall_lsfg_vk");
export const checkLsfgVkInstalled = callable<[], InstallationStatus>("check_lsfg_vk_installed");
export const checkLosslessScalingDll = callable<[], DllDetectionResult>("check_lossless_scaling_dll");
export const getLsfgConfig = callable<[], ConfigResult>("get_lsfg_config");
export const updateLsfgConfig = callable<
[boolean, number, number, boolean, boolean, boolean, boolean],
ConfigUpdateResult
>("update_lsfg_config");
|