diff options
| author | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-02-02 13:01:37 -0500 |
|---|---|---|
| committer | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-02-02 13:01:37 -0500 |
| commit | 93027ad87917d054c6309cf328e97c2e92b7c4bb (patch) | |
| tree | 9f2036b760c49f5e9345ee6585bc622319703d77 /py_modules/lsfg_vk/constants.py | |
| parent | 97a70cd68813f2174fe145ee79784e509d11a742 (diff) | |
| download | decky-lsfg-vk-feat/lsfg-vk-v2-support.tar.gz decky-lsfg-vk-feat/lsfg-vk-v2-support.zip | |
feat: add lsfg-vk v2.0 supportfeat/lsfg-vk-v2-support
- Update Vulkan layer filenames for v2.0
- libVkLayer_LSFGVK_frame_generation.so
- VkLayer_LSFGVK_frame_generation.json
- Remove deprecated config fields (hdr_mode, experimental_present_mode)
- Add new pacing field (frame pacing mode)
- Update generated schema files
- Remove removed fields from UI components
- Bump version to 0.13.0-beta.1
Breaking changes:
- HDR Mode setting removed (no longer in v2.0)
- Present Mode override removed (no longer in v2.0)
Still TODO:
- Update remote_binary URL when v2.0 stable releases
- Test installation and migration
- Add migration guide for users
Diffstat (limited to 'py_modules/lsfg_vk/constants.py')
| -rw-r--r-- | py_modules/lsfg_vk/constants.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/py_modules/lsfg_vk/constants.py b/py_modules/lsfg_vk/constants.py index 3d8e44a..4cbf7a5 100644 --- a/py_modules/lsfg_vk/constants.py +++ b/py_modules/lsfg_vk/constants.py @@ -11,8 +11,9 @@ CONFIG_DIR = ".config/lsfg-vk" SCRIPT_NAME = "lsfg" CONFIG_FILENAME = "conf.toml" -LIB_FILENAME = "liblsfg-vk.so" -JSON_FILENAME = "VkLayer_LS_frame_generation.json" +# v2.0 file names +LIB_FILENAME = "libVkLayer_LSFGVK_frame_generation.so" +JSON_FILENAME = "VkLayer_LSFGVK_frame_generation.json" ZIP_FILENAME = "lsfg-vk_noui.zip" FLATPAK_23_08_FILENAME = "org.freedesktop.Platform.VulkanLayer.lsfg_vk_23.08.flatpak" |
